30/12/2024 20:09
Alguém já conseguiu um anti Lock On que funcione?
Testei esse aqui e não funcionou: https://portalsamp.com/showthread.php?tid=1342
Me parece que esse script não está detectando:
Testei esse aqui e não funcionou: https://portalsamp.com/showthread.php?tid=1342
Me parece que esse script não está detectando:
Código PHP:
IRawPacket:ID_CUSTOM_SYNC(playerid, BitStream:bs)
{
new bytes, rpcid;
BS_GetNumberOfBytesUsed(bs, bytes);
if(bytes < MIN_PACKET_SIZE) return 0;
BS_ReadValue(bs,
PR_IGNORE_BITS, 8,
PR_UINT8, rpcid);
if(rpcid == RPC_INIT_MOBILE)
{
new autoaim;
BS_ReadValue(bs, PR_UINT8, autoaim);
PlayerMobileInfo[playerid][isMobile] = true; // system for newer version
PlayerMobileInfo[playerid][isHaveAutoaim] = bool:autoaim;
}
return 1;
}