Posts: 17
Threads: 3
Joined: Aug 2014
Reputation:
0
I Tested SPECIAL_ACTION_CUFFED And Also its dont worked.
Posts: 518
Threads: 59
Joined: Aug 2012
Some mistakes are there but anyway good
Posts: 767
Threads: 40
Joined: Dec 2011
Reputation:
0
Any of these getting fixed in 0.3.7?
Posts: 128
Threads: 5
Joined: Nov 2010
Reputation:
0
GetWeaponName returns a null string for weapon 0 aka Fists. Should be noted on the wiki and the workaround needs to be updated aswell.
Posts: 1,290
Threads: 69
Joined: Dec 2006
Reputation:
0
I've just had a quick glance through the wiki bug page. Many of them (I believe) aren't bugs - even a couple that I thought were, and documented in this topic, I have learned aren't actually bugs. I've got a busy day ahead of me today, I'll try and update this topic in the coming days to remove the "bugs" that aren't bugs, and add the ones that are missing.
Posts: 545
Threads: 15
Joined: Sep 2012
Reputation:
0
In some cases, typing "%%" in dialogs crash the server
Posts: 1,779
Threads: 126
Joined: Oct 2010
Quote:
Originally Posted by CaioTJF
In some cases, typing "%%" in dialogs crash the server
|
It will crash if you format a string with inputtext (and contains '%') and use SendClientMessage.
Fix:
Код:
//top OnDialogResponse
if(!isnull(inputtext))
{
for(new i, j = strlen(inputtext); i <= j; i++)
{
if(inputtext[i] == '%') inputtext[i] = '#';
}
}
Posts: 1,840
Threads: 399
Joined: Oct 2010
Reputation:
0
The missing animation when a player is entering a locked vehicle(SetVehicleParamsEx) as driver the locked animation is not showing. While entering a locked vehicle as passenger the animation shows fine.
Posts: 2,938
Threads: 162
Joined: May 2010
Quote:
Originally Posted by BeckzyBoi
Why would you use "%%" anyway?
|
It's not us, the developers who will use it. It's players. I know of a few people who put % in there passwords, and without basic knowledge of sa-mp bugs, your server will easily be crashing.
Posts: 1,779
Threads: 126
Joined: Oct 2010
soundid 177 is crashing me
PlayerPlaySound(playerid, 177, 0.0, 0.0, 0.0);