AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugins (https://forums.alliedmods.net/forumdisplay.php?f=108)
-   -   [ANY] FAC - Convar Checker. (https://forums.alliedmods.net/showthread.php?t=170396)

KyleS 10-24-2011 02:25

[ANY] FAC - Convar Checker.
 
1 Attachment(s)
What is this?
This is a pretty basic Anti Cheat that people can basically set, wait about a day, read the logs (with clients in game), configure then forget.

Uh. What the hell man. There's SMAC, VBAC, KAC, VAC, Rcon Locker, etc.
Well, I originally started this in hopes that it would make it's way into SMAC, since KAC is forever horrible. However, I don't have the time to bring this up to feature spec for what's in place currently. That, and I think it's pretty easy to follow how this works (At least it was easy until I added all these dang configuration options :P).

Oh, okay... What makes this different?
This doesn't care about what static values should be in place, depending server settings, this will check the client against those. This checks every replicated and cheat cvar. The list is generated based on your server. For instance, the list generated on my CS:S server was 414 Convars that it goes through.

Oh Sh*t didn't Bailopan do this way back in 2008?
Yes, he did. I sadly only found this out today after I ran into the same issue he did with mat_hdr_tonemapscale. It's highly suggested you place this in RemovalsSlowThread.cfg.

Uh... How do we prevent a reoccurrence from what happened with that?!
Well see the Cvars below! You'd basically set a detection ratio where if **% are detected, an error is thrown with the ratio of detection and convar name, no one will be banned when this occurs.

Convar list (Not automatically generated).
fac_convarcheck_timertime(5.0)- How often should I be querying for values? (0 to disable)
fac_convarcheck_checkcount (5)- How many checks should I do before moving on?
fac_convarcheck_ratiocheck (75) - If the ratio is higher then this, something has gone terribly wrong.
fac_convarcheck_detectionaction (1) - 0 = Kick, 1 = Ban
fac_convarcheck_banduration (0) - Ban Length. 0 = Permanent. Onwards = Minutes.

Configuration Files (Not automatically generated).
addons/PATH_SM/configs/FAC/AdditionsSlowThread.cfg
addons/PATH_SM/configs/FAC/RemovalsSlowThread.cfg

Credits
Psychonic - Huge thanks for putting up with my questions, as silly as some are.

You do know this can be easily bypassed, right?
Yeah, I know. This was done for fun mostly. Besides, hopefully VAC can catch those "fools".

sinblaster 10-24-2011 08:41

Re: [ANY] FAC - Convar Checker.
 
Quote:

Well, I originally started this in hopes that it would make it's way into SMAC, since KAC is forever horrible
LMFAO

I've always enjoyed you unique posts. The way you ask and answer a question. Cheers

KyleS 10-24-2011 22:41

Re: [ANY] FAC - Convar Checker.
 
I'd like to apologize to anyone running 1.0.

My sanity checks were flawed, one included dividing by zero if no one is ingame. I've tested 1.1 to the best of my ability and I'm running it in production now. So far I've had no errors thrown over several map changes with over 55 players ingame.

EDIT: UGH. Errors are driving me nuts. 1.1b is up.

daveyboye 10-27-2011 15:37

Re: [ANY] FAC - Convar Checker.
 
Hey Kyle. This is what I have so far. Would you be willing to take a look and tell me what I need to do. Also, would it be okay to keep coming back here and you offering advice as to what cvars should be blocked and fixed?

Code:

L 10/27/2011 - 00:18:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mani_tickrate.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:19:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_soundemitter_trace.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:19:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_DrawBeams.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:20:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nb_player_move.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:20:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_skin.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:21:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_maxupdaterate.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:21:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_npc_dmg_ar2.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:22:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_portalscloseall.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:22:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_show_potentially_visible.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:23:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_potentially_visible_dot_tolerance.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:23:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_slopescaledepthbias_decal.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:24:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for dsp_dist_min.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:24:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_suppress_viewpunch.
I highly suggest blacklisting this convar.


KyleS 10-27-2011 20:44

Re: [ANY] FAC - Convar Checker.
 
Quote:

Originally Posted by daveyboye (Post 1584446)
Hey Kyle. This is what I have so far. Would you be willing to take a look and tell me what I need to do. Also, would it be okay to keep coming back here and you offering advice as to what cvars should be blocked and fixed?

Code:

L 10/27/2011 - 00:18:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mani_tickrate.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:19:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_soundemitter_trace.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:19:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_DrawBeams.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:20:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nb_player_move.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:20:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_skin.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:21:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_maxupdaterate.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:21:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_npc_dmg_ar2.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:22:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_portalscloseall.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:22:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_show_potentially_visible.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:23:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_potentially_visible_dot_tolerance.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:23:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_slopescaledepthbias_decal.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:24:08: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for dsp_dist_min.
I highly suggest blacklisting this convar.
L 10/27/2011 - 00:24:38: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_suppress_viewpunch.
I highly suggest blacklisting this convar.


If you're having issues, sure. Whoa at that list. What other plugins are you running?

daveyboye 10-28-2011 18:40

Re: [ANY] FAC - Convar Checker.
 
Not having issues..just trying to set cvar restrictions for people taken advantage of vulnerable cvars.

Here is everything I am running:

Server Plugins
0:<TAB>"Mattie's EventScripts, http://www.eventscripts.com, Version:2.1.1.370"
1:<TAB>"Metamod:Source 1.9.0-dev"

Source: Metamod Plugins
[01] Keeper's Sound Plugin (HYBRID) (2.2.3) by Keeper
[02] Mani Admin Plugin (1.2.22.6 SMM) by Mani
[03] SourceMod (1.4.0-dev) by AlliedModders LLC
[04] Stripper (1.2.2) by BAILOPAN
[05] SDK Tools (1.4.0-dev) by AlliedModders LLC
[06] SDK Hooks (2.1.0) by Tsunami, psychonic

Sourcemod Plugins
01 "Advanced HL2 Movement" (0.2.4) by Chanz
02 "FAC - Convar Checker" (1.1b) by Kyle Sanderson
03 "Infinite Aux Power only for Half-Life 2 MultiPlayer" (2.0.0) by Berni & Chanz
04 "Resource Manager" (2.0) by -=|JFH|=-Naris
05 "Say Sounds (including Hybrid Edition)" (4.0.2) by Hell Phoenix
06 "Spawn & Kill protection" (1.3.0) by Berni, Chanz

Eventscript Plugins
Timeleft by Hunter

daveyboye 10-31-2011 20:01

Re: [ANY] FAC - Convar Checker.
 
Here is a longer list. Any help would be appreciated :)

Code:

1/2011 - 15:11:04: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_infinite_aux_power.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:11:34: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_client_min_interp_ratio.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:12:04: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for g_debug_vehicleexit.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:12:34: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_drawleaf.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:19:45: Error log file session closed.
L 10/31/2011 - 15:41:14: SourceMod error session started
L 10/31/2011 - 15:41:14: Info (map "dm_complex") (file "errors_20111031.log")
L 10/31/2011 - 15:41:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mattie_eventscripts.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:41:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_surfacemat.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:42:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for player_debug_print_damage.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:42:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_autoaim_scale1.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:43:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for g_debug_vehiclebase.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:43:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for physcannon_pullforce.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:44:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for fog_enable_water_fog.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:44:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_dumpstringtables.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:45:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_rimlight.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:45:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nb_debug_known_entities.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:46:14: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_lightstyle.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:46:44: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_auto_reload_time.
I highly suggest blacklisting this convar.
L 10/31/2011 - 15:50:09: Error log file session closed.
L 10/31/2011 - 16:16:53: SourceMod error session started
L 10/31/2011 - 16:16:53: Info (map "dm_aztec") (file "errors_20111031.log")
L 10/31/2011 - 16:16:53: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mattie_eventscripts.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:17:23: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_drawfuncdetail.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:17:53: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_luxels.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:18:23: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_max_smg1.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:18:53: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for ai_drawbattlelines.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:19:23: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for props_break_max_pieces_perframe.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:19:53: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_area_max_size.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:20:23: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mp_enableroundwaittime.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:20:28: Error log file session closed.
L 10/31/2011 - 16:27:29: SourceMod error session started
L 10/31/2011 - 16:27:29: Info (map "dm_dumpbox_[dmk]_final") (file "errors_20111031.log")
L 10/31/2011 - 16:27:29: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mani_reserve_slots.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:27:59: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_pushaway_clientside_size.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:28:29: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nb_path_draw_segment_count.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:28:59: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_ambientlightingonly.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:29:29: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for tf_arena_use_queue.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:29:59: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_loadtextures.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:30:28: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_accelerate.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:30:58: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_npc_dmg_crossbow.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:31:28: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sk_npc_dmg_airboat.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:31:58: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for r_ambientfraction.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:32:28: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_force_transmit_ents.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:32:58: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for player_squad_transient_commands.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:33:28: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for nav_show_node_grid.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:33:58: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for net_showevents.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:34:28: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_norendering.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:35:03: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_pushaway_clientside_size.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:35:33: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mp_capdeteriorate_time.
I highly suggest blacklisting this convar.
L 10/31/2011 - 16:35:42: Error log file session closed.
L 10/31/2011 - 17:10:16: SourceMod error session started
L 10/31/2011 - 17:10:16: Info (map "dm_prison_emc2_v2") (file "errors_20111031.log")
L 10/31/2011 - 17:10:16: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mani_nextmap.
I highly suggest blacklisting this convar.
L 10/31/2011 - 17:10:46: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for physcannon_cone.
I highly suggest blacklisting this convar.
L 10/31/2011 - 17:11:15: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for physcannon_maxforce.
I highly suggest blacklisting this convar.
L 10/31/2011 - 17:11:45: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for g_debug_vehiclesound.
I highly suggest blacklisting this convar.
L 10/31/2011 - 17:21:15: Error log file session closed.
L 10/31/2011 - 17:24:58: SourceMod error session started
L 10/31/2011 - 17:24:58: Info (map "dm_please") (file "errors_20111031.log")
L 10/31/2011 - 17:24:58: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for mat_show_texture_memory_usage.
I highly suggest blacklisting this convar.
L 10/31/2011 - 17:37:12: Error log file session closed.
L 10/31/2011 - 19:24:20: SourceMod error session started
L 10/31/2011 - 19:24:20: Info (map "dm_killarena_v1") (file "errors_20111031.log")
L 10/31/2011 - 19:24:20: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for sv_infinite_aux_power.
I highly suggest blacklisting this convar.
L 10/31/2011 - 19:24:50: [ConvarChecker.smx] WARNING: I was about to do something nasty to 100 percent of the server because they all failed the check for host_sleep.
I highly suggest blacklisting this convar.


KyleS 10-31-2011 20:07

Re: [ANY] FAC - Convar Checker.
 
That's brutal man. I had two cvars for CS:S that I had to blacklist. Unless if there's a bug somewhere... I've yet to encounter it, though.


EDIT: Two values are:
mat_hdr_tonemapscale
r_VehicleViewDampen

daveyboye 10-31-2011 22:45

Re: [ANY] FAC - Convar Checker.
 
So, do you suggest I blacklist all those cvars?

Also, don't know if you can help me with this. Caught a regular in my server using this script. Not sure what it means or what it does. Do you have any clue?

Code:

wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 10%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 20%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 30%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 40%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 50%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 60%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 70%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 80%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 90%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script launched!  LOADING 100%."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
echo "Admin & RCON Hacking script is READY to use."
wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;wait;
alias "rcon_hax" "echo Hacking RCon...;mat_showenvmapmask 1;mat_antialias 0;name gay!;unbindall;mat_crosshair 0;mat_yuv 1;mat_softwareskin 1;mat_savechanges"
alias "admin_hax" "echo Hacking Admin...;mat_showenvmapmask 1;mat_antialias 0;name gay!;unbindall;mat_crosshair 0;mat_yuv 1;mat_softwareskin 1;mat_savechanges"
wait;wait;bind "~" "kill"
wait;wait;bind "w" "rcon_hax"
wait;wait;bind "mouse1" "admin_hax;wait;host_writeconfig config.cfg"
wait;wait;bind "mouse2" "admin_hax;wait;host_writeconfig autoexec.cfg"
wait;wait;bind "mouse3" "admin_hax;wait;host_writeconfig config.cfg"


 #Include <Misc.au3>
    Global $paused
    Local $click = 0
    AutoItSetOption("MouseCoordMode", 0)
    $letter = "¨"
    HotKeySet("{F9}", "goExit")
    $Pausee = 1

    Do
        $letter = InputBox("Choose Pause Button!", "Please enter the letter you want to be your pause button." & @CR & "You can only choose one letter!" & @CR & "To close the aimbot Press F9")
    Until IsString($letter) and StringLen($letter) = 1 and StringIsLower($letter)
    $letter = "" & $letter
    HotKeySet($letter, "TogglePause")

    Func TogglePause()
        If $Pausee = 0 Then
            $Pausee = 1
            ToolTip("Aimbot Un-Paused!", 0, 0)
        Else
            $Pausee = 0
            ToolTip("Aimbot Paused!", 0, 0)
        EndIf
        $Paused = NOT $Paused
        While $Paused
              sleep(100)
          WEnd
    EndFunc

    func goExit()
        Exit
    EndFunc


    $res = 0
    Do
        $res = InputBox("Choose your IN-GAME resolution", "Type 1 For: 640 X 480" & @CR & "2 For: 800 X 600" & @CR & "3 For: 1024 X 768" & @CR & "4 For: 1152 X 864" & @CR & "5 For: 1176 X 664" & @CR & "6 For: 1280 X 720" & @CR & "7 For: 1280 X 960" & @CR & "8 For:1280 X 1024" & @CR & "9 For: 1366 X 768" & @CR & "10 For:1400 x 1050" & @CR & "11 For: 1600 X 1024" & @CR & "12 For: 1768 X 992" & @CR & "13 For: 1980 X 1080")
        If $res = 1 Then
            $xx = 640
            $yy = 480
        ElseIf $res = 2 Then
            $xx = 800
            $yy = 600
        ElseIf $res = 3 Then
            $xx = 1024
            $yy = 768
        ElseIf $res = 4 Then
            $xx = 1152
            $yy = 864
        ElseIf $res = 5 Then
            $xx = 1176
            $yy = 664
        ElseIf $res = 6 Then
            $xx = 1280
            $yy = 720
        ElseIf $res = 7 Then
            $xx = 1280
            $yy = 960
        ElseIf $res = 8 Then
            $xx = 1280
            $yy = 1024
        ElseIf $res = 9 Then
            $xx = 1366
            $yy =


daveyboye 11-02-2011 22:23

Re: [ANY] FAC - Convar Checker.
 
Kyle, how do I "blacklist" the cvars?


All times are GMT -4. The time now is 00:55.

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