SA-MP Forums Archive
how do i create teleports that change the players skin when they teled? - 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: how do i create teleports that change the players skin when they teled? (/showthread.php?tid=150217)



how do i create teleports that change the players skin when they teled? - rohan234 - 25.05.2010

Hello,
this is the last step (i think) of my server....how do i create teleports that change the players skin when they teled?
eg: if i did /swat then the player will be teled to a certain location and his/her skin will be id 285 (the swat skin)
please help


Re: how do i create teleports that change the players skin when they teled? - woot - 25.05.2010

pawn Код:
if(!strcmp(cmdtext, "/swat", true))
{
    SetPlayerSkin(playerid, 285);
    SetPlayerPos(playerid, 1.1, 2.2, 3.3)
}



Re: how do i create teleports that change the players skin when they teled? - rohan234 - 25.05.2010

ty