Raised This Month: $51 Target: $400
 12% 

Fixed Error Help


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
lantimilan
Senior Member
Join Date: May 2016
Old 12-03-2020 , 09:02   Fixed Error Help
Reply With Quote #1

Hello i have this error in logs who can help me to fixed :
PHP Code:
L 12/02/2020 18:34:49: [AMXXDisplaying debug trace (plugin "no-dmg.amxx"version "1.1")
L 12/02/2020 18:34:49: [AMXXRun time error 10native error (native "get_user_weapon")
L 12/02/2020 18:34:49: [AMXX]    [0no-dmg.sma::fwdHamBlockAwpPre (line 52)
L 12/02/2020 18:35:55Invalid player id 0
L 12
/02/2020 18:35:55: [AMXXDisplaying debug trace (plugin "no-dmg.amxx"version "1.1")
L 12/02/2020 18:35:55: [AMXXRun time error 10native error (native "get_user_weapon")
L 12/02/2020 18:35:55: [AMXX]    [0no-dmg.sma::fwdHamBlockAwpPre (line 52
PHP Code:
#include <amxmodx>
#include <hamsandwich>

#define BLOCK_TYPE 0
/*
    0 - Блочит урон, но есть кровь. Легкий вариант.
    1 - Блочит урон и кровь при попадании. Тяжелее 1-го способа.
*/

new Trie:g_tAuthIds;
new 
bool:g_bBlockKill[33];

public 
plugin_init()
{
    
register_plugin("No Dmg AWP""1.1""neyogomon");
#if BLOCK_TYPE == 0
    
RegisterHam(Ham_TakeDamage"player""fwdHamBlockAwpPre"false);
#endif
#if BLOCK_TYPE == 1
    
RegisterHam(Ham_TraceAttack"player""fwdHamBlockAwpPre"false);
#endif    
}

public 
plugin_cfg()
{
    new 
fp fopen("addons/amxmodx/configs/nodmg.ini""rt");
    if(!
fpset_fail_state("File ^"addons/amxmodx/configs/nodmg.ini^" nuk u gjet ose nuk u lexu!");
    
g_tAuthIds TrieCreate();
    new 
buff[25];
    while(!
feof(fp))
    {
        
fgets(fpbuffcharsmax(buff));
        
trim(buff);
        if(!
buff[0] || buff[0] == ';') continue;
        
TrieSetCell(g_tAuthIdsbuff0);
    }
    
fclose(fp);
}

public 
client_putinserver(id)
{
    static 
sAuthId[25]; get_user_authid(idsAuthIdcharsmax(sAuthId));
    
g_bBlockKill[id] = TrieKeyExists(g_tAuthIdssAuthId) ? true false;
}

#if BLOCK_TYPE == 0
public fwdHamBlockAwpPre(pVictimIdInflictorpAttacker)
#endif
#if BLOCK_TYPE == 1
public fwdHamBlockAwpPre(pVictimpAttacker)
#endif
    
return (g_bBlockKill[pVictim] && get_user_weapon(pAttacker) == CSW_AWP) ? HAM_SUPERCEDE HAM_IGNORED;

public 
plugin_end() TrieDestroy(g_tAuthIds); 

Last edited by lantimilan; 12-03-2020 at 09:05.
lantimilan is offline
Send a message via MSN to lantimilan
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:54.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode