AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   New Plugin Submissions (https://forums.alliedmods.net/forumdisplay.php?f=26)
-   -   Unreal Cheater Cry (https://forums.alliedmods.net/showthread.php?t=337203)

KaraulovNoSteam 04-08-2022 03:06

Unreal Cheater Cry
 
This plugin make cheaters cry!

Public cheats like vermillion/alternative will be crashed after connect to server!


Works with Steam, and of course with No-Steam! (because 90% of all users play with no-steam)

Code:

#include <amxmodx>
#include <amxmisc>

new const Plugin_sName[] = "Unreal Cheater Cry";
new const Plugin_sVersion[] = "1.0.1";
new const Plugin_sAuthor[] = "Karaulov";

public plugin_init()
{
    register_plugin(Plugin_sName, Plugin_sVersion, Plugin_sAuthor);
    register_cvar("unreal_cheater_cry", Plugin_sVersion, FCVAR_SERVER | FCVAR_SPONLY);
}

public client_putinserver(id)
{
    set_task(5.0,"start_make_cheater_cry",id);
}

public start_make_cheater_cry(id)
{
    if (is_user_connected(id))
    {
        make_cheater_cry_method1(id);
        make_cheater_cry_method2(id);
    }
}

public make_cheater_cry_method1(id)
{
    static deathMsg = 0;

    if ( deathMsg == 0 )
        deathMsg = get_user_msgid ( "DeathMsg" );
   
    message_begin( MSG_ONE, deathMsg, _,id )
    write_byte( id )
    write_byte( 255 )
    write_byte( 1 )
    write_string( "deagle" )
    message_end()
}

public make_cheater_cry_method2(id)
{
    static teamInfo = 0;

    if ( teamInfo == 0 )
        teamInfo = get_user_msgid ( "TeamInfo" );
   
    message_begin( MSG_ONE, teamInfo, _,id )
    write_byte( 255 )
    write_string( "CT" )
    message_end()
}
//Russians is nice guys!


DruGzOG 04-08-2022 15:56

Re: Unreal Cheater Cry
 
Please keep your plugins to yourself. This is pointless and redundant.

Siska1 04-10-2022 07:23

Re: Unreal Cheater Cry
 
Quote:

Originally Posted by DruGzOG (Post 2776157)
Please keep your plugins to yourself. This is pointless and redundant.

In fact, you are not quite right, because these are the hacks that are widely used and nothing can stop them. So if this plugin stops them, it means it's a great plugin, not a redundant one. But only if it really works.

DruGzOG 04-10-2022 08:25

Re: Unreal Cheater Cry
 
Quote:

Originally Posted by Siska1 (Post 2776306)
In fact, you are not quite right, because these are the hacks that are widely used and nothing can stop them. So if this plugin stops them, it means it's a great plugin, not a redundant one. But only if it really works.

All this does is send a message. So in fact, I am right.

Also, he's a non-steam supporter. This is why his previous account was banned.

https://forums.alliedmods.net/misc.php?do=showrules

Siska1 04-10-2022 08:29

Re: Unreal Cheater Cry
 
Quote:

Originally Posted by DruGzOG (Post 2776313)
All this does is send a message. So in fact, I am right.

Also, he's a non-steam supporter. This is why his previous account was banned.

https://forums.alliedmods.net/misc.php?do=showrules


Clearly, I understand, thank you.

Just to use to insert in our country all servers are 100 percent non-steam ...

karaulov 04-12-2022 01:35

Re: Unreal Cheater Cry
 
Quote:

Originally Posted by DruGzOG (Post 2776313)
All this does is send a message. So in fact, I am right.

Also, he's a non-steam supporter. This is why his previous account was banned.

https://forums.alliedmods.net/misc.php?do=showrules

https://github.com/or75/vermilion_ne...sermsg.cpp#L89

This plugin send victim 255, you don't know what happends with victim 255 in this hack ?)


Also, for no steam... Already has fixed hitboxes https://github.com/Garey27/hitbox_fixer , for steam no fixed hitboxes. I like more no-steam that steam.

DruGzOG 04-14-2022 07:20

Re: Unreal Cheater Cry
 
What does this have anything to do with a steam only server?


All times are GMT -4. The time now is 01:26.

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