10.08.2014, 06:44
pawn Код:
command(setworld, playerid, params[])
{
if(// Admin code)
{
new id, world, string[256];
if(sscanf(params, "ud", id, world)) return SendClientMessage(playerid, WHITE, "Server: /setworld [playerid/name] [world]");
{
SetPlayerVirtualWorld(id, world);
}
}
else return SendClientMessage(playerid, -1, "Admin Only.");
return 1;
}