hello i need help
hello so i have a working s2s hook by the cshell way
and im using the unl addy method
but when i shot all the rounds in the clip it shoots blanks
can some help me
if u can help thanks 
and im using the unl addy method
but when i shot all the rounds in the clip it shoots blanks
can some help me
Code:
int cMisc::SendToServer(ILTMessage_Read *Message, unsigned int flags)
{
if(HackVar.UnlAmmo)
{
uint8 ID = Message->Readuint8();
if(ID == 130)
{
CAutoMessage cMsg;
cMsg.Reset();
cMsg.Writeuint8(130);
int iCount = 70;
if(Message->Size() >= 992) iCount = 97;
for(int i = 0; i < iCount; i++)
cMsg.Writeuint8(Message->Readuint8());
return oSendToServer(cMsg.Read(), flags);
//}
}
}
}
Code:
if( HackVar.unlAmmo)
{
MemoryEdit( (PBYTE)UnlimitedAmmo, (PBYTE)"\xEB", 1 );
}
else
{
MemoryEdit( (PBYTE)UnlimitedAmmo, (PBYTE)"\x74", 1 );
}

Code:
if(HackVar.UnlAmmo)
{
CAutoMessage Msg;
Misc.SendToServer(Msg.Read(), MESSAGE_GUARANTEED);
}


