09.11.2014, 19:18
pawn Код:
CMD:gotoco(playerid, params[])
{
// check if they're admin
new Float: x, Float: y, Float: z;
if(sscanf(params, "fff", x, y, z)) return // send a message here or something, incorrect syntax.
SetPlayerPos(playerid, x, y, z); // set their pos
return 1;
}