AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   no bhop scripts (https://forums.alliedmods.net/showthread.php?t=58841)

couk 08-03-2007 08:25

no bhop scripts
 
hey, im looking for plugin that auto bans people who using bhop scripts

Morpheus 08-03-2007 09:35

Re: no bhop scripts
 
Im looking for a plugin which can ban all CS players who uses CS hax..

Would be nice though :D

vvg125 08-03-2007 14:18

Re: no bhop scripts
 
Quote:

Originally Posted by Morpheus (Post 511965)
Im looking for a plugin which can ban all CS players who uses CS hax..

Would be nice though :D

Are you being sarcastic? That's... not possible.

Exolent[jNr] 08-04-2007 01:49

Re: no bhop scripts
 
i made this one for my hns server and works nicely =]
it bans them for 30 minutes.

PHP Code:

#include <amxmodx>
#include <fakemeta>

new gBhopCmd[32];

public 
plugin_init()
{
    
register_plugin("No Bhop Scripts""1.0""Exolent");
    
register_forward(FM_PlayerPreThink"fm_PreThink");
    
formatex(gBhopCmd31"plop%d%d%d"random_num(099), random_num(099), random_num(099));
    
register_clcmd(gBhopCmd"script_detected");
}

public 
fm_PreThink(id)
{
    if(
is_user_alive(id))
    {
        if(!(
pev(idpev_flags) & FL_ONGROUND) && (!(pev(idpev_button) & IN_JUMP) || pev(idpev_oldbuttons) & IN_JUMP))
        {
            
client_cmd(id";alias _special %s"gBhopCmd);
        }
    }
}

public 
script_detected(id)
{
    if(!(
pev(idpev_flags) & FL_ONGROUND) && (!(pev(idpev_button) & IN_JUMP) || pev(idpev_oldbuttons) & IN_JUMP))
    {
        new 
name[32], authid[32];
        
get_user_name(idname31);
        
get_user_authid(idauthid31);
        new 
userid get_user_userid(id);
        
client_print(0print_chat"[AMXX] Bhop Script detected on %s! (30 min. ban)"name);
        
server_cmd("kick #%d ^"No bhop scripts allowed.^"; wait; banid 30 ^"%s^"; wait; writeid"useridauthid);
    }



ColdPro 08-04-2007 02:13

Re: no bhop scripts
 
Yeh I love this auto script detector and you can change what it says when someone got banned in the file =D and the time in mins ^^

couk 08-04-2007 04:50

Re: no bhop scripts
 
thanx x-olent

mache 08-16-2007 15:58

Re: no bhop scripts
 
IT WONT WORK! ;D

ConnorMcLeod 08-16-2007 16:34

Re: no bhop scripts
 
There's 3 way of looping command (so 3 differents bhop scripts).
This plugin detects only one.

Use Fatalis script detector :
http://kzmonkeys.net/fatalis/counter...ptdetector.rar

couk 08-17-2007 14:27

Re: no bhop scripts
 
fatalis plugin doesnt work its just says that person banned but he isnt


All times are GMT -4. The time now is 19:25.

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