SA-MP Forums Archive
Skin crash (Before 0.3x) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP (https://sampforum.blast.hk/forumdisplay.php?fid=3)
+--- Forum: Bug Reports (https://sampforum.blast.hk/forumdisplay.php?fid=20)
+--- Thread: Skin crash (Before 0.3x) (/showthread.php?tid=412542)



Skin crash (Before 0.3x) - Lorenc_ - 02.02.2013

Old bug, and doubtfully reported.

When you enter a vehicle, set your skin id to something then you'll just crash.

[ame]http://www.youtube.com/watch?v=scJVrAzgsF4[/ame]

(A member of my community decided to report this)

Edit: I believe it can be patched with the player state functions.
Edit2: Looks like it is patched in 0.3x


Re: Skin crash (Before 0.3x) - steki. - 02.02.2013

Not only you, but anyone around you. Does anyone else can confirm this?


Re: Skin crash (Before 0.3x) - Mikkel_Pedersen - 02.02.2013

I can confirm this. It happens in 0.3e and also 0.3x. And it indeed crashes the players around you as well.


Re: Skin crash (Before 0.3x) - Lorenc_ - 03.02.2013

Quote:
Originally Posted by Stewie`
Посмотреть сообщение
Not only you, but anyone around you. Does anyone else can confirm this?
Yes, that's true. It's only a matter of time before some guy makes a hack to crash people with this.


Re: Skin crash (Before 0.3x) - T0pAz - 03.02.2013

Gladly it has been fixed on 0.3X. I don't have to make an antihack for that.


Re: Skin crash (Before 0.3x) - ikey07 - 04.02.2013

I just checked it on 0.3x, that bug is still here.


Re: Skin crash (Before 0.3x) - Kalcor - 04.02.2013

Quote:
Originally Posted by Lorenc_
Посмотреть сообщение
Yes, that's true. It's only a matter of time before some guy makes a hack to crash people with this.
Players can't change their own skin. Only the server can. It's up to the server to decide when SetPlayerSkin can be used.


Re: Skin crash (Before 0.3x) - Kyle - 04.02.2013

Quote:
Originally Posted by Kalcor
Посмотреть сообщение
Players can't change their own skin. Only the server can. It's up to the server to decide when SetPlayerSkin can be used.
Infact, there is a new hack that can force skin changes.

I've PM'd you more detail regarding it.


Re: Skin crash (Before 0.3x) - Kar - 04.02.2013

Quote:
Originally Posted by Kalcor
Посмотреть сообщение
Players can't change their own skin. Only the server can. It's up to the server to decide when SetPlayerSkin can be used.
Quote:
Originally Posted by KyleSmith
Посмотреть сообщение
Infact, there is a new hack that can force skin changes.

I've PM'd you more detail regarding it.
New Fact... There's a cleo hack that can call server functions. Literally


Re: Skin crash (Before 0.3x) - leong124 - 05.02.2013

I've never face this bug, maybe I got it fixed in my gamemode:
pawn Код:
SetPlayerSkinEx(playerid,skinid)
{
    SetPlayerSkin(playerid,skinid);
    if(IsPlayerControllable(playerid)) TogglePlayerControllable(playerid,true);//No more freezing bug when jumping + changing skin
    if(!IsPlayerInAnyVehicle(playerid)) ClearAnimations(playerid,1);//No more animation bug for changing skin when swimming
    return 1;
}
Which is unintended to fix this problem I think.

And yes, there has been a CLEO that can change skin for a very long time already.