[Include] Anti-Weapon/Ammo Hack
#8

Quote:
Originally Posted by Bruno13
Посмотреть сообщение
Abro sу um parenteses pelo uso da sua static, que irб gerar conflito. Por ser uma variбvel local indestrutнvel, cada chamada de OnPlayerUpdate a um jogador, irб fazer a manipulaзгo dessa static, e enquanto ela estiver sendo manipulada nessa chama, quando houver outra chamada de outro jogador, farб tambйm essa manipulaзгo e assim alterarб o valor no momento de execuзгo, alterando tambйm na outra chamada.

Pra ter uma ideia mais na prбtica, basta seguir esse cуdigo:
PHP код:
public OnPlayerUpdate(playerid)
{
    static 
id;
    new 
string[2];
    
id playerid;
    
format(stringsizeof(string), "%d: %d"playeridid);
    
SendClientMessage(playerid, -1string);
    
//A mensagem deveria ser "id do jogador: id do jogador", mas serб diferente, dado por outra chamada de OnPlayerUpdate de outro jogador alterar o valor da static id.
    
return 1;

O correto seria indexar essa static com MAX_PLAYERS.
SA:MP й single-threaded, nгo tem como isso acontecer.
Na verdade o ideal nem й usar static aн dentro, mas sim fora:
PHP код:
static acwTime[MAX_PLAYERS];
public 
OnPlayerUpdate(playerid

    new 
timeNow gettime();
    if((
timeNow acwTime[playerid]) > WEAPON_HACK_CHECK_TIME)
    { 
        
acwTime[playerid] = timeNow;
        
ChecarAntiXiter(playerid); 
    } 

Reply


Messages In This Thread
Anti-Weapon/Ammo Hack - by F1N4L - 13.07.2017, 23:38
Re: Anti-Weapon/Ammo Hack - by GuilhermeNunes - 14.07.2017, 02:44
Re: Anti-Weapon/Ammo Hack - by XandyMello - 14.07.2017, 11:42
Re: Anti-Weapon/Ammo Hack - by F1N4L - 14.07.2017, 13:02
Re: Anti-Weapon/Ammo Hack - by Star01 - 14.07.2017, 23:09
Re: Anti-Weapon/Ammo Hack - by Bruno13 - 15.07.2017, 00:42
Re: Anti-Weapon/Ammo Hack - by GuilhermeNunes - 15.07.2017, 03:59
Re: Anti-Weapon/Ammo Hack - by renatog - 15.07.2017, 04:03
Re: Anti-Weapon/Ammo Hack - by XandyMello - 15.07.2017, 10:54
Re: Anti-Weapon/Ammo Hack - by F1N4L - 15.07.2017, 13:08
Re: Anti-Weapon/Ammo Hack - by Bruno13 - 15.07.2017, 16:38
Re: Anti-Weapon/Ammo Hack - by renatog - 15.07.2017, 16:43
Re: Anti-Weapon/Ammo Hack - by F1N4L - 15.07.2017, 17:19
Re: Anti-Weapon/Ammo Hack - by PT - 15.07.2017, 22:48
Re: Anti-Weapon/Ammo Hack - by F1N4L - 15.07.2017, 23:09
Re: Anti-Weapon/Ammo Hack - by GuilhermeNunes - 16.07.2017, 12:25
Re: Anti-Weapon/Ammo Hack - by F1N4L - 16.07.2017, 16:36
Re: Anti-Weapon/Ammo Hack - by GuilhermeNunes - 17.07.2017, 00:32
Re: Anti-Weapon/Ammo Hack - by RodrigoMSR - 17.07.2017, 15:56
Re: Anti-Weapon/Ammo Hack - by F1N4L - 17.07.2017, 17:04

Forum Jump:


Users browsing this thread: 1 Guest(s)