13.06.2012, 11:11
Quote:
|
Show us any of your command, plus what command processor you use?
|
pawn Code:
}
COMMAND:gotols(playerid, params[])
{
if(PlayerInfo[playerid][pAdministrator] >= 1)
{
if(GetPlayerState(playerid) == 2)
{
new tmpcar = GetPlayerVehicleID(playerid);
SetVehiclePos(tmpcar, 1529.6,-1691.2,13.3);
}
else
{
SetPlayerPos(playerid, 1529.6,-1691.2,13.3);
SetPlayerInterior(playerid,0);
SetPlayerVirtualWorld(playerid,0);
}
}
else
{
SendClientMessage(playerid, COLOR_LIGHTRED, "WARNING: You do not have access to this command.");
}
return 1;
}


