25.05.2016, 21:51
Just a tip to optimize your codes
Instead of:
PHP код:
if(Mobile[playerid] != INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_WHITE, " you're already on a call...");
PHP код:
if(Mobile[playerid] != INVALID_PLAYER_ID)
{
SendClientMessage(playerid, COLOR_WHITE, " you're already on a call...");
return 1;
}