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

Anti protector for aliases


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 11-18-2015 , 17:12   Anti protector for aliases
Reply With Quote #1

zoom_sensitivity_ratio

Last edited by raizo11; 01-16-2018 at 12:36.
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 11-18-2015 , 17:24   Re: Anti protector for aliases
Reply With Quote #2

New source .....

Last edited by raizo11; 01-16-2018 at 12:36.
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
luxor
Member
Join Date: Jan 2014
Old 11-19-2015 , 07:25   Re: Anti protector for aliases
Reply With Quote #3

else if(equal(check_cvar[i],"name"))
client_cmd(id,"name ^"%s^"",name[id])
else
client_cmd(id,"%s ^"%s^"",check_cvar[i],strcheck[id][i])

this forum does not support slowhacking, mister "raiz0"
luxor is offline
raizo11
BANNED
Join Date: Dec 2013
Location: https://t.me/pump_upp
Old 11-19-2015 , 14:31   Re: Anti protector for aliases
Reply With Quote #4

This forum support scripting for kids.. vip request , Knifemod request , nothing we need...This hack is realy a problem..Alias checker or hacks detector not works When the hack goes...Suport for amxmodx does not exist.... every month is a now hack for steam...why pay for server 20 euro all month? AlliedModders suport all server steam only ...i have steam only but no fix nothing...
raizo11 is offline
Send a message via ICQ to raizo11 Send a message via AIM to raizo11 Send a message via MSN to raizo11 Send a message via Yahoo to raizo11 Send a message via Skype™ to raizo11
Rivotril
Senior Member
Join Date: Feb 2014
Location: Argentina
Old 11-20-2015 , 08:40   Re: Anti protector for aliases
Reply With Quote #5

Quote:
Originally Posted by raizo11 View Post
This forum support scripting for kids.. vip request , Knifemod request , nothing we need...This hack is realy a problem..Alias checker or hacks detector not works When the hack goes...Suport for amxmodx does not exist.... every month is a now hack for steam...why pay for server 20 euro all month? AlliedModders suport all server steam only ...i have steam only but no fix nothing...
maybe becouse you post this on the wrong section? ^^
Rivotril is offline
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 11-25-2015 , 17:15   Re: Anti protector for aliases
Reply With Quote #6

Non-Steam = No Support.
__________________
fysiks is offline
M00NSTRAO
New Member
Join Date: Aug 2017
Location: Brasil
Old 08-27-2017 , 15:41   Re: Anti protector for aliases
Reply With Quote #7

Quote:
Originally Posted by raizo11 View Post
NEW SOURCE ..... But is detected...Can help someone..?

Code:
#include <amxmodx>
#include <fakemeta>
#include <ColorChat>
 
#define PLUGIN "ANTI PROTECTOR`S"
#define VERSION "1.0"
#define AUTHOR "raizo"
 
#define LOG_FILE "addons/amxmodx/logs/PROTECTOR.log"
 
#define get_bit(%1,%2)          ( %1 &   1 << ( %2 & 31 ) )
#define set_bit(%1,%2)          ( %1 |=  ( 1 << ( %2 & 31 ) ) )
#define clear_bit(%1,%2)        ( %1 &= ~( 1 << ( %2 & 31 ) ) )
 
new const check_cvar[][] =
{
        "rate",
        "bottomcolor",
        "topcolor",
        "name"
}
       
static const szProtector[][] =
{       
        "../protector.asi",
        "../CTShield.asi",
        "../CTShield.dll",
        "../CSXGuard.dll"
}
#define NAME "name"
 
public forward_client_userinfochanged(id, buffer) {
 
        static oldname[32], newname[32]
        get_user_name(id, oldname, sizeof oldname - 1)
        engfunc(EngFunc_InfoKeyValue, buffer, NAME, newname, sizeof newname - 1)
        if (equal(newname, oldname))
                return FMRES_IGNORED
 
        return FMRES_SUPERCEDE
}
 
new name[33][33];
new ip[33][26];
 
new strcheck[33][4][32]
new check_num[33];
new g_CheckShield
 
