SA-MP Forums Archive
Problems - 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: Problems (/showthread.php?tid=495030)



Problems - Madalyinn - 15.02.2014

I have a problem when you press F4 and kill yourself to change your skin's not visible:


http:// http://s29.postimg.org/5lz3kuyhz/sa_mp_005.jpg


How can I fix?


Re: Problems - Matt - 15.02.2014

Do you use AddPlayerClass in OnGameModeInit?


Re: Problems - AnthonyTimmers - 15.02.2014

Do your SetPlayerCameraPos and SetPlayerPos have the same coordinates? That's probably the problem.


Re: Problems - Madalyinn - 16.02.2014

pawn Код:
else
            {
                SetPlayerInterior(playerid, 0);
                PlayerInfo[playerid][pInt] = 0;
                SetPlayerPos(playerid, 2028.5651,1552.0093,26.5807);
                SetPlayerCameraPos(playerid, 2028.6703,1547.6627,24.8274);
                SetPlayerCameraLookAt(playerid, 2028.5651,1552.0093,26.5807);
                SetPlayerFacingAngle(playerid, 180.0);
                ApplyAnimation(playerid, "COP_AMBIENT", "Coplook_loop", 4.0, 1, 0, 0, 0, 0); // Wave
            }
            return 1;



Re: Problems - GODEX - 16.02.2014

If you notice that on your screen the objects / mappings around you are currently Unvisible all Glitchy that is because where you have chosen to spawn the player, he is far away from the location, Either underground or you have the camera looking where he is but infact he is positioned miles away


Re: Problems - Madalyinn - 16.02.2014

How can I fix?