SA-MP Forums Archive
/Teles or /Teleports 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: /Teles or /Teleports command (/showthread.php?tid=119122)



/Teles or /Teleports command - sXecookie - 06.01.2010

I could need some help..

On my server that I have it's /tele, but i want to change it to /teles or /teleports but I don't know how. It's that dcmd_tele command thing.


Re: /Teles or /Teleports command - Hiitch - 06.01.2010

search for dcmd_tele, and change it to dcmd_teles.

Search for dcmd(tele, 4, cmdtext); and change it to dcmd(teles, 5, cmdtext);


Re: /Teles or /Teleports command - sXecookie - 06.01.2010

Was it that easy? XD
Thank you. :P


Re: /Teles or /Teleports command - Miguel - 06.01.2010

You also do:

pawn Код:
dcmd_teleports(playerid, params[])
{
  return dcmd_teles(playerid, params);
}
That would return the normal command usage for both words (teles and teleports)...