22.09.2017, 13:31
Quote:
The new sound IDs will just do nothing on the old client. If it's really important for your server, you could do something like:
Код:
public OnPlayerConnect(playerid) { new ClientVersion[32]; GetPlayerVersion(playerid, ClientVersion, 32); if(strcmp(ClientVersion,"0.3.7-R2") != 0) { SendClientMessage(playerid, 0xAAFFAAFF, "Super green says: Update your client to 0.3.7-R2 @ sa-mp.com"); } return 1; } |