27.07.2015, 19:24
Hello!
Is this what you want?
PHP код:
CMD:gotopos(playerid,params[])
{
new Float:x,Float:y,Float:z;
if(sscanf(params,"fff",x,y,z))return SendClientMessage(playerid,-1,"Use: /gotopos [X] [Y] [Z]");
SetPlayerPos(playerid,x,y,z);
return 1;
}