25.03.2019, 15:13
Код:
stock PlayerIDs(string); // This value is not a string, it's integer stock PlayerIDs(const string[]); // This value is a string
Код:
stock bool:IsPlayerConnected(const string[]) { foreach(new i: Player) { new name[50]; GetPlayerName(playerid, name[], sizeof name); if(!strcmp(name, string)) return true; } return false; }