Help in covering - 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: Help in covering (
/showthread.php?tid=540361)
Help in covering -
Dangjai - 04.10.2014
How to cover this to SetPlayerPos
pawn Код:
AddPlayerClass(108,338.2536,-1848.6505,7.7875,341.7531,0,0,0,0,0,0); //
Thanks
Re: Help in covering -
YanLanger - 04.10.2014
What do you mean eh ?
Re: Help in covering -
Dangjai - 04.10.2014
I want this as setplayerpos..
Re: Help in covering -
IceCube! - 04.10.2014
pawn Код:
SetPlayerPos(playerid, 38.2536,-1848.6505,7.7875); //Paramters 123
SetPlayerFacingAngle(playerid, 341.7531); //Paramter 4
You may also want to use SetSkin(playerid, 10

; and GivePlayerWeapon
Re: Help in covering -
denNorske - 04.10.2014
pawn Код:
AddPlayerClass(108,338.2536,-1848.6505,7.7875,341.7531,0,0,0,0,0,0); //
//becomes Simply
SetPlayerPos(playerid, 38.2536,-1848.6505,7.7875);
SetPlayerFacingAngle(playerid, 341.7531);
Hope that helped
Re: Help in covering -
Dangjai - 04.10.2014
Thanks guys!