25.05.2010, 09:28
Код:
format(file, sizeof(file), file_path, playername); //Tells that inside file is file_path. and the playername is because there should be a %s in the file_path.
It's not SetPlayerWorld; It's SetPlayerVirtualWorld(playerid, worldid);
To save color you have to use RGBA (Is that it? ..)
It's not OnPlayerDisconnect(playerid); It's OnPlayerDisconnect(playerid, reason)
Change this line:
pawn Код:
case 0: PlayerCrashed(playerid); format(string, sizeof(string), "%s has left the server. (Crashed)", pname);
pawn Код:
case 0: { PlayerCrashed(playerid); format(string, sizeof(string), "%s has left the server. (Crashed)", name); }