11.07.2015, 06:07
(
Последний раз редактировалось Wakayama; 11.07.2015 в 07:14.
)
Bom dei uma pesquisada aqui no fуrum SA-MP e encontrei um cуdigo que Protege contra o "BULLET crasher"
jб testei e funciona 100% O problema й que o "Invalid Aim Crasher" funciona o cуdigo acima so Protege contra
o "BULLET crasher" mais nгo contra o "Invalid Aim Crasher"
Alguйm teria a Proteзгo para o "Invalid Aim Crasher" ?
Uso este code aqui e Funciona perfeitamente para o hacker "BULLET crasher"
O cуdigo acima Protege contra o "Bullet crasher" e funciona normalmente
Quando vocк usa o "Bullet crasher" no servidor isto й mostrado no log
Mas quando vocк usa o "Invalid Aim Crasher" Nгo й mostrado nada no log do servidor Porem
Os Players tem seu jogo Travado ao estar perto quem de usou o Hacker...
Minha dъvida й Alguйm Possui a Proteзгo contra o "Invalid Aim Crasher" ?
jб testei e funciona 100% O problema й que o "Invalid Aim Crasher" funciona o cуdigo acima so Protege contra
o "BULLET crasher" mais nгo contra o "Invalid Aim Crasher"
Alguйm teria a Proteзгo para o "Invalid Aim Crasher" ?
Uso este code aqui e Funciona perfeitamente para o hacker "BULLET crasher"
PHP код:
public OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ) {
if(hittype != BULLET_HIT_TYPE_NONE) { // Update 0.3.7
if((fX <= -1000.0 || fX >= 1000.0) || (fY <= -1000.0 || fY >= 1000.0) || (fZ <= -1000.0 || fZ >= 1000.0) || ((hittype != BULLET_HIT_TYPE_PLAYER) && (hittype != BULLET_HIT_TYPE_VEHICLE) && (hittype != BULLET_HIT_TYPE_OBJECT) && (hittype != BULLET_HIT_TYPE_PLAYER_OBJECT))) {
Kick(playerid);
return 0;
}
}
else {
if (weaponid <= 0 || weaponid > 46) { Kick(playerid); return 0; } // Isto porque tб enviando com arma invбlida, (0 й o punho) e nгo existe armas maiores que id 46.
}
return 1
}
O cуdigo acima Protege contra o "Bullet crasher" e funciona normalmente
Quando vocк usa o "Bullet crasher" no servidor isto й mostrado no log
Код:
[04:03:29] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:29] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:29] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:30] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:30] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:30] [warning] Invalid shot data for player(0). Offset out of bounds. [04:03:30] [warning] Invalid shot data for player(0). Offset out of bounds.
Os Players tem seu jogo Travado ao estar perto quem de usou o Hacker...
Minha dъvida й Alguйm Possui a Proteзгo contra o "Invalid Aim Crasher" ?