This site is a testing version, but all data is shared with the live forum.


Raised This Month: $ Target: $400
 0% 

Unreal Cheater Cry


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Plugin Info:     Modification:   ALL        Category:   Admin Commands       
KaraulovNoSteam
New Member
Join Date: Apr 2022
Old 04-08-2022 , 03:06   Unreal Cheater Cry
Reply With Quote #1

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!

Last edited by KaraulovNoSteam; 04-08-2022 at 03:07.
KaraulovNoSteam is offline
 



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 05:32.


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