15.04.2012, 09:12
HI guys, I created a /club command where player get's tp to a club but idk what is wrong. When I use that cmd then nothing happens and I only see sky.
Codes
Codes
pawn Код:
CMD:club(playerid, params[])
{
new string[128];
format(string, sizeof(string), "[SYSTEM]:You have been teleported to the bar.");
SendClientMessage(playerid, -1, string);
SetPlayerInterior(playerid, 17);
GameTextForPlayer(playerid, "Bar", 0, 6);
return 1;
}