10.02.2016, 15:56
Quote:
O motivo de eu querer verificar, e que estou desenvolvendo um ant speed hack, que ele funfa de boas, porem quando recebe supertapa, ou esta caindo de algum prйdio o ant xiter detecta como se fosse speed hack, veja so.
Funзгo do xiter: correr a pй em alta velocidade. Код:
if(GetPlayerSpeed(playerid) > 100) { printf("%s foi kickado do servidor. | Motivo: Speed Hack.", GetandoNome(playerid)); Kick(playerid); } Код:
stock GetPlayerSpeed(playerid) { new Float:xPos[3]; GetPlayerVelocity(playerid, xPos[0], xPos[1], xPos[2]); return floatround(floatsqroot(xPos[0] * xPos[0] + xPos[1] * xPos[1] + xPos[2] * xPos[2]) * 170.00); } |
PHP код:
stock GetPlayerSpeed(playerid)
{
new Float:xPos[3];
GetPlayerVelocity(playerid, xPos[0], xPos[1], xPos[2]);
return floatround(floatsqroot(xPos[0] * xPos[0] + xPos[1] * xPos[1]) * 170.00);
}