06.09.2014, 15:01
[Tutorial] [0.3z] Fix for Bullet Crasher
06.09.2014, 20:48
Could you guys post the info from the SA-MP crash report box that's caused by the crasher? thanks in advance.
06.09.2014, 21:15
I tested with some friends, and they all said that it is only freezing their game, no report box.
07.09.2014, 03:34
I spawned and then started to shoot someone falling in parachute i got kicked for bullet crash
07.09.2014, 08:59
15.09.2014, 03:57
11.01.2015, 13:16
Please Help.. ?
Code:
warning 235: public function lacks forward declaration (symbol "OnPlayerWeaponShot") error 017: undefined symbol "BULLET_HIT_TYPE_PLAYER"
11.01.2015, 15:21
Quote:
Mmm, no.
Because i used "null" params :P (it's between -20000.0 and 20000.0). Bests! |
pawn Code:
if( fX != fX || fY != fY || fZ != fZ )
return 1;
Update your SA-MP includes.
11.01.2015, 16:11
15.01.2015, 12:49
There is a new one around here. And your code doesn't work against it.
The cheater should hit you and you (probably streamed players too) will get frozen.
The cheater should hit you and you (probably streamed players too) will get frozen.
17.01.2015, 05:24
This fix is patching a hack which appeared few days ago. This hack crashes players when you are near them.
I got this hack, and used it on a test server using a debug for GetPlayerCameraPos, this is what it returned:
See those huge numbers ? Yeah... they are reported by that hack to the server.
This is the fix:
Credits:
IstuntmanI - for text.
I got this hack, and used it on a test server using a debug for GetPlayerCameraPos, this is what it returned:
PHP Code:
[12:00:29] -309.053192 1523.427368 -173527616.000000
This is the fix:
PHP Code:
public OnPlayerUpdate(playerid)
{
if(GetPlayerCameraMode(playerid) == 53)
{
new Float:kLibPos[3];
GetPlayerCameraPos(playerid, kLibPos[0], kLibPos[1], kLibPos[2]);
if ( kLibPos[2] < -50000.0 || kLibPos[2] > 50000.0 )
{
BanEx(playerid, "WeaponCrasher");
return 0;
}
}
return 1;
}
IstuntmanI - for text.
26.01.2015, 04:27
Thanks for the patch..
03.02.2015, 14:56
Nice
03.02.2015, 14:58
Quote:
This fix is patching a hack which appeared few days ago. This hack crashes players when you are near them.
I got this hack, and used it on a test server using a debug for GetPlayerCameraPos, this is what it returned: PHP Code:
This is the fix: PHP Code:
IstuntmanI - for text. |
18.02.2015, 17:33
I get message twice...
28.02.2015, 05:58
Quote:
This fix is patching a hack which appeared few days ago. This hack crashes players when you are near them.
I got this hack, and used it on a test server using a debug for GetPlayerCameraPos, this is what it returned: PHP Code:
This is the fix: PHP Code:
IstuntmanI - for text. |
24.03.2015, 17:09
24.03.2015, 17:20
22.04.2015, 18:48
Really helpful, thanks!
21.06.2015, 17:08
This already fixed in 0.3.7?
« Next Oldest | Next Newest »
Users browsing this thread: 13 Guest(s)