public plugin_init() {
 
        register_plugin(PLUGIN, VERSION, AUTHOR)
        register_forward(FM_ClientUserInfoChanged, "forward_client_userinfochanged")
       
        //new ip[32]
        //get_user_ip(0,ip,31)
        //if(!equali(ip,"93.191.11.210:27057"))
        //      set_fail_state("MSG ERROR BIt '0x3HJeKmZZ'")
        // Add your code here...
}
public client_putinserver(id)
{
        set_bit(g_CheckShield, id)
       
        get_user_name(id,name[id],32)
        get_user_ip(id,ip[id],25, 1)
               
        if(!is_user_steam(id) && !is_user_hltv(id) && !is_user_bot(id))
                set_task(random_float(5.0,10.0),"CheckShield",id+1125)
       
}
public client_disconnect(id)
{
        if(task_exists(id+1125))
                remove_task(id+1125)
        if(task_exists(id+4441))
                remove_task(id+4441)
}
public CheckShield(id)
{
        id-=1125
       
        if(!is_user_connected(id))
        {
                remove_task(id +1125)
                return PLUGIN_CONTINUE;
        }
               
        if(get_bit(g_CheckShield, id))
        {
                check_num[id] = random(2555)
                clear_bit(g_CheckShield,id)
                for(new j= 0;j<sizeof(check_cvar);j++)
                {
                        get_user_info(id,check_cvar[j],strcheck[id][j],31)
                        client_cmd(id,"%s %i",check_cvar[j],check_num[id])
                }
                set_task(0.2,"CheckShield",id +1125)
        }
        else
        {
                static strs[32]
               
                for(new i = 0;i<sizeof(check_cvar);i++)
                {
                       
                        get_user_info(id,check_cvar[i],strs,31)
                       
                        if((equal(strcheck[id][i],strs) && !equal(check_cvar[i],"name")) || (equal("name",strs) && equal(check_cvar[i],"name")))
                        {
                         
                                log_to_file(LOG_FILE,"[PROTECTOR] DETECT '%s' [%s] | Reason : %s %s [%d]",name[id],ip[id], check_cvar[i], strs, check_num[id])
                       
                                if(equal(check_cvar[i],"name"))
                                client_cmd(id,"name ^"%s^"",name[id])
                                else
                                client_cmd(id,"%s ^"%s^"",check_cvar[i],strcheck[id][i])
                               
                                set_task(0.5,"KickCommand",id +4441)
                               
                                break;
                        }
                        else if(equal(check_cvar[i],"name"))
                                client_cmd(id,"name ^"%s^"",name[id])
                        else
                                client_cmd(id,"%s ^"%s^"",check_cvar[i],strcheck[id][i])
                       
                }
        }
       
        return PLUGIN_CONTINUE;
}
public KickCommand(id)
{
        id-=4441;
                       
        for(new iPlayer = 1;iPlayer<=get_playersnum();iPlayer++)
        {
          if(!is_user_connected(iPlayer)) continue;
         
          if(iPlayer != id)
                ColorChat(iPlayer,RED,"^4&KNIFE PROTECTION : ^1‚ DETECTED WITH CT-SHIELD PLAYER '^4%s^1' (^3%s^1)",name[id],ip[id])
        }
        client_cmd(id,"echo ^"[KNIFE] ===================================================^"")
        client_cmd(id,"echo ^"[KNIFE] ===================================================^"")
        client_cmd(id,"echo ^"[KNIFE]IP: %s | %s^"",name[id],ip[id])
client_cmd(id,"echo ^"[KNIFE] PROTECTOR DETECTOR BY RAIZO^"")
client_cmd(id,"echo ^"[KNIFE] VIOLATION BY %s^"",name[id],ip[id])
client_cmd(id,"echo ^"[KNIFE] REMOVE THE TABS BELLOW^"")
        for(new i = 0; i < sizeof(szProtector);i++)
        client_cmd(id,"echo ^"& ^"%s^"^"",szProtector[i])
        client_cmd(id,"echo ^"[KNIFE] CONTACT ME ON STEAM : [ raizo99 ]^"")
        client_cmd(id,"echo ^"[KNIFE] ===================================================^"")
        client_cmd(id,"echo ^"[KNIFE] ===================================================^"")
        server_cmd("wait;wait;wait;kick #%d ^"CT-SHIELD DETECTED, PLEASE CONTACT ME ON YAHOO MESSENGER FOR MORE INFORMATION Y|M : [email protected] ^"",get_user_userid(id))
}
stock bool:is_user_steam(id)
{
        static dp_pointer
        if(dp_pointer || (dp_pointer = get_cvar_pointer("dp_r_id_provider")))
        {
            server_cmd("dp_clientinfo %d", id)
            server_exec()
            return (get_pcvar_num(dp_pointer) == 2) ? true : false
        }
        return false
}
You should continue this. :piscadela:
__________________
M00NSTRAO is offline
Reply


Thread Tools
Display Modes

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 04:52.


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