05.09.2010, 23:24
Is there a cmd to go to coords?
COMMAND:goto(playerid,params[])
{
new Float:x,Float:y,Float:z;
if(sscanf(params,"fff",x,y,z))return SendClientMessage(playerid,0xff0000FF,"ERROR: Usage /goto [xcoord][ycoord][zcoord]");
else
{
SetPlayerPos(playerid,x,y,z);
}
return 1;
}