01.03.2013, 21:57
pds2012, the 2 codes below are not identical:
ofir060, in SA-MP 0.3x, when the client receives a packet saying it is kicked from the server, no further communication is held with the server from what I know. This behavior is necessary to prevent some cheats. To prevent the kicked player from not receiving the messages, please set the player to be kicked in a timer.
Refer to: http://forum.sa-mp.com/showpost.php?...2&postcount=14
Код:
return SendPM(playerid, -1, "What?");
Код:
return SendPM(playerid, -1, "What?"), true;
Refer to: http://forum.sa-mp.com/showpost.php?...2&postcount=14