21.09.2017, 16:19
Fixed: http://forum.sa-mp.com/showpost.php?...95&postcount=2
Thank you Kalcor and SA-MP team, do you think you could make this client update required for continue using sa-mp client?
If it is optional a lot of people won't update it.
Anyways, I added this to my server:
Thank you Kalcor and SA-MP team, do you think you could make this client update required for continue using sa-mp client?
If it is optional a lot of people won't update it.
Anyways, I added this to my server:
Код:
public OnPlayerConnect(playerid) { new player_version[40]; GetPlayerVersion(playerid, player_version, sizeof player_version); if(strcmp(player_version, "0.3.7-R2")) { SendClientMessage(playerid, -1, "Please update your SA-MP client version: www.sa-mp.com"); //Kick(playerid); } return 1; }