SA-MP Forums Archive
can one /leavedm will support all dms - 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: can one /leavedm will support all dms (/showthread.php?tid=409106)



can one /leavedm will support all dms - gurmani11 - 20.01.2013

.....................


Re: can one /leavedm will support all dms - Private200 - 20.01.2013

Give us your /leavedm code .


Re: can one /leavedm will support all dms - Gortex - 20.01.2013

/leavedm could be just another TP Command xD

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
     if(strcmp(cmdtext, "/myteleport") == 0)
     {
         SetPlayerPos(playerid, -1967.8365, 2956.9823, 12.9375);
         return 1;
     }
     return 0;
}
Just edit the command and change it


I hope i got you right since my english sucks xd


Re: can one /leavedm will support all dms - Private200 - 20.01.2013

What about the coords ? He have not informed us . We need to get his /leavedm command codes and then fix it with his problems etc ..

EDIT : As soon as you don't give us the codes , i tell you that you got to remove the line :

pawn Код:
ResetPlayerWeapons(playerid);
from your script .

Hope it helps you


Re: can one /leavedm will support all dms - gurmani11 - 20.01.2013

.....................