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.