SA-MP Forums Archive
Tele 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Tele command (/showthread.php?tid=182328)



Tele command - Georgelopez1 - 10.10.2010

Hey what is a command to bring a player to you? thanks


Re: Tele command - mick88 - 10.10.2010

The command is whatever you script it to be


Re: Tele command - Georgelopez1 - 10.10.2010

:/
If i knew how i would have done it myself, theres not much you can do when no ones wants to help


Re: Tele command - [L3th4l] - 10.10.2010

( Hoping you knowing some sscanf coding )

pawn Код:
CMD:get(playerid, params[])
{
    new pID, Float:x, Float:y, Float:z;
    if(sscanf(params, "r", pID)) return /* Send error message */
    GetPlayerPos(playerid, x, y, z);
    SetPlayerPos(pID, x, y, z);
    return 1;
}
Plz use search ffs. There are hundreds of this commands around. -____________-