SA-MP Forums Archive
I need a command - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: I need a command (/showthread.php?tid=583339)



I need a command - s3ek - 27.07.2015

I need a command where i can put like

PHP код:
/gotopos xcoordycoordzcoord,  
/
gotopos -2459.11, -984.8990.58 



AW: I need a command - Mencent - 27.07.2015

Hello!

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;

Is this what you want?


Re: I need a command - TenTen - 27.07.2015

i don't understand please Explain more


Re: I need a command - s3ek - 27.07.2015

+Rep to Mencent