diff --git a/script/autoexec.cfg b/script/autoexec.cfg new file mode 100755 index 0000000..6aa54f2 --- /dev/null +++ b/script/autoexec.cfg @@ -0,0 +1,158 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//This a config that executes then tf2 starts up. +//It links most of the other cfgs together by +//executing them allowing them to alias many +//things to allow amazing gameplay experience. +// +//If you have come across this from Julianacat, then I hope you enjoy these cfgs. +//In every one of the many cfgs are the description of what it does. +//Many things are not commented well but I try my best! +//Also for those of you that would like to make use of these scripts, you +//may need some scripting knowlage to adapt it for your uses. +// +//For any of those that are concerned about loops, I have put wait checkers in +//EVERY loop within my scripts that can work on its own to prevent feedback crashes. +//Even if a loop is running and you switch to a different server with wait +//disabled, as soon as it prosses once, the loop shal close and move to a function +//acording to what the loop is being used to do to allow itself to work, but with limited function. +// +//If you have questions, please contact Julianacat at this steam url. +//http://steamcommunity.com/id/Julianacat/ +// +//For best viewing experience in browsing these cfgs, use notepad++ +//and use this custon language script. +//http://www.mediafire.com/download/52n7kddkr18gpl9/Source_Scripting.xml +////////////////////////////////////////////// + +echo Autoexecuting! + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Commands For Scripts + +//Allow Wait Command +sv_allow_wait_command 1 +//Allows maps to execute configs for many uses. +sv_allow_point_servercommand always +// +////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Exec Scripts +//Hud Console! +exec hudConsole + +//Allows Bhop to work +exec bhop + +//Allows you to have a GUI on the top left of your screen +//Has yet to find a use other than being used to enable/disable bhop +exec gui +wait 30;startupgui +bind b gui + +//Allows the respondbot to work +//exec callingscript + +//MAX Grafics Configs +exec gfx + +//Enable Medic Loadout Toggle +exec mediswitch + +//Allow medic Vaccinator script to work +exec medivax +returnmedivax + +//Allow minisentry script to work. +exec minisentscript + +//Enable Music +exec musicscript +disablemusic +//^Uncomment to Enable music + +//Fun binds that I like to spam(NSFW) +exec binds + +//Allows keypress locking +exec keypresslocking +lockpressedkeystoggle2 + +// +///////////////////////////////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Extra Commands To help with the scripts +alias disableothercode "disablemediscript; disablesentryscript; lockpressedkeystoggle2" + +//Fix for some Scripts +bind MOUSE2 "+attack2" + +// +////////////////////////////////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Graphical Enchancements +//Texture Detail (0 for high, 1 for medium) +mat_picmip 2 + +//Gets rid of a shine on weps +r_rimlight 0 + +//Cl Rates to Reduce lag +cl_cmdrate 100 +cl_interp 0 +cl_interp_ratio 1 +cl_lagcompensation 1 +cl_smooth 0 +cl_smoothtime 0.01 +cl_updaterate 67 +rate 60000 + +//Better loading +sv_forcepreload 1 + +//HUD Mods +hud_combattext_batching 1 +hud_combattext_batching_window 3 + +//See what bots are left in MVM +cl_mvm_wave_status_visible_during_wave 1 + +//Instead of seeing those shitty bars, it shows numbers for ping +tf_scoreboard_ping_as_text 1 + +//Use my cool spray +cl_logofile "materials/vgui/logos/Julianacatpic.vtf" + +//Enable Custom Cursors +//cl_software_cursor 1 + +//Enable Transparent Viewmodels for toonhud +exec enable_transparency +// +///////////////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Gameplay Changes +Disables Keypress Locking +unbindkpsbinds + +//Better Sniper Aim +//zoom_sensitivity_ratio 0.8333333 + +//I believe this Helps in some way for listen servers +//doesnt work +//net_maxfilesize 99 +//mp_enableroundwaittime 0 +// +//////////////////////////////////////////////////////////////// +cl_vote_ui_active_after_voting 1 +cl_software_cursor 0 +echo Autoexecuting Done! +bind g +taunt + diff --git a/script/bhop.cfg b/script/bhop.cfg new file mode 100755 index 0000000..b3aaea1 --- /dev/null +++ b/script/bhop.cfg @@ -0,0 +1,40 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Julianacats Bhop Script +//Its hack like bhop as its as long as you hold space, it will bhop. +//Just bind space to +bhop and exec this script. Should Start working right away(as long as the server allows wait) +////////////////////////////////////////////////////////////////// + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +// +alias +bhop "bwaitT;+jump;spec_mode" +alias -bhop "stopbLoop;-jump" + +//The main jump loop, just spams jump key +alias startbLoop "alias bredirect bloop; bloop;" +alias stopbLoop "alias bredirect" +alias bloop "+jump;wait 3;-jump;wait 3;bredirect" + +//Wait tester, if wait is disabled then it would crash tf2 without this. +alias bwaitT "alias bwaitTest startbLoop; alias wait bsetwaitest; wait ; bwaitTest" +alias bsetwaitest "alias bwaitTest +jump" +// +////////////////////////////////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Enable bhop, It enables bhop and tells my GUI script that it is enabled. Disable bhop does the opposite. +alias enablebhop "bind space +bhop;bhopon;dlb" +alias enablebhopleg "bind space +jump;elb" +alias disablebhop "bind space +jump;bhopoff;stopbLoop;dlb" + +//Enable legacy bhop, I use this on jump servers where wait is disabled for some assistance on some jumps. +alias enablelbhop "bind mwheelup +jump;bind mwheeldown +jump" +alias disablelbhop "bind mwheelup invprev;bind mwheeldown invnext" + +//Easy Aliases +alias ebh enablebhop +alias dbh disablebhop +alias elb enablelbhop +alias dlb disablelbhop +// +/////////////////////////////////////////////////////////////////////////////// diff --git a/script/binds.cfg b/script/binds.cfg new file mode 100755 index 0000000..f81e800 --- /dev/null +++ b/script/binds.cfg @@ -0,0 +1,303 @@ +//================================================================================// +//Some binds used to spam text. This is NSFW. If you are underage, // +//then why are you playing tf2. otherwise browse this to your hearts content. :D // +//================================================================================// + +// Baka~ +bind "leftarrow" "say I didn't mean to crit you, b-b-b-baka" + +// Fucked Up Hentai Quotes +// Most of the quotes goto karen for finding them but most i found myself +alias "ln1" "say IMPREGNATE MY ASS! ; alias -copypasta ln2" +alias "ln2" "say Now my armpits are going to smell like dick... ; alias -copypasta ln3" +alias "ln3" "say Damn! Men have different genitals than women! ; alias -copypasta ln4" +alias "ln4" "say You're impregnating me while I'm taking a dump!!! ; alias -copypasta ln5" +alias "ln5" "say Sandwich fuck feels so good... ; alias -copypasta ln6" +alias "ln6" "say If I give birth, then the baby will grow up and lose its virginty before you do~ <3 ; alias -copypasta ln7" +alias "ln7" "say Use your dick and make cheese fondue in my pussy <3 ; alias -copypasta ln8" +alias "ln8" "say I'm shitting and sucking away at my smegma and cumming at the same time!!! ; alias -copypasta ln9" +alias "ln9" "say DAMN! My sister has a nice shit box on her ; alias -copypasta ln10" +alias "ln10" "say Do it! Do it! Pour your cum all over my unborn fetus! ; alias -copypasta ln11" +alias "ln11" "say You must be a real pervert to be able to cum while having my arm twisting around inside your ass ; alias -copypasta ln12" +alias "ln12" "say I'M BEING FUCKED BY MY OWN COCK! ; alias -copypasta ln13" +alias "ln13" "say Wow... Only a truly great pussy allows a premature ejaculator to hold out and extend the feeling of ecstasy... ; alias -copypasta ln14" +alias "ln14" "say The truth is, most boys are horrified when the girl they like suddenly grows a cock ; alias -copypasta ln15" +alias "ln15" "say But having 4 arms shoved up my ass, there's no way I can stand having anything smaller in there now; alias -copypasta ln16" +alias "ln16" "say So much vomit-cum is coming out of Senpai's mouth-pussy! ; alias -copypasta ln17" +alias "ln17" "say OGHHH!! My throat-pussy is being raped by this filthy penis! ; alias -copypasta ln18" +alias "ln18" "say So you crossdress and ejaculate prematurely... That's beyond sad ; alias -copypasta ln19" +alias "ln19" "say Control this 'GLOBAL WARMING' in my pussy! ; alias -copypasta ln20" +alias "ln20" "say You won't be able to rape me after cumming in my mouth ; alias -copypasta ln21" +alias "ln21" "say WHO IN THEIR RIGHT MIND WOULD FROST A CAKE WITH THEIR BUTT?! ; alias -copypasta ln22" +alias "ln22" "say Now that I actually came on my little brother's face, all my fears seem to have vanished ; alias -copypasta ln23" +alias "ln23" "say Why is that giraffe pounding into my anus so fiercely?! ; alias -copypasta ln24" +alias "ln24" "say Oooooh, it's knocking on the door to my baby factory! <3 ; alias -copypasta ln25" +alias "ln25" "say It's so big and thick! The dick of a married woman! ; alias -copypasta ln26" +alias "ln26" "say My pussy feels so good! It feels so good to shove shit into my pussy! ; alias -copypasta ln27" +alias "ln27" "say Maybe it's because I have sucked on nothing but cocks fo the last few days... ; alias -copypasta ln28" +alias "ln28" "say I'LL CUM TOO MUCH AND DIE! ; alias -copypasta ln29" +alias "ln29" "say Hhmng...! Ooh! Here it comes! Yes! Give my nose an enema with your cum! ; alias -copypasta ln30" +alias "ln30" "say It makes me sick to think I was fucking a woman who was having sex with an alligator ; alias -copypasta ln31" +alias "ln31" "say And your excrement will become my sustenance ; alias -copypasta ln32" +alias "ln32" "say Meeting and talking to men while naked increases your chances to score! ; alias -copypasta ln33" +alias "ln33" "say I wish I could have had sex with mom like you did, sis ; alias -copypasta ln34" +alias "ln34" "say Please don't watch me cum while I spray pee out of my ass! ; alias -copypasta ln35" +alias "ln35" "say He's like the ferryman across the River Styx, pulling men into sin by their dicks! ; alias -copypasta ln36" +alias "ln36" "say I'M BECOMING A TOTAL SLAVE FOR THICK, LONG, AND HARD MEGACOCKS! ; alias -copypasta ln37" +alias "ln37" "say Humans can make cows pregnant?! ; alias -copypasta ln38" +alias "ln38" "say I'M FLOATING ON COCKS! ; alias -copypasta ln39" +alias "ln39" "say It felt like I came my entire insides out my dick... ; alias -copypasta ln40" +alias "ln40" "say Heh, you're not only quick at fighting, but your dick is also like that of a kid's! ; alias -copypasta ln41" +alias "ln41" "say These are savage, untamed dicks ; alias -copypasta ln42" +alias "ln42" "say Terrorist actions against my ass are not acceptable! ; alias -copypasta ln43" +alias "ln43" "say But... It's a sin to have tits this huge for a girl your age! ; alias -copypasta ln44" +alias "ln44" "say This is bit of a pickle, though. ; alias -copypasta ln45" +alias "ln45" "say What does it say about a grade school teacher if she doesn't want to fuck her students? ; alias -copypasta ln46" +alias "ln46" "say T-this could be the biggest turd in all of Japan, no, the world... ; alias -copypasta ln47" +alias "ln47" "say Teach us how to use dicks ; alias -copypasta ln48" +alias "ln48" "say There's nothing better than cafe au semen, I tell you! ; alias -copypasta ln49" +alias "ln49" "say To have the person I love also be a hermaphrodite... ; alias -copypasta ln50" +alias "ln50" "say It's enough to make me want to thank God with a blowjob! ; alias -copypasta ln51" +alias "ln51" "say Just shut the fuck up, and let me fuck your ass!!! ; alias -copypasta ln52" +alias "ln52" "say Ooh? She's already wet, even though she's a virgin! ; alias -copypasta ln53" +alias "ln53" "say Quit having fun squeezing a guy's breasts ; alias -copypasta ln54" +alias "ln54" "say A dick with phimosis is the best <3 ; alias -copypasta ln55" +alias "ln55" "say Come on, confess. You wanted me to assault you, didn't you? ; alias -copypasta ln56" +alias "ln56" "say They say it's dangerous to swallow the cum of foreigners ; alias -copypasta ln57" +alias "ln57" "say Ah ah ah! I'm the lonely rapist! ; alias -copypasta ln58" +alias "ln58" "say You're too addicted to the cock! ; alias -copypasta ln59" +alias "ln59" "say You have become so dick-crazed that you can no longer call yourself a man! ; alias -copypasta ln60" +alias "ln60" "say I mean, this is why we went on vacation, so you could discreetly suck girl cock ; alias -copypasta ln61" +alias "ln61" "say The reason kindergartners' hands are so small is because they're meant to pat dicks! ; alias -copypasta ln62" +alias "ln62" "say It's because you only fight with your anus ; alias -copypasta ln63" +alias "ln63" "say Ughhh... I ended up giving my chastity to my girlfriend's cat... ; alias -copypasta ln64" +alias "ln64" "say She's eating my dick first? She's a slutty zombie, a slutbie! ; alias -copypasta ln65" +alias "ln65" "say Can you believe the whole school is being powered by your semen right now? ; alias -copypasta ln66" +alias "ln66" "say Even though I'm just a high schooler, I'm prepared to be a mother! ; alias -copypasta ln67" +alias "ln67" "say So please... impregnate me! ; alias -copypasta ln68" +alias "ln68" "say You're basically using my pussy to masturbate! ; alias -copypasta ln69" +alias "ln69" "say A vagina! I'm licking a real vagina! ; alias -copypasta ln70" +alias "ln70" "say Ripping through a high school girl's hymen is the best ; alias -copypasta ln71" +alias "ln71" "say Plus, her small tits are right up my alley ; alias -copypasta ln72" +alias "ln72" "say Flat chest is justice! ; alias -copypasta ln73" +alias "ln73" "say That was the point when I realized that there really was no candy. ; alias -copypasta ln74" +alias "ln74" "say My entire body is turning into pussies. ; alias -copypasta ln75" +alias "ln75" "say Your pussy's become so plump... and smells like an incredibly hot, rich cheese... ; alias -copypasta ln76" +alias "ln76" "say I'm not sure what's going on, but my asshole is in danger! ; alias -copypasta ln77" +alias "ln77" "say When I got back home, I was greeted by an ass coming out of the microwave. ; alias -copypasta ln78" +alias "ln78" "say Hey sis, look at me too! Your nipple is about to penetrate me! ; alias -copypasta ln79" +alias "ln79" "say My penis isn't just satisfied with just pudding. ; alias -copypasta ln80" +alias "ln80" "say You were fucked by your father who is the same person as your mother, and now you are pregnant. ; alias -copypasta ln81" +alias "ln81" "say Stoop!! Your second helping of milk is gonna turn my pussy into an idiot!! ; alias -copypasta ln82" +alias "ln82" "say M... My cum belongs to the fuhrer...! ; alias -copypasta ln83" +alias "ln83" "say LAST TIME I SLEPT WITH YOU, I GAVE YOU... SUPER HERPES!!! ; alias -copypasta ln84" +alias "ln84" "say My immortal dick is once again on fire and can't be stopped. ; alias -copypasta ln85" +alias "ln85" "say SH... SHE STOPPED HIM WITH A BLOWJOB!! ; alias -copypasta ln86" +alias "ln86" "say Stop trolling my anus! ; alias -copypasta ln87" +alias "ln87" "say Here we go! Nose rape! ; alias -copypasta ln88" +alias "ln88" "say Whenever mom was at work, I had sex with the cow. ; alias -copypasta ln89" +alias "ln89" "say It's like... He's ejaculating strait inside my mind. ; alias -copypasta ln90" +alias "ln90" "say And now we can even have sex with her dick!! ; alias -copypasta ln91" +alias "ln91" "say THE TREATY OF VERSAI OH GOD I'M CUUMMING! ; alias -copypasta ln92" +alias "ln92" "say Please come into my rectum and fill it up to the brim by using them like a false penis ; alias -copypasta ln93" +alias "ln93" "say Please captain, rape my streched anus with your erected nipples! ; alias -copypasta ln94" +alias "ln94" "say Wah! What are we going to do on the bed? ; alias -copypasta ln95" +alias "ln95" "say What are you doing back there, onii-chan? ; alias -copypasta ln96" +alias "ln96" "say Please go easy on me. I'm a virgin *spreads gaping vagina* ; alias -copypasta ln97" +alias "ln97" "say It's amazing! Anal sex with little girls really is the best! ; alias -copypasta ln98" +alias "ln98" "say If it's in the butt, then it doesn't count. ; alias -copypasta ln99" +alias "ln99" "say Pump that semen inside your sister! ; alias -copypasta ln100" +alias "ln100" "say Onee-Chan... p-please be gentle... aah~ ; alias -copypasta ln101" +alias "ln101" "say You're gonna get raped by my thick, fat futa-dick! ; alias -copypasta ln102" +alias "ln102" "say A tunafish just made me cum... ; alias -copypasta ln103" +alias "ln103" "say As you can plainly see... I'm a rapist disguised as a pizza boy. ; alias -copypasta ln104" +alias "ln104" "say I was the one who was overconfident, thinking I could compete against someone who used an infinite semen cheat code on his balls! ; alias -copypasta ln105" +alias "ln105" "say Why is that man feeling so good despite her forcibly raping him? ; alias -copypasta ln106" +alias "ln106" "say Tonight I'm going to thoroughly stab you with my dick!! ; alias -copypasta ln107" +alias "ln107" "say You're the kind of little sister who prefers dick over olives... ; alias -copypasta ln108" +alias "ln108" "say The contents of my stomach... Are waffle batter mix! ; alias -copypasta ln109" +alias "ln109" "say Mommy, your sperm are raping my sperm... It's making me cum! ; alias -copypasta ln110" +alias "ln110" "say Still, It's pretty awesome that he's going to end up getting raped by that homo. ; alias -copypasta ln111" +alias "ln111" "say Ah... I wish I could be one of your tissues... and take your stinky cum day after day... ; alias -copypasta ln112" +alias "ln112" "say Ravioli, ravioli, cum in my assholi ; alias -copypasta ln113" +alias "ln113" "say It's not rape if their pupils turn into hearts, ask any lawyer ; alias -copypasta ln114" +alias "ln114" "say My pussy's about to eat up your weiner and it's like~ GOBBLE GOBBLE! ; alias -copypasta ln115" +alias "ln115" "say Penis or not, my feelings won't ever change! ; alias -copypasta ln116" +alias "ln116" "say You don't bring girls to your room and not have sex with them! ; alias -copypasta ln117" +alias "ln117" "say Uhn! I'm gonna launch my load at express speed! ; alias -copypasta ln118" +alias "ln118" "say Next class is physical education. Girls who are filed with my semen don't have to participate because I don't want them to spill it. ; alias -copypasta ln119" +alias "ln119" "say You pissed in my coffee didn't you? Not that it matters anyway.. ; alias -copypasta ln120" +alias "ln120" "say Let's rape! You can start by screaming. ; alias -copypasta ln121" +alias "ln121" "say Didn't your mother teach you proper manners? It's only polite to close your asshole after being raped. ; alias -copypasta ln122" +alias "ln122" "say I wanna be fucked so hard I don't even know my own name anymore. ; alias -copypasta ln123" +alias "ln123" "say I can't believe you're confessing while eating his ass out! ; alias -copypasta ln124" +alias "ln124" "say Incest sure tastes bitter... ; alias -copypasta ln125" +alias "ln125" "say Our mothers will check our hymen every month, so I take a trip back home when the time comes. ; alias -copypasta ln126" +alias "ln126" "say How cruel, my pussy smells like camembert cheese for sure! ; alias -copypasta ln127" +alias "ln127" "say Not to good girls: Make sure not to insert a ball pen in your pussy. ; alias -copypasta ln128" +alias "ln128" "say You... You understood me, didn't you Mr. Tentacle...!? ; alias -copypasta ln129" +alias "ln129" "say If I see such a beautiful spinal erector mussle, then I must rub my dick against it. ; alias -copypasta ln130" +alias "ln130" "say I have three size d batteries lodged inside my asshole as a defensive measure. I call it ''The Shining Dragon.'' ; alias -copypasta ln131" +alias "ln131" "say I guess I have no choice... I have to impregnate my little sister! ; alias -copypasta ln132" +alias "ln132" "say I can't stop shitting! Pushing it out feels good!!!<3 ; alias -copypasta ln133" +alias "ln133" "say I can't calm down without smelling some semen!! ; alias -copypasta ln134" +alias "ln134" "say My body can only be washed by tits! ; alias -copypasta ln135" +alias "ln135" "say Come on, let's rethink this... I'm healthy! I don't need your hand in my butt! ; alias -copypasta ln136" +alias "ln136" "say Uhaa... Got carried away and spoofed right in ya' gash... ; alias -copypasta ln137" +alias "ln137" "say I was always taught to thank my host with sex if I ever ran away from home. ; alias -copypasta ln138" +alias "ln138" "say Her god's tounge really loves it's new pacifier... ; alias -copypasta ln139" +alias "ln139" "say Don't you dare make a mockery of cock! ; alias -copypasta ln140" +alias "ln140" "say I'm going to make you have a lot of ogre babies ; alias -copypasta ln141" +alias "ln141" "say Look, you're getting gayer and gayer... Decending into faggotry... ; alias -copypasta ln142" +alias "ln142" "say Fag... Gay... <3 <3 ; alias -copypasta ln143" +alias "ln143" "say YOU WILL BECOME A DICK ; alias -copypasta ln144" +alias "ln144" "say Poor Mr. Wolf! To have lost the ability to get an erection like that... ; alias -copypasta ln145" +alias "ln145" "say As expected of british chicks, what a smelly cunt you've got there. ; alias -copypasta ln146" +alias "ln146" "say Don't you think it's rude to greet your guest with your ass, Onee-chan? ; alias -copypasta ln147" +alias "ln147" "say That's right. Sugary sweet, sinfully rich, delightfully sticky faggot sex! <3 ; alias -copypasta ln148" +alias "ln148" "say This is such an amazing discovery! Let's name this your ass-pussy! ; alias -copypasta ln149" +alias "ln149" "say I'm cumming inside myself! ; alias -copypasta ln150" +alias "ln150" "say If you only see me as your brother, then why are your nipples erect? ; alias -copypasta ln151" +alias "ln151" "say Using this cock that I grew using a special drug, we'll both feel good together... senpai. <3 ; alias -copypasta ln152" +alias "ln152" "say Do...Don't fap your dick through my ASSSSS!! ; alias -copypasta ln153" +alias "ln153" "say APOLOGISE TO THE GOD OF SEX!! ; alias -copypasta ln154" +alias "ln154" "say I can stick three dicks in my mouth and sing the national anthem! ; alias -copypasta ln155" +alias "ln155" "say No, I will surpass that and become the king of virgins! ; alias -copypasta ln156" +alias "ln156" "say Here's you're pervert little brother's cock pounding your tight wet sister-pussy! ; alias -copypasta ln157" +alias "ln157" "say Mmmmmmm sweet incest fucking with onee-chan! ; alias -copypasta ln158" +alias "ln158" "say Nipple rubbing attack! ; alias -copypasta ln159" +alias "ln159" "say Wish such cuteness, gender means diddly-squat. Welcome to penis-land! ; alias -copypasta ln160" +alias "ln160" "say I wanted to push her away, but instead I ended up pushing her into my boner ; alias -copypasta ln161" +alias "ln161" "say You have a godly cock, onii-chan. So before I do anything, let me pay my respects. ; alias -copypasta ln162" +alias "ln162" "say But instead of getting close to one... I actually became a girl myself! ; alias -copypasta ln163" +alias "ln163" "say It feels like it wants to rape you. Not go on, suck your own dick. ; alias -copypasta ln164" +alias "ln164" "say How can you get pregnant in your ass...? I'm a magical girl, I can do anything! ; alias -copypasta ln165" +alias "ln165" "say With this giant rod I think I'll have no problem shoving my way into a toddler's pussy... ; alias -copypasta ln166" +alias "ln166" "say This p- perverted gay blowjob feels great..! ; alias -copypasta ln167" +alias "ln167" "say You're like a goat giving birth. ; alias -copypasta ln168" +alias "ln168" "say I'm pregnant and I'm a guy! ; alias -copypasta ln169" +alias "ln169" "say His ass-pussy really is the best! ; alias -copypasta ln170" +alias "ln170" "say Is it okay if my pussy becomes stupid? ; alias -copypasta ln171" +alias "ln171" "say I transplanted my womb and organs into my breasts... so its alright! ; alias -copypasta ln172" +alias "ln172" "say I had a itch down there and i needed something to stick up in there ; alias -copypasta ln173" +alias "ln173" "say If he creampies me, my memories as a man will die and... I will... I will become female! ; alias -copypasta ln174" +alias "ln174" "say It's so thick and warm. My breasts could get pregnant from it!. ; alias -copypasta ln175" +alias "ln175" "say My manpussy feels good right? ; alias -copypasta ln176" +alias "ln176" "say Fufu, It's not going in. You better learn how to get your ass-pussy wet soon! ; alias -copypasta ln177" +alias "ln177" "say But the tentacles... Yes, the tentacles. They can save these lonely girls! ; alias -copypasta ln178" +alias "ln178" "say This is where you say goodbye to your past self. This cock will change your entire existence. ; alias -copypasta ln179" +alias "ln179" "say If I don't crush that guys puny cock in my own hands, I can't be satisfied! ; alias -copypasta ln180" +alias "ln180" "say Why in the world do you have a frozen fish stick up your pussy!? ; alias -copypasta ln181" +alias "ln181" "say This is exactly why I can't stop raping elementary school girls!! ; alias -copypasta ln182" +alias "ln182" "say Rape myself!! This is it... ULTIMATE MASTURBATION! ; alias -copypasta ln183" +alias "ln183" "say These nipple pussies with their artifically implanted clitorises. ; alias -copypasta ln184" +alias "ln184" "say My stomach is being filled with semen that doesn't belong to my husband! ; alias -copypasta ln185" +alias "ln185" "say A middle schooler's virgin pussy has the best color after all ; alias -copypasta ln186" +alias "ln186" "say Good thing our parents shared their syringes! ; alias -copypasta ln187" +alias "ln187" "say Double rape time! ; alias -copypasta ln188" +alias "ln188" "say Your butt's getting used to your own penis! It's like a butt-pussy! ; alias -copypasta ln189" +alias "ln189" "say I-I'm sorry. I kind of raped you... ; alias -copypasta ln190" +alias "ln190" "say Make me feel like I'm five years old again and playin' with my dog in the yard! ; alias -copypasta ln191" +alias "ln191" "say Satan, guide by cock!!! ; alias -copypasta ln192" +alias "ln192" "say Donut penis! ; alias -copypasta ln193" +alias "ln193" "say How dare you play the flute as you have sex! ; alias -copypasta ln194" +alias "ln194" "say I can feel it bumping against the back of your throat through my anus... ; alias -copypasta ln195" +alias "ln195" "say I'm shooting sperm from my nipples... ; alias -copypasta ln196" +alias "ln196" "say My younger brother-in-law was really pissing me off, so I went and raped him thinking it'd make him fall in line, but... ; alias -copypasta ln197" +alias "ln197" "say My recorder is stuck in your butt! ; alias -copypasta ln198" +alias "ln198" "say Before I knew it, I had a dream to rape a bat ; alias -copypasta ln199" +alias "ln199" "say You gave him the gay! ; alias -copypasta ln200" +alias "ln200" "say Anybody with cock troubles comes to me. ; alias -copypasta ln201" +alias "ln201" "say Well then, let me teach you the beauty of receiving a blowjob from a man!! ; alias -copypasta ln202" +alias "ln202" "say It's as if my entire body is turning into cum. <3 ; alias -copypasta ln203" +alias "ln203" "say I feel like I could get pregnant just from how they're violating my face <3 ; alias -copypasta ln204" +alias "ln204" "say I'm your older sister, little sister, mother and daughter! ; alias -copypasta ln205" +alias "ln205" "say Dad...! That means you've had things up your ass before am I right? ; alias -copypasta ln206" +alias "ln206" "say If you go further, I'll... cum out of my breasts ; alias -copypasta ln207" +alias "ln207" "say She must be quite the masochist to blow her load while vomiting up cum. ; alias -copypasta ln208" +alias "ln208" "say Just relax and accept the fact that you're being raped, It's easier for you that way. ; alias -copypasta ln209" +alias "ln209" "say Who dares grab my penis!? ; alias -copypasta ln210" +alias "ln210" "say A relative's semen is the best! <3 ; alias -copypasta ln211" +alias "ln211" "say I had a buttfull of cockmeat and a virgin-tight loli cunt squeezing my dick. ; alias -copypasta ln212" +alias "ln212" "say Cough up your panties and put them on immediately! ; alias -copypasta ln213" +alias "ln213" "say It feels like a caterpillar's forcing itself inside me... ; alias -copypasta ln214" +alias "ln214" "say Yea! Thats why onii-chan has to give me lots of sperm to play with! ; alias -copypasta ln215" +alias "ln215" "say I've been busted, he found out I'm a boy! I have to get out of here! ; alias -copypasta ln216" +alias "ln216" "say Getting throatfucked is the best~ <3 ; alias -copypasta ln217" +alias "ln217" "say You pretend to be sweet around your friends but then you're just a lolicon pervert that rapes his little sister! ; alias -copypasta ln218" +alias "ln218" "say I'm orgasming with my boy pussy! <3 ; alias -copypasta ln219" +alias "ln219" "say My traitorous pussy, it's surrendering while my ass is being violated! It's cumming disgracefully! <3 ; alias -copypasta ln220" +alias "ln220" "say How's about a cock-sandwich with titty-muffins? ; alias -copypasta ln221" +alias "ln221" "say Squeeze the semen out of your wife's dick! <3 ; alias -copypasta ln222" +alias "ln222" "say In eromanga all girls get wet just from giving head so it's okay! ; alias -copypasta ln223" +alias "ln223" "say Having sex with your own body os really more like masturbation, right?! ; alias -copypasta ln224" +alias "ln224" "say No matter how much you love them, those sisters won't come out of the screen! ; alias -copypasta ln225" +alias "ln225" "say Mmm... This wonderful cock scent... ; alias -copypasta ln226" +alias "ln226" "Gently grasping the bulge with his hand. ; alias -copypasta ln227" +alias "ln227" "Never kick a little anime girl, even in her penis. ; alias -copypasta ln228" +alias "ln228" "I showed you my dick, answer me! ; alias -copypasta ln229" +alias "ln229" "Wait...! All me's ever done with me is fuck my ass...!! ; alias -copypasta ln230" +alias "ln230" "Your butt is wet and hot inside just like a cat in heat would be. ; alias -copypasta ln1" + +// Starting line to use +alias "-copypasta" "ln201" +// Bind Hentai quotes to right arrow +bind "rightarrow" "-copypasta" + + +// Fucked Up Furry Quotes +alias "fln1" "say yiff me big boi~ ; alias -fcopypasta fln2" +alias "fln2" "say rockin his hard length spraying his hot pre is ejected onto your crotch, taking every inch of your sweaty balls in the autumn breeze, with falling dead multi-colored leaves flowing at the same time~ ; alias -fcopypasta fln3" +alias "fln3" "say i wanna yiff you too~ ; alias -fcopypasta fln4" +alias "fln4" "say I tease your ass, starting to leak hot pre into your yiff hole~ ; alias -fcopypasta fln5" +alias "fln5" "say Put your cock to your face, and let his knot in after some struggle, howling and releasing the rest of his tongue up inside of you, my kitty cock. After a couple strokes in and out ohhhhh you're great~ ; alias -fcopypasta fln6" +alias "fln6" "say *licks paw* ; alias -fcopypasta fln7" +alias "fln7" "say What are you a lick on the nape of your ass~ ; alias -fcopypasta fln8" +alias "fln8" "say I spit out the dildo need help with that... I suck you penis?~ ; alias -fcopypasta fln9" +alias "fln9" "say I offered you a lick of his cum shoots onto the floor, his little breasts, squeezing his legs togethis to keep his male places from your mouth as your rub your clothed cock between slut's tight pink bumcheeks~ ; alias -fcopypasta fln10" +alias "fln10" "say my knot pops out from under you, away from the mouth of the water brandishing my now hard cock under his tail hole~ ; alias -fcopypasta fln11" +alias "fln11" "say Melons in my penis into your mouth and ejaculates all over your tailhole~ ; alias -fcopypasta fln12" +alias "fln12" "say your full balls smacking hard against your thigh a soft gasp from the massive poker stuffed so rudely up his teenaged tailpipe~ ; alias -fcopypasta fln13" +alias "fln13" "say ohhhhhhhh yessss wiggles down onto one of excitement and eagearness as you pound his tailhole~ ; alias -fcopypasta fln14" +alias "fln14" "say he murrs, slipping one paw to start to hump her, brutally forcing her smooth little tush~ ; alias -fcopypasta fln15" +alias "fln15" "say cum slowly drips down the semen~; alias -fcopypasta fln16" +alias "fln16" "say yiff my butt~ ; alias -fcopypasta fln17" +alias "fln17" "say he spits onto your upturned ass cheeks, painting them white as he drops, nuzzling your own rear~ ; alias -fcopypasta fln18" +alias "fln18" "say smiles and nuzzles his chest, his big fat husky dick into your body, sac slapping against your fuzzy butt with my leg, and let it all~ ; alias -fcopypasta fln19" +alias "fln19" "say remove my cock ring~ ; alias -fcopypasta fln20" +alias "fln20" "say I lick your asshole with a loud pop~ ; alias -fcopypasta fln21" +alias "fln21" "say turns over and covers your eyes. sry but all you gona feel is whats going on in her warm vagina. you can heve deez nuts~ ; alias -fcopypasta fln22" +alias "fln22" "say k im going to feel your penis pulsate. only a yip comes out as his eyes at the touch* Ok! ok! You've got it, I yield~ ; alias -fcopypasta fln23" +alias "fln23" "say thrusts forward into your yiff hole~ ; alias -fcopypasta fln24" +alias "fln24" "say moans loudly at the one whos pic is him bending over to a hands and knees position, I spread my buns~ ; alias -fcopypasta fln25" +alias "fln25" "say he spits onto your hips~ ; alias -fcopypasta fln26" +alias "fln26" "say love me bitch~ ; alias -fcopypasta fln27" +alias "fln27" "say I'm not too active, I really am a slutty gay boy too?~ ; alias -fcopypasta fln1" + +// Starting line to use +alias "-fcopypasta" "fln1" +// Bind Fur quotes to minus on the num pad +bind "kp_minus" "-fcopypasta" + + +// Tf2RjBinds +alias "rjln1" "say [D|Peon] sammt : can someone learn me how to pogo ; alias -rjcopypasta rjln2" +alias "rjln2" "say * [D|Knight V] cunkconutman222 : !niggers ; alias -rjcopypasta rjln3" +alias "rjln3" "say [Unranked] Charmander sad : i am like map :v ; alias -rjcopypasta rjln4" +alias "rjln4" "say [S|Princess V] Vice | tipofthehats.org : im gay ; alias -rjcopypasta rjln5" +alias "rjln5" "say [S|Esquire IV] camila : my eyes are painful ; alias -rjcopypasta rjln6" +alias "rjln6" "say [S|Princess V] Vice | tipofthehats.org : i aim with my leg ; alias -rjcopypasta rjln7" +alias "rjln7" "say [S|Sir II] Vice : u can literally do anything with me ; alias -rjcopypasta rjln8" +alias "rjln8" "say IRC | (US2) - Ψ Psi: everytime someone tells me kys a part of me dies ; alias -rjcopypasta rjln9" +alias "rjln9" "say IRC | (US2) - Ψ Psi: I Dont speak good england ; alias -rjcopypasta rjln10" +alias "rjln10" "say [S|King] minty : nice cock ; alias -rjcopypasta rjln11" +alias "rjln11" "say [S|Jester IV] snow : i move with arrow keys ; alias -rjcopypasta rjln12" +alias "rjln12" "say * [S|Empress] Boshy : I love yiff! ; alias -rjcopypasta rjln1" + +// Starting line to use +alias "-rjcopypasta" "rjln2" +// Bind rj quotes to i +bind i "-rjcopypasta" + + + diff --git a/script/cat_autoexec.cfg b/script/cat_autoexec.cfg new file mode 100644 index 0000000..693d739 --- /dev/null +++ b/script/cat_autoexec.cfg @@ -0,0 +1,98 @@ +//////////////////////////////////////// +//Julianacat's main autoexec configs for cathook! +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + +//Connect to the cathook ipc server allowing bots to operate +cat_ipc_connect + +//Execing previous cfgs as well as load spam files +exec cat_lastcfg +cat_killsay_file killsays_full.txt; cat_killsay_reload +cat_spam_file bee.txt; cat_spam_reload + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Synchronized commands for bots + +bind j "cat_fb_tool move" //Move to location then return, good for picking up resupply, metal or health from ground +bind i "cat_fb_tool move; cat_fb_tool stay" //Move to location and stay there, usefull for leaving bots as a destraction while you do other things +alias +ekey "voicemenu 0 0; cat_fb_tool follow; cat_fb_follow_me; cat_ipc_exec_all voicemenu 0 0; +rcond; impulse 201" +alias -ekey "-rcond" +bind e +ekey //Pressing medic calls the bots to follow you, bots reply with medic as a responce +bind g "taunt; cat_ipc_exec_all taunt" //Synchronized taunting is cool + +bind "rightarrow" "-copypasta; cat_ipc_exec_all -copypasta" //My bind alias that allows chatspam utilizing all bots + +//bind l "cat_ipc_exec_all savres_t" //Bind a key to disable bots rendering saving on fps on low spec systems + +//Allows bots to vote whatever you vote, you need to press multiple times +bind f2 "vote option2; cat_ipc_exec_all vote option2" +bind f1 "vote option1; cat_ipc_exec_all vote option1" + +// +////////////////////////////////////// + +//Bind a toggle for airstuck (airstuck isnt that great but it works well with bots) +//bindtoggle q cat_airstuck_toggle + +//Bound whatever key to +speed for a quick speedhack for farming payload carts +bind f +speed +cat_spoof sv_cheats +alias +speed "q_sv_cheats 1 ; q_host_timescale 7" +alias -speed "q_host_timescale 1 ; q_sv_cheats 0 " + + + + + +alias +rcond "cowaitT" +alias -rcond "stopcoLoop" + + +alias startcoLoop "alias coredirect coloop; coloop" +alias stopcoLoop "alias coredirect" +alias coloop "cat_removecond;wait 9;coredirect" + +//Wait tester, if wait is disabled then it would crash tf2 without this. +alias cowaitT "alias cowaitTest startcoLoop; alias wait cosetwaitest; wait ; cowaitTest" +alias cosetwaitest "alias cowaitTest cat_removecond" +q_sv_allow_wait_command 1 + + + + +//Network settings for accuracy with cathook +//cl_cmdrate 66 +//cl_interp_ratio 1 +//cl_interp 0 +//cl_updaterate 66 +//rate 100000 +//cl_smooth 0 +//cl_smoothtime 0.01 +//cl_pred_optimize 0 +//cat_set sv_client_min_interp_ratio -1 +//cat_set cl_interp_ratio 0 +//cat_set cl_extrapolate 0 + +cat_name [Cathook]Onee chan :3 +cat_disconnect_reason VAC banned fro... Oh wait... +//Dead code utilizing airstuck for infinite healing medics, airstuck is now fixed but i keep the code for future pastes +//alias +exheal "cat_ipc_exec_all exhheal" +//alias -exheal "cat_ipc_exec_all exheal; wait 125; kill;wait 50; join_class spy;wait 25;join_class sniper" +//bind t +exheal + +bind t catbot_snipers +alias catbot_sniper1 "alias catbot_snipers catbot_sniper2;cat_ipc_exec 1 join_class sniper" +alias catbot_sniper2 "alias catbot_snipers catbot_sniper3;cat_ipc_exec 2 join_class sniper" +alias catbot_sniper3 "alias catbot_snipers catbot_sniper4;cat_ipc_exec 3 join_class sniper" +alias catbot_sniper4 "alias catbot_snipers catbot_sniper5;cat_ipc_exec 4 join_class sniper" +alias catbot_sniper5 "alias catbot_snipers catbot_sniper6;cat_ipc_exec 5 join_class sniper" +alias catbot_sniper6 "alias catbot_snipers catbot_sniperR;cat_ipc_exec 6 join_class sniper" +alias catbot_sniperR "alias catbot_snipers catbot_sniper1" +catbot_sniperR + +unbind q + + +cat_software_cursor_mode 3 + diff --git a/script/cat_lastcfg.cfg b/script/cat_lastcfg.cfg new file mode 100644 index 0000000..3de30d7 --- /dev/null +++ b/script/cat_lastcfg.cfg @@ -0,0 +1,111 @@ +cat_gui_color_b "255" +cat_gui_color_g "85" +cat_gui_color_r "225" +cat_gui_visible "1" +cat_gui_bg_particles_jittering_chance "18" +cat_gui_bg_particles_wind "40" +cat_gui_bg_particles_safe_zone "825" +cat_gui_bg_particles_pack_size "53" +cat_gui_bg_particles_chance "3" +cat_gui_bg_particles_type "4" +cat_software_cursor_mode "3" +cat_pure_bypass "1" +cat_no_zoom "1" +cat_clean_screenshots "0" +cat_clean_chat "1" +cat_fov "0.00" +cat_fov_zoomed "75.000000" +cat_resolver "1" +cat_disconnect_reason "VAC banned fro... Oh wait..." +cat_fb_autoclass "medic" +cat_fast_outline "1" +cat_font_esp_family "0" +cat_rollspeedhack "28" +cat_thirdperson "1" +cat_ignore_taunting "0" +cat_name "[Cathook]Onee chan :3" +cat_glow_old_players "0" +cat_glow_old_stickies "1" +cat_glow_old_health_packs "1" +cat_glow_old_ammo_boxes "1" +cat_glow_old_color_scheme "0" +cat_fb_auto_playerlist "0" +cat_fast_vischeck "1" +cat_glow_blur_scale "3" +cat_glow_stickies "1" +cat_glow_buildings "1" +cat_glow_ammo "1" +cat_glow_medkits "1" +cat_glow_teammates "1" +cat_glow_enable "1" +cat_sticky_distance "180" +cat_sticky_enabled "1" +cat_antidisguise "1" +cat_aimbot_slow_autoshoot "17" +cat_aimbot_slow_smooth "12" +cat_aimbot_proj_fovpred "1" +cat_aimbot_proj_vispred "1" +cat_aimbot_prioritymode "1" +cat_aimbot_proj_gravity " -0.1" +cat_aimbot_proj_speed "0.000000" +cat_aimbot_respect_cloak "0" +cat_aimbot_maxrange "0.00" +cat_aimbot_huntsman_charge "0.366400" +cat_aimbot_zoomed "0" +cat_aimbot_interp "0" +cat_aimbot_fov "7.200000" +cat_aimbot_enabled "1" +cat_aimbot_aimkey "111" +cat_aimbot_respect_vaccinator "0" +cat_aimbot_ignore_hoovy "1" +cat_crit_melee "1" +cat_debug_info "1" +cat_spycrab "1" +cat_nopush_enabled "1" +cat_render_zoomed "1" +cat_bhop_enabled "1" +cat_aa_aaaa_flip_key "15" +cat_aa_aaaa_mode "1" +cat_aa_aaaa_interval_low "4.000000" +cat_aa_aaaa_interval_high "10.000000" +cat_aa_aaaa_interval "-1.000000" +cat_aa_spin "3.000000" +cat_aa_roll "0.00" +cat_aa_pitch_mode "10" +cat_aa_yaw_mode "2" +cat_aa_pitch "-89.000000" +cat_aa_yaw "87.299988" +cat_spam_file "bee.txt" +cat_antibackstab_nope "1" +cat_antibackstab_distance "225.000000" +cat_killsay_file "killsays_full.txt" +cat_reflect_distance "220" +cat_reflect_stickybombs "1" +cat_reflect_enabled "1" +cat_radar_y "67" +cat_radar_x "311" +cat_radar_zoom "4.000000" +cat_radar_size "326" +cat_autoheal_enabled "1" +cat_instant_decloak "1" +cat_removecond_value "300" +cat_removecond_key "80" +cat_esp_box_expand "5" +cat_esp_box_nodraw "1" +cat_esp_bone "1" +cat_esp_3d_box_smoothing "2" +cat_esp_proj_stickies "2" +cat_esp_vischeck "0" +cat_esp_distance "0" +cat_esp_item_health "0" +cat_esp_teammates "1" +cat_esp_enabled "1" +cat_esp_weapon "0" +cat_autobackstab "1" +cat_spyalert_sound "0" +cat_spyalert_backstab "200.00" +cat_spyalert_warning "500.00" +cat_spyalert_enabled "1" +cat_trigger_respect_vaccinator "0" +cat_trigger_finish "0" +cat_trigger_respect_cloak "0" diff --git a/script/cat_matchexec.cfg b/script/cat_matchexec.cfg new file mode 100644 index 0000000..7fa2bd6 --- /dev/null +++ b/script/cat_matchexec.cfg @@ -0,0 +1,17 @@ +// Put your custom cathook settings in this file +// This script will be executed EACH TIME YOU JOIN A MATCH +//cat_ipc_exec_all autoteam +//cat_ipc_exec 1 join_class medic +//cat_ipc_exec 2 join_class medic +//cat_ipc_exec 3 join_class sniper +//cat_ipc_exec 4 join_class sniper +//cat_ipc_exec 5 join_class medic +hud_reloadscheme + +// For use with cathook. + +cat_set sv_client_min_interp_ratio -1 // Ignores a server not allowing you to set this to -1. +cat_set cl_interp_ratio 0 // Since the minimum interp ratio is being unrestricted now, you can force this to 0. +catbot_sniperR + +//wait 250; cat_set sv_client_min_interp_ratio -1; wait 250; cat_set cl_interp_ratio 0; wait 250; cat_set cl_interp 0 diff --git a/script/cat_nozoom_off.cfg b/script/cat_nozoom_off.cfg new file mode 100644 index 0000000..96843ab --- /dev/null +++ b/script/cat_nozoom_off.cfg @@ -0,0 +1,4 @@ +zoom_sensitivity_ratio 0.833333 +cat_fov_zoomed 20 +cat_render_zoomed 0 +cat_aimbot_fov 1 diff --git a/script/cat_nozoom_on.cfg b/script/cat_nozoom_on.cfg new file mode 100644 index 0000000..740b6e0 --- /dev/null +++ b/script/cat_nozoom_on.cfg @@ -0,0 +1,4 @@ +zoom_sensitivity_ratio 2 +cat_fov_zoomed 75.000000 +cat_render_zoomed 1 +cat_aimbot_fov 0 diff --git a/script/demoman.cfg b/script/demoman.cfg new file mode 100755 index 0000000..030900b --- /dev/null +++ b/script/demoman.cfg @@ -0,0 +1,11 @@ +hudOnali36;echo Now Playing Demoman;wait 1500;hudOffali36 + +//Disable Other Class Specific Code +disableothercode + +//Demoman Specific Code Goes here + +//Allows Music To be played +musicDemoman +hudOnali37;echo Demoman Configs Loaded;wait 1500;hudOffali37 +bind mouse3 +attack3 \ No newline at end of file diff --git a/script/engineer.cfg b/script/engineer.cfg new file mode 100755 index 0000000..b9c2484 --- /dev/null +++ b/script/engineer.cfg @@ -0,0 +1,21 @@ +hudOnali34;echo Now Playing Engineer;wait 1500;hudOffali34 + +//Disable Other Class Specific Code +disableothercode + + +//////////////////////////////////////////////////////////////////// +//Engineer Specific Code Goes here +//Dispencer Placement Script +bind MOUSE5 "destroy 0 0;build 0 0" + +//Commands for allowing the minisentry script +returnsentryscript +ewaitT +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +//Allows Music To be played +musicEngineer +hudOnali35;echo Engineer Configs Loaded;wait 1500;hudOffali35 \ No newline at end of file diff --git a/script/gui.cfg b/script/gui.cfg new file mode 100755 index 0000000..70a0551 --- /dev/null +++ b/script/gui.cfg @@ -0,0 +1,196 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//This script allows a "gui" like experience using the arrow keys and enter. +//You can Browse the script using the arrow keys and its just jike any menu. +//You have many options to go into sub menus and exit from the gui itself. +// +//This ABSOLUTLY REQUIRES the hudconsole api. Without it this all is useless. +//If you decide to mess with it making it independant, any other script that +//needs the console or sililar will mess with it. +//HudConsole is created for the purpose of preventing scripts from stealing the show on the console dev area. +// +//Some amazing code ive written here that even allows this to work with wait disabled. +//Wait enabled usage: press b to bring it up, then use up and down arrow keys to navagate it. +//Enter(both numpad and regular works) is used to select an option. +//You can exit it by pressing b or selecting exit from the menu. +//Wait disabled usage: Everythings the same except the screen will only update when something is pressed. +//Ex: you press b to pull the gui up and it will pring to the console once. When you press any of the navagation keys +//it will update as well. +// +//Currently it has only one use but im searching for more usages atm. +//If you have an idea that could work with this, please contact Julianacat. +///////////////////////////////////// + +//Main Display Loop +alias startgLoop "alias gredirect gloop; gloop; alias gui stopgLoop; bindguikeys; point1; disablelegacygui; alias keypressguilegacyprint" +alias stopgLoop "alias gredirect;alias gui gwaitT;hudOffali53;unbindguikeys; alias guilegacyonofftoggle guilegacyon" +alias gloop "hudOnali53;clear;cline1;cline2;cline3;cline4;cline5;cline6;wait 30;gredirect" + +//Test for wait +alias gwaitT "alias gwaitTest startgLoop;alias wait gsetwaitest;wait; gwaitTest; alias keypressguilegacyprint" +alias gsetwaitest "alias gwaitTest guilegacyt" + +//Arrow Key Funtionallity +alias bindguikeys "alias pointerupkey pointerup;alias pointerdownkey pointerdown" +alias unbindguikeys "alias pointerupkey;alias pointerdownkey" +bind uparrow pointerupkey +bind downarrow pointerdownkey +bind kp_enter pointerselect +bind enter pointerselect + +///////////////////////////////////////////////// +//Main Menu +alias line1 "echo ________Menu________" +//alias line1 "echo ______LMAO BOX______" +alias line3 "echo Show Keys" +alias line4 "echo Info" +alias line5 "echo Cheats" +alias line6 "echo Exit" + +alias line3a "echo Show Keys<---" +alias line4a "echo Info<---" +alias line5a "echo Cheats<---" +alias line6a "echo Exit<---" + +alias resetpointer "alias cline1 line1;alias cline2 line2;alias cline3 line3;alias cline4 line4;alias cline5 line5;alias cline6 line6;" +alias point1 "alias pointerupkey point5;alias pointerdownkey point2;resetpointer;alias cline2 line2a;alias pointerselect guibhopselect" +alias point2 "alias pointerupkey point1;alias pointerdownkey point3;resetpointer;alias cline3 line3a;alias pointerselect kwaitT" +alias point3 "alias pointerupkey point2;alias pointerdownkey point4;resetpointer;alias cline4 line4a;alias pointerselect guiinfomenu" +alias point4 "alias pointerupkey point3;alias pointerdownkey point5;resetpointer;alias cline5 line5a;alias pointerselect guicustmenu" +alias point5 "alias pointerupkey point4;alias pointerdownkey point1;resetpointer;alias cline6 line6a;alias pointerselect stopgLoop" +alias guimainmenu "resetpointer;point1" +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +///////////////////////////////////////////////// +//Class Specific +alias classline1 "echo ______Class Menu______" +alias classline2 "echo ." +alias classline3 "echo ." +alias classline4 "echo ." +alias classline5 "echo Back" +alias classline6 "echo Exit" + +alias classline2a "echo .<---" +alias classline3a "echo .<---" +alias classline4a "echo .<---" +alias classline5a "echo Back<---" +alias classline6a "echo Exit<---" + +alias classresetpointer "alias cline1 classline1;alias cline2 classline2;alias cline3 classline3;alias cline4 classline4;alias cline5 classline5;alias cline6 classline6;" +alias classpoint1 "alias pointerupkey classpoint5;alias pointerdownkey classpoint2;classresetpointer;alias cline2 classline2a;alias pointerselect" +alias classpoint2 "alias pointerupkey classpoint1;alias pointerdownkey classpoint3;classresetpointer;alias cline3 classline3a;alias pointerselect" +alias classpoint3 "alias pointerupkey classpoint2;alias pointerdownkey classpoint4;classresetpointer;alias cline4 classline4a;alias pointerselect" +alias classpoint4 "alias pointerupkey classpoint3;alias pointerdownkey classpoint5;classresetpointer;alias cline5 classline5a;alias pointerselect guimainmenu" +alias classpoint5 "alias pointerupkey classpoint4;alias pointerdownkey classpoint1;classresetpointer;alias cline6 classline6a;alias pointerselect stopgLoop" +alias guiclassmenu "classresetpointer;classpoint1" +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +////////////////////////////////////////////////// +//Info Menu +alias infoline1 "echo ________Info________" +alias infoline2 "callgui" +alias infoline3 "rbotscript" +alias infoline4 "echo Rate hitler" +alias infoline5 "echo Back" +alias infoline6 "echo Exit" + +alias infoline2a "callguia" +alias infoline3a "rbotscripta" +alias infoline4a "echo .<---" +alias infoline5a "echo Back<---" +alias infoline6a "echo Exit<---" + +alias inforesetpointer "alias cline1 infoline1;alias cline2 infoline2;alias cline3 infoline3;alias cline4 infoline4;alias cline5 infoline5;alias cline6 infoline6;" +alias infopoint1 "alias pointerupkey infopoint5;alias pointerdownkey infopoint2;inforesetpointer;alias cline2 infoline2a;alias pointerselect pingprog" +alias infopoint2 "alias pointerupkey infopoint1;alias pointerdownkey infopoint3;inforesetpointer;alias cline3 infoline3a;alias pointerselect guirbotselect" +alias infopoint3 "alias pointerupkey infopoint2;alias pointerdownkey infopoint4;inforesetpointer;alias cline4 infoline4a;alias pointerselect guihitlerselect" +alias infopoint4 "alias pointerupkey infopoint3;alias pointerdownkey infopoint5;inforesetpointer;alias cline5 infoline5a;alias pointerselect guimainmenu" +alias infopoint5 "alias pointerupkey infopoint4;alias pointerdownkey infopoint1;inforesetpointer;alias cline6 infoline6a;alias pointerselect stopgLoop" +alias guiinfomenu "inforesetpointer;infopoint1" +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +///////////////////////////////////////////////// +//Cheats +alias custline1 "echo _______Cheats_______" +alias custline2 "echo Sv_cheats 1" +alias custline3 "echo Noclip" +alias custline4 "echo Lots of Health" +alias custline5 "echo Back" +alias custline6 "echo Exit" + +alias custline2a "echo Sv_cheats 1<---" +alias custline3a "echo Noclip<---" +alias custline4a "echo Lots of Health<---" +alias custline5a "echo Back<---" +alias custline6a "echo Exit<---" + +alias custresetpointer "alias cline1 custline1;alias cline2 custline2;alias cline3 custline3;alias cline4 custline4;alias cline5 custline5;alias cline6 custline6;" +alias custpoint1 "alias pointerupkey custpoint5;alias pointerdownkey custpoint2;custresetpointer;alias cline2 custline2a;alias pointerselect guicheattoggle" +alias custpoint2 "alias pointerupkey custpoint1;alias pointerdownkey custpoint3;custresetpointer;alias cline3 custline3a;alias pointerselect guinoclip" +alias custpoint3 "alias pointerupkey custpoint2;alias pointerdownkey custpoint4;custresetpointer;alias cline4 custline4a;alias pointerselect hurtme -42000000" +alias custpoint4 "alias pointerupkey custpoint3;alias pointerdownkey custpoint5;custresetpointer;alias cline5 custline5a;alias pointerselect guimainmenu" +alias custpoint5 "alias pointerupkey custpoint4;alias pointerdownkey custpoint1;custresetpointer;alias cline6 custline6a;alias pointerselect stopgLoop" +alias guicustmenu "custresetpointer;custpoint1" + +alias guinoclip "noclip; sm_noclip @me" +alias guicheattoggle "guicheattoggle1" +alias guicheattoggle1 "alias guicheattoggle guicheattoggle2; sv_cheats 1; sm_cvar sv_cheats 1" +alias guicheattoggle2 "alias guicheattoggle guicheattoggle1; sv_cheats 0; sm_cvar sv_cheats 0" +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +/////////////////////////////////////////////////// +//Legacy Gui Usability(wait off or disabled) + +//Main stuff for when legacy is used +alias guilegacytoggle "guilegacyonofftoggle; guilegacybind; alias disablelegacygui guilegacyunbind; bindguikeys; echo Using Legacy GUI(wait disabled); point1; guilegacyprint;" +alias guilegacyprint "clear;cline1;cline2;cline3;cline4;cline5;cline6;" +alias guilegacybind "bind uparrow legpointerupkey; bind downarrow legpointerdownkey; bind kp_enter legpointerselect; bind enter legpointerselect" + +//Turns on and off the gui thru toggles! +alias guilegacyt "guilegacytoggle" +alias guilegacyon "hudOnali53; alias guilegacyonofftoggle guilegacyoff" +alias guilegacyoff "stopgloop; alias guilegacyonofftoggle guilegacyon" + +alias guilegacyonofftoggle "" +//Extra aliases for sorting +alias legpointerupkey "pointerupkey; guilegacyprint" +alias legpointerdownkey "pointerdownkey; guilegacyprint" +alias legpointerselect "pointerselect; guilegacyprint" + +//Stuff for returning to normal operation +alias guilegacyunbind "bind uparrow pointerupkey; bind downarrow pointerdownkey; bind kp_enter pointerselect; bind enter pointerselect; alias disablelegacygui" +alias disablelegacygui + +// +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ + + +alias bhopoff "alias line2 echo Toggle Bhop(off); alias line2a echo Toggle Bhop(off)<---; alias guibhopselect bguiwaitT" +alias bhopon "alias line2 echo Toggle Bhop(on); alias line2a echo Toggle Bhop(on)<---; alias guibhopselect disablebhop; bguiwaitT" +alias bhoponleg "alias line2 echo Toggle Bhop(legacy); alias line2a echo Toggle Bhop(legacy)<---; alias guibhopselect disablebhop; enablebhopleg" +alias bguiwaitT "alias bguiwaitTest enablebhop; alias wait bguisetwaitest; wait ; bguiwaitTest" +alias bguisetwaitest "alias bguiwaitTest bhoponleg" + +alias guiOProgRun "alias callgui echo Outside Program:Running; alias callguia echo Outside Program:Running<---" +alias guiOProgNRun "alias callgui echo Outside Program:Not Running; alias callguia echo Outside Program:Not Running<---" + +alias rbotguion "alias rbotscript echo Respond Bot(on); alias rbotscripta echo Respond Bot(on)<---; alias guirbotselect disablerbot" +alias rbotguioff "alias rbotscript echo Respond Bot(off); alias rbotscripta echo Respond Bot(off)<---; alias guirbotselect enablerbot" + +//alias kpsguion "alias rbotscript echo Kps locking(on); alias rbotscripta echo Kps locking(on)<---; alias guikpsselect disablerbot" +//alias kpsguioff "alias rbotscript echo Kps locking(off); alias rbotscripta echo Kps locking(off)<---; alias guikpsselect enablerbot" + +//Use in autoexec after EXECing this +alias startupgui "disablebhop;bhopoff;disablerbot" + + +alias enablegui "bind b gui" +alias disablegui "unbind b" +wait 200;stopgLoop \ No newline at end of file diff --git a/script/heavy.cfg b/script/heavy.cfg new file mode 100755 index 0000000..ec7ad48 --- /dev/null +++ b/script/heavy.cfg @@ -0,0 +1,10 @@ +hudOnali32;echo Now Playing Heavy;wait 1500;hudOffali32 + +//Disable Other Class Specific Code +disableothercode + +//Heavy Specific Code Goes here + +//Allows Music To be played +musicHeavy +hudOnali33;echo Heavy Configs Loaded;wait 1500;hudOffali33 \ No newline at end of file diff --git a/script/hudConsole.cfg b/script/hudConsole.cfg new file mode 100755 index 0000000..542014b --- /dev/null +++ b/script/hudConsole.cfg @@ -0,0 +1,149 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Uses a debug mode to tell the user, some info on the corner of the screen +//I have Heavealy implemented this into my scripts, it is a MUST for those willing to use my scripts. +//It is THE backbone to most of my things allowing scripts wanting to give info to the user, and easy way to to that +//while not allowing another command to disable the hud before another program has +// +//How it works: When you call a hudOnAli(then some number) then it disables every hudOffAli(then some number) +//except the one with the number that called the hudOnAli in the first place. +//////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Instuctions of how to use. +// +//For your command, first put your number of the command unique to all others, lets say 21 +// +//alias myCommand "hudOnali21" +// +//see that the number for the command is 21... thats the uniqe number for all the other commands in the alias +//Now we need to put our code +// +//alias myCommand "hudOnali21;myCode" +// +//it does NOT need to be an alias but for this demo it will be +//Now we want to show the user a line of text, use the echo command to display your text +//then a wait command. +//The wait command is how long the text will stay up there. +// +//alias myCommand "hudOnali21;myCode;echo THIS IS MY TEXT THAT THE USER SEES;wait 1500" +// +//Now we ned to finalize it with the endpeice using the unique number +//"hudOffali" +// +//alias myCommand "hudOnali21;myCode;echo THIS IS MY TEXT THAT THE USER SEES;wait 1500;hudOffali21" +// +//Once "myCode" is finished it should display "THIS IS MY TEXT THAT THE USER SEES" +//afterwards in 1500 wait ticks, it will stop console from being echoed +// +//You must use a unique number if you want the cose to be used as intended +// +//"hudOnali21;myCode;echo TEXT;wait 1500;hudOffali21" +// +//Note: You can usually put your code anywhere in the place, it doesnt have to be in the same location...but it will have different results +// +////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + + +//Disable Hud Console +alias disHudCon "con_filter_enable 0; developer 0;clear" + +//Enable Hud Console +alias enHudCon "con_filter_enable 1; developer 1" + + + +//Per 20 +alias disAllCon "groupalias1;groupalias2;groupalias3" +alias groupalias1 "alias hudOffali1;alias hudOffali2;alias hudOffali3;alias hudOffali4;alias hudOffali5;alias hudOffali6;alias hudOffali7;alias hudOffali8;alias hudOffali9;alias hudOffali10;alias hudOffali11;alias hudOffali12;alias hudOffali13;alias hudOffali14;alias hudOffali15;alias hudOffali16;alias hudOffali17;alias hudOffali18;alias hudOffali19;alias hudOffali20;" +alias groupalias2 "alias hudOffali21;alias hudOffali22;alias hudOffali23;alias hudOffali24;alias hudOffali25;alias hudOffali26;alias hudOffali27;alias hudOffali28;alias hudOffali29;alias hudOffali30;alias hudOffali31;alias hudOffali32;alias hudOffali33;alias hudOffali34;alias hudOffali35;alias hudOffali36;alias hudOffali37;alias hudOffali38;alias hudOffali39;alias hudOffali40;" +alias groupalias3 "alias hudOffali41;alias hudOffali42;alias hudOffali43;alias hudOffali44;alias hudOffali45;alias hudOffali46;alias hudOffali47;alias hudOffali48;alias hudOffali49;alias hudOffali50;alias hudOffali51;alias hudOffali52;alias hudOffali53;alias hudOffali54;alias hudOffali55;alias hudOffali56;alias hudOffali57;alias hudOffali58;alias hudOffali59;alias hudOffali60;" +disAllCon + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//When you want to display something, you call hudOnali, then a number SPECIFIC to your command +alias hudOnali1 "disAllCon;enHudCon;alias hudOffali1 disHudCon" +alias hudOnali2 "disAllCon;enHudCon;alias hudOffali2 disHudCon" +alias hudOnali3 "disAllCon;enHudCon;alias hudOffali3 disHudCon" +alias hudOnali4 "disAllCon;enHudCon;alias hudOffali4 disHudCon" +alias hudOnali5 "disAllCon;enHudCon;alias hudOffali5 disHudCon" +alias hudOnali6 "disAllCon;enHudCon;alias hudOffali6 disHudCon" +alias hudOnali7 "disAllCon;enHudCon;alias hudOffali7 disHudCon" +alias hudOnali8 "disAllCon;enHudCon;alias hudOffali8 disHudCon" +alias hudOnali9 "disAllCon;enHudCon;alias hudOffali9 disHudCon" +alias hudOnali10 "disAllCon;enHudCon;alias hudOffali10 disHudCon" +alias hudOnali11 "disAllCon;enHudCon;alias hudOffali11 disHudCon" +alias hudOnali12 "disAllCon;enHudCon;alias hudOffali12 disHudCon" +alias hudOnali13 "disAllCon;enHudCon;alias hudOffali13 disHudCon" +alias hudOnali14 "disAllCon;enHudCon;alias hudOffali14 disHudCon" +alias hudOnali15 "disAllCon;enHudCon;alias hudOffali15 disHudCon" +alias hudOnali16 "disAllCon;enHudCon;alias hudOffali16 disHudCon" +alias hudOnali17 "disAllCon;enHudCon;alias hudOffali17 disHudCon" +alias hudOnali18 "disAllCon;enHudCon;alias hudOffali18 disHudCon" +alias hudOnali19 "disAllCon;enHudCon;alias hudOffali19 disHudCon" +alias hudOnali20 "disAllCon;enHudCon;alias hudOffali20 disHudCon" +alias hudOnali21 "disAllCon;enHudCon;alias hudOffali21 disHudCon" +alias hudOnali22 "disAllCon;enHudCon;alias hudOffali22 disHudCon" +alias hudOnali23 "disAllCon;enHudCon;alias hudOffali23 disHudCon" +alias hudOnali24 "disAllCon;enHudCon;alias hudOffali24 disHudCon" +alias hudOnali25 "disAllCon;enHudCon;alias hudOffali25 disHudCon" +alias hudOnali26 "disAllCon;enHudCon;alias hudOffali26 disHudCon" +alias hudOnali27 "disAllCon;enHudCon;alias hudOffali27 disHudCon" +alias hudOnali28 "disAllCon;enHudCon;alias hudOffali28 disHudCon" +alias hudOnali29 "disAllCon;enHudCon;alias hudOffali29 disHudCon" +alias hudOnali30 "disAllCon;enHudCon;alias hudOffali30 disHudCon" +alias hudOnali31 "disAllCon;enHudCon;alias hudOffali31 disHudCon" +alias hudOnali32 "disAllCon;enHudCon;alias hudOffali32 disHudCon" +alias hudOnali33 "disAllCon;enHudCon;alias hudOffali33 disHudCon" +alias hudOnali34 "disAllCon;enHudCon;alias hudOffali34 disHudCon" +alias hudOnali35 "disAllCon;enHudCon;alias hudOffali35 disHudCon" +alias hudOnali36 "disAllCon;enHudCon;alias hudOffali36 disHudCon" +alias hudOnali37 "disAllCon;enHudCon;alias hudOffali37 disHudCon" +alias hudOnali38 "disAllCon;enHudCon;alias hudOffali38 disHudCon" +alias hudOnali39 "disAllCon;enHudCon;alias hudOffali39 disHudCon" +alias hudOnali40 "disAllCon;enHudCon;alias hudOffali40 disHudCon" +alias hudOnali41 "disAllCon;enHudCon;alias hudOffali41 disHudCon" +alias hudOnali42 "disAllCon;enHudCon;alias hudOffali42 disHudCon" +alias hudOnali43 "disAllCon;enHudCon;alias hudOffali43 disHudCon" +alias hudOnali44 "disAllCon;enHudCon;alias hudOffali44 disHudCon" +alias hudOnali45 "disAllCon;enHudCon;alias hudOffali45 disHudCon" +alias hudOnali46 "disAllCon;enHudCon;alias hudOffali46 disHudCon" +alias hudOnali47 "disAllCon;enHudCon;alias hudOffali47 disHudCon" +alias hudOnali48 "disAllCon;enHudCon;alias hudOffali48 disHudCon" +alias hudOnali49 "disAllCon;enHudCon;alias hudOffali49 disHudCon" +alias hudOnali50 "disAllCon;enHudCon;alias hudOffali50 disHudCon" +alias hudOnali51 "disAllCon;enHudCon;alias hudOffali51 disHudCon" +alias hudOnali52 "disAllCon;enHudCon;alias hudOffali52 disHudCon" +alias hudOnali53 "disAllCon;enHudCon;alias hudOffali53 disHudCon" +alias hudOnali54 "disAllCon;enHudCon;alias hudOffali54 disHudCon" +alias hudOnali55 "disAllCon;enHudCon;alias hudOffali55 disHudCon" +alias hudOnali56 "disAllCon;enHudCon;alias hudOffali56 disHudCon" +alias hudOnali57 "disAllCon;enHudCon;alias hudOffali57 disHudCon" +alias hudOnali58 "disAllCon;enHudCon;alias hudOffali58 disHudCon" +alias hudOnali59 "disAllCon;enHudCon;alias hudOffali59 disHudCon" +alias hudOnali60 "disAllCon;enHudCon;alias hudOffali60 disHudCon" +// +///////////////////////////////////////////////////////////////////////////////////////////////// + + +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//This is a Batch file thai i used to make these commands instead of doing it all by hand. +//Depending on the number, it will output all this to a txt file. +//To use, make a batch file(a file ending with .bat)and paste all this in. You will need to remove all the comments for it to work. +// +//@echo off +//set /p userinp=Userinp?: +//set /a userinp=%userinp%+1 +//set tick=1 +//:loop +//echo alias hudOnali%tick% "disAllCon;enHudCon;alias hudOffali%tick% disHudCon">>alias.txt +//echo alias hudOnali%tick% "disAllCon;enHudCon;alias hudOffali%tick% disHudCon" +//set /a tick=%tick%+1 +//if "%userinp%" == "%tick%" goto doneLoop +//goto loop +//:doneLoop +//echo done +//pause +// +/////////////////////////////////////////////////////////////////////////// diff --git a/script/keypresslocking.cfg b/script/keypresslocking.cfg new file mode 100755 index 0000000..0e8a5e1 --- /dev/null +++ b/script/keypresslocking.cfg @@ -0,0 +1,106 @@ +//Binding and unbinding +alias kplbindP "alias +kplfwd +mfwd; alias +kplback +mback; alias +kplleft +mleft; alias +kplright +mright; alias +kplcrouch +kplduck; alias +kplmouse1 +kplattack" +alias kplunbindP "alias +kplfwd; alias +kplback; alias +kplleft; alias +kplright; alias +kplcrouch; alias +kplmouse1" + +alias kplbindm "alias -kplfwd -mfwd; alias -kplback -mback; alias -kplleft -mleft; alias -kplright -mright; alias -kplcrouch -kplduck; alias -kplmouse1 -kplattack" +alias kplunbindm "alias -kplfwd; alias -kplback; alias -kplleft; alias -kplright; alias -kplcrouch; alias -kplmouse1" + + +//Toggle Stuff +alias lockpressedkeyslk "kplunbindm; kplunbindP" +alias lockpressedkeysunlk "kplbindP; kplbindm" + +alias lockpressedkeystoggle1 "alias lockpressedkeystoggle lockpressedkeystoggle2; kwaitT; alias keypressl6 pressvarL5L; lockpressedkeyslk; keypressguilegacyprint" +alias lockpressedkeystoggle2 "alias lockpressedkeystoggle lockpressedkeystoggle1; alias keypressl6 pressvarL5Ul; lockpressedkeysunlk; keypressguilegacyprint" + +//No stop walking script +alias +mfwd "-back; +forward; alias checkfwd +forward; alias keypressl3 pressvarL2p; keypressupdategui" +alias +mback "-forward; +back; alias checkback +back; keyLpresss" +alias +mleft "-moveright; +moveleft; alias checkleft +moveleft; keyLpressa" +alias +mright "-moveleft; +moveright; alias checkright +moveright; keyLpressd" +alias -mfwd "-forward; checkback; alias checkfwd none; alias keypressl3 pressvarL2up; keypressupdategui" +alias -mback "-back; checkfwd; alias checkback none; keyLunpresss" +alias -mleft "-moveleft; checkright; alias checkleft none; keyLunpressa" +alias -mright "-moveright; checkleft; alias checkright none; keyLunpressd" +alias checkfwd none +alias checkback none +alias checkleft none +alias checkright none +alias none "" + +alias +kplduck "+duck; alias keypressl5 pressvarL4p; keypressupdategui" +alias -kplduck "-duck; alias keypressl5 pressvarL4up; keypressupdategui" +alias +kplattack "+attack; spec_next; alias keypressl2 pressvarL1vM1p; keypressupdategui" +alias -kplattack "-attack; alias keypressl2 pressvarL1vM1up; keypressupdategui" + + +alias pressvarL1vM1p "echo --------------M1----" +alias pressvarL1vM1up "echo --------------------" +alias pressvarL2p "echo ---------W----------" +alias pressvarL2up "echo --------------------" +alias pressvarL3up "keypressguiupdate; echo --------------------" +alias pressvarL3PA "keypressguiupdate; echo --------A-----------" +alias pressvarL3PAS "keypressguiupdate; echo --------AS----------" +alias pressvarL3PAD "keypressguiupdate; echo --------A-D---------" +alias pressvarL3PASD "keypressguiupdate; echo --------ASD---------" +alias pressvarL3PS "keypressguiupdate; echo ---------S----------" +alias pressvarL3PSD "keypressguiupdate; echo ---------SD---------" +alias pressvarL3PD "keypressguiupdate; echo ----------D---------" +alias pressvarL4up "echo --------------------" +alias pressvarL4p "echo --Crouch------------" +alias pressvarL5L "echo _____--LOCKED--_____" +alias pressvarL5Ul "echo ____--UNLOCKED--____" + +alias keyLunpressa "alias keypressisAPressed keypressAisnotPressed; keypressupdategui" +alias keyLunpresss "alias keypressisSPressed keypressSisnotPressed; keypressupdategui" +alias keyLunpressd "alias keypressisDPressed keypressDisnotPressed; keypressupdategui" +alias keyLpressa "alias keypressisAPressed keypressAisPressed; keypressupdategui" +alias keyLpresss "alias keypressisSPressed keypressSisPressed; keypressupdategui" +alias keyLpressd "alias keypressisDPressed keypressDisPressed; keypressupdategui" + + +alias keypressguiupdate "keypressisAPressed" +alias keypressAisnotPressed "alias keypressSisnotPressed keypressASisnt; alias keypressSisPressed keypressAisntSis; keypressisSPressed" +alias keypressASisnt "alias keypressDisnotPressed keypressASDisnt; alias keypressDisPressed keypressASisntDis; keypressisDPressed" +alias keypressAisntSis "alias keypressDisnotPressed keypressADisntSis; alias keypressDisPressed keypressAisntSDis; keypressisDPressed" +alias keypressAisPressed "alias keypressSisnotPressed keypressSisntAis; alias keypressSisPressed keypressASispressed; keypressisSPressed" +alias keypressSisntAis "alias keypressDisnotPressed keypressSDisntAis; alias keypressDisPressed keypressSisntADis; keypressisDPressed" +alias keypressASispressed "alias keypressDisnotPressed keypressDisntASis; alias keypressDisPressed keypressASDis; keypressisDPressed" +alias keypressASDisnt "alias keypressl4 pressvarL3up" +alias keypressASisntDis "alias keypressl4 pressvarL3PD" +alias keypressADisntSis "alias keypressl4 pressvarL3PS" +alias keypressAisntSDis "alias keypressl4 pressvarL3PSD" +alias keypressSDisntAis "alias keypressl4 pressvarL3PA" +alias keypressSisntADis "alias keypressl4 pressvarL3PAD" +alias keypressDisntASis "alias keypressl4 pressvarL3PAS" +alias keypressASDis "alias keypressl4 pressvarL3PASD" + +//Wait is off and gui is on the Keylocker menu +alias keypressguilegacy "keypressguistart; alias keypressguilegacyprint guilegacyprint; keypressguiupdate; guilegacyprint; " +alias keypressguilegacydisable "keypressguistart; alias keypressguilegacyprint" +alias kwaitT "guilegacyoff; alias kwaitTest keypressguistart; alias wait ksetwaitest; wait ; kwaitTest" +alias ksetwaitest "alias kwaitTest keypressguilegacy;" +alias keypressguilegacyprint + +alias keypressupdategui "keypressguiupdate; keypressguilegacyprint" +alias keypressguistart "gwaitT; wait 5; alias cline1 keypressl1; alias cline2 keypressl2; alias cline3 keypressl3; alias cline4 keypressl4; alias cline5 keypressl5; alias cline6 keypressl6" + +alias keypressl1 "echo ___KeypressLocker___" +alias keypressl2 "pressvarL1vM1up" +alias keypressl3 "pressvarL2up" +alias keypressl4 "pressvarL3up" +alias keypressl5 "pressvarL4up" +alias keypressl6 "pressvarL5Ul" + +alias bindkpsbinds "bind w +kplfwd ; bind s +kplback ; bind a +kplleft ; bind d +kplright ; bind shift +kplcrouch ; bind mouse1 +kplmouse1 ; bind r lockpressedkeystoggle" +alias unbindkpsbinds "bind w +mmfwd; bind s +mmback; bind a +mmleft; bind d +mmright; bind shift +duck; bind mouse1 +attack; bind r +reload;" + +//For when kps isnt being used +alias +mmfwd "-back; +forward; alias checkfwd +forward;" +alias +mmback "-forward; +back; alias checkback +back;" +alias +mmleft "-moveright; +moveleft; alias checkleft +moveleft;" +alias +mmright "-moveleft; +moveright; alias checkright +moveright" +alias -mmfwd "-forward; checkback; alias checkfwd none;" +alias -mmback "-back; checkfwd; alias checkback none;" +alias -mmleft "-moveleft; checkright; alias checkleft none;" +alias -mmright "-moveright; checkleft; alias checkright none;" diff --git a/script/medic.cfg b/script/medic.cfg new file mode 100755 index 0000000..67cc6b6 --- /dev/null +++ b/script/medic.cfg @@ -0,0 +1,24 @@ +hudOnali40;echo Now Playing Medic;wait 1500;hudOffali40 + +//Disable Other Class Specific Code +disableothercode + +//Medic Specific Code Goes here + +//Allow Thumbkey Switching to work +hudOnali11;echo Now Using Uber;wait 10;bind mouse5 returnmediscript;bind mouse4 mediquix;wait 120;returnmedivax;wait 1500;hudOffali11;rtrn1 +//addmediscript + + +//Right Click says Uber Popped! +//alias +charge "slot2;+attack2;dropitem;say_team "✧*.◟(ˊᗨˋ)◞.*✧ UBER POPPED✧*.◟(ˊᗨˋ)◞.*✧";voicemenu 0 0;autocall_initial;spec_prev" +//alias -charge "-attack2" +//bind mouse2 +charge + +//Faking Uber with Middle Mouse +alias fakeuber "" +bind mouse3 fakeuber + +//Allows Music To be played +musicMedic +hudOnali41;echo Medic Configs Loaded;wait 1500;hudOffali41 \ No newline at end of file diff --git a/script/mediswitch.cfg b/script/mediswitch.cfg new file mode 100755 index 0000000..7e288dd --- /dev/null +++ b/script/mediswitch.cfg @@ -0,0 +1,12 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//Medic loadout toggle scrips using the mouse 4 & 5 +//I have abcd loadouts for each medigun and this makes it very easy to switch between them without having to go in a menu. +///////////////////////////////////////////// + +alias disablemediscript "hudOnali18;unbind mouse5;unbind mouse4;bind MOUSE2 +attack2;returnmedivax;returnmedivax;echo Disabled MediSwitch Script;wait 1500;hudOffali18" +alias addmediscript "load_itempreset 0;hudOnali11;echo Now Using Uber;wait 10;bind mouse5 returnmediscript;bind mouse4 mediquix;wait 120;returnmedivax;wait 1500;hudOffali11;rtrn1" +alias returnmediscript "load_itempreset 1;hudOnali12;echo Now Using Kritz;wait 10;bind mouse5 addmediscript;bind mouse4 mediquix;wait 120;returnmedivax;wait 1500;hudOffali12;rtrn2" +alias mediquix "load_itempreset 2;hudOnali13;echo Now Using QuickFix;wait 10;bind mouse5 addmediscript;bind mouse4 medivax;wait 120;returnmedivax;wait 1500;hudOffali13;rtrn3" +alias medivax "load_itempreset 3;hudOnali14;echo Now Using Vaccionator;wait 10;bind mouse5 addmediscript;bind mouse4 mediquix;addmedivax;wait 120;wait 1500;hudOffali14;rtrn4" + + diff --git a/script/medivax.cfg b/script/medivax.cfg new file mode 100755 index 0000000..2c0b0c4 --- /dev/null +++ b/script/medivax.cfg @@ -0,0 +1,52 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//MediVax Script +//Quite Ineffitent and old code for making +//use of the vaccinator effitently and quickly. +//It is old and unreliable but gets the job +//done most of the time. +//It is old remember that, so its not commented +//well at all and its hard even for me to understand. +//A COMPLETE remake is to come in the future. +// +//Usage: press The keys accordingly for their respective resist type +//1 is bullet, 2 is explosion resist, 3 is fire +//Currently the way i enable the script is through the loadout toggle +//binds. +// +//Issues: +//1. Pressing reload will mess up the order. +//2. Dying will mess up the order as well. +//3. Spamming a key repeatedly before it has a chance to function with also mess it up +// +//The main way to fix this is to press 4 twice and use reload to select bullet resist. +//Once on bullet resist, press 4 one more time and the order should be normal. +// +//Yeah it has problems but overcome them and this is a godly script for pubs and ect. +//Especially with the buffs that the vaccinaor has recieved. +////////////////////////////////////////////////////////////////////////////////////// + +//Enable Vax Script +alias addmedivax "exec medivax;wait 66;slot2;bind 1 none;bind 2 explosresbul;bind 3 fireresbul;bind 4 correctres;bind r reloadexplos;vwaitT" + +//Vax calls for a certin ammount of reload presses +alias "rlVaxOnce" "slot2;wait 2;unbind 1; unbind 2; unbind 3;unbind r;+reload;wait 15;-reload;wait 50" +alias "rlVaxTwice" "slot2;wait 2;unbind 1; unbind 2; unbind 3;unbind r;+reload;wait 15;-reload;wait 10;+reload;wait 15;-reload;wait 50" +alias "rlVaxThrice" "slot2;wait 2;unbind 1; unbind 2; unbind 3;unbind r;+reload;wait 15;-reload;wait 10;+reload;wait 15;-reload;wait 10;+reload;wait 15;-reload;wait 50" + +alias explosresbul "hudOnali1;rlVaxOnce;wait 150;bind 1 bulletresexp;bind 3 fireresexp;bind r reloadfire;echo explosion;wait 1500;hudOffali1" +alias fireresbul "hudOnali2;rlVaxTwice;wait 150;bind 1 bulletresfire;bind 2 explosresfire;bind r reloadbullet;echo Fire;wait 1500;hudOffali2" +alias bulletresexp "hudOnali3;rlVaxTwice;wait 150;bind 3 fireresbul;bind 2 explosresbul;bind r reloadexplos;echo bullet;wait 1500;hudOffali3" +alias fireresexp "hudOnali4;rlVaxOnce;wait 150;bind 1 bulletresfire;bind 2 explosresfire;bind r reloadbullet;echo fire;wait 1500;hudOffali4" +alias explosresfire "hudOnali5;rlVaxTwice;wait 150;bind 1 bulletresexp;bind 3 fireresexp;;bind r reloadfire;echo explosion;wait 1500;hudOffali5" +alias bulletresfire "hudOnali6;rlVaxOnce;wait 150;bind 3 fireresbul;bind 2 explosresbul;bind r reloadexplos;echo bullet;wait 1500;hudOffali6" + +alias correctres "hudOnali7;enHudCon;alias nopay nopeavi;echo Press again to correct the Resistance to Bullet!;bind 4 rescheckdone;wait 900;nopay;hudOffali7" +alias nopeavi "hudOnali8;enHudCon;bind 4 correctres;echo Rebinding 4;wait 1500;hudOffali8" + +alias rescheckdone "hudOnali10;enHudCon;echo Check is done, Bullet Should be set, Now continuing regular action;rlVaxThrice;wait 50;addmedivax;wait 500;hudOffali10" +alias reloadexplos "hudOnali15;unbind 1; unbind 2; unbind 3;unbind r;wait 5;+reload;wait 2; -reload;bind r reloadfire;bind 1 bulletresexp;bind 3 fireresexp;echo Explosion;wait 1500;hudOffali15" +alias reloadfire "hudOnali16;unbind 1; unbind 2; unbind 3;unbind r;wait 5;+reload;wait 2; -reload;bind r reloadbullet;bind 1 bulletresfire;bind 2 explosresfire;echo Fire;wait 1500;hudOffali16" +alias reloadbullet "hudOnali17;unbind 1; unbind 2; unbind 3;unbind r;wait 5;+reload;wait 2; -reload;bind r reloadexplos;bind 3 fireresbul;bind 2 explosresbul;echo Bullet;wait 1500;hudOffali17" +alias returnmedivax "bind 1 slot1;bind 2 slot2;bind 3 slot3;bind 4 slot4" +alias vwaitT "alias vwaitTest echo Wait enabled, Using Vax Script;alias wait vsetwaitest;wait; vwaitTest" +alias vsetwaitest "alias vwaitTest returnmedivax;echo Wait Disabled" \ No newline at end of file diff --git a/script/minisentscript.cfg b/script/minisentscript.cfg new file mode 100755 index 0000000..d67339f --- /dev/null +++ b/script/minisentscript.cfg @@ -0,0 +1,29 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//My first and by far the best. +//Its used for when you want to place a mini quick and start shotgunning bitches. +// +//Usage: You press Middle mouse and it should bring up the sentry placement +//screen, when you click to place it down it should switch to the primary almost immediatly. +// +//Its not that great anymore due to the mini nerfs from gun mettle but still is extremely +//powerful in the right hands. +// +//////////////////////////////////////////// + +//Minisentry Placement Alias +alias minisentry "destroy 2 0;build 2 0;bind MOUSE1 miniswitchback;hudOnali47;echo Placing Mini;wait 1250;hudOffali47" +alias miniswitchback "+attack;wait 30;slot1;-attack;bind MOUSE1 +attack;hudOnali48;echo Riding Shotgun;wait 1250;hudOffali48" + +//Sentry Placement Toggle Switch +alias sentryscript "destroy 2 0;build 2 0" +alias returnsentryscript "bind mouse4 addsentryscript;bind MOUSE3 sentryscript;hudOnali45;echo RegularScriptEnabled;wait 1500;hudOffali45" +alias addsentryscript "bind mouse4 returnsentryscript;bind MOUSE3 minisentry;hudOnali46;echo MiniSentryEnabled;wait 1500;hudOffali46" + +//If wait is off Change to a lesser bind +alias ewaitP "hudOnali44;Wait Test Succeeded!;wait 1250;hudOffali44" +alias ewaitN "unbind MOUSE4;bind MOUSE3 sentryscript" +alias ewaitT "alias ewaitTest ewaitP;alias wait esetwaitest;wait; ewaitTest" +alias esetwaitest "alias ewaitTest ewaitN" + +//Enable Disabling the Sentry Script +alias disablesentryscript "unbind MOUSE4; unbind MOUSE5; echo SentryScriptDisabled" \ No newline at end of file diff --git a/script/musicscript.cfg b/script/musicscript.cfg new file mode 100755 index 0000000..cf5f15c --- /dev/null +++ b/script/musicscript.cfg @@ -0,0 +1,45 @@ +//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ +//An old and depreciated script that plays music on class select. +//Its really nice but gets old and annoying after a while. +//Hope you enjoy it more than I have. +///////////////////////////////// + +//Play "Right Behind You" on spawn +alias musicSpy "bind [ spymusic;bind ] stopmusic;spymusic" +alias spymusic "play ui/gamestartup6.mp3" + +//Play "Playing With Danger" on spawn +alias musicSniper "bind [ snipermusic;bind ] sniperstopmusic;snipermusic" +alias snipermusic "play ui/magnum.mp3" + +//Play "Intruder Alert" on spawn +alias musicSoldier "bind [ soldiermusic;bind ] stopmusic;soldiermusic" +alias soldiermusic "play ui/rocket.mp3" + +alias musicMedic "bind [ medicmusic;bind ] stopmusic;medicmusic" + +//Play "Drunken Pipe Bomb" on spawn +alias musicDemoman "bind [ demomanmusic;bind ] stopmusic;demomanmusic" +alias demomanmusic "play ui/gamestartup9.mp3" + +//Play "More Gun" on spawn +alias musicEngineer "bind [ engineermusic;bind ] stopmusic;engineermusic" +alias engineermusic "play ui/gamestartup10.mp3" + +//Play "Dreams of Cruelty" on spawn +alias musicPyro "bind [ pyromusic;bind ] stopmusic;pyromusic" +alias pyromusic "play ui/gamestartup14.mp3" + +//Play "Faster than a Speeding Bullet" on spawn +alias musicScout "bind [ scoutmusic;bind ] stopmusic;scoutmusic" +alias scoutmusic "play ui/gamestartup5.mp3" + +//Play "Team Fortress 2" on spawn +alias musicHeavy "bind [ heavymusic;bind ] stopmusic;heavymusic" +alias heavymusic "play ui/gamestartup1.mp3" + + +alias stopmusic "play ui/anything.wav"; + +alias enablemusic "exec musicscript" +alias disablemusic "alias musicDemoman;alias musicEngineer;alias musicHeavy;alias musicMedic;alias musicPyro;alias musicScout;alias musicSniper;alias musicSoldier;alias musicSpy" \ No newline at end of file diff --git a/script/pyro.cfg b/script/pyro.cfg new file mode 100755 index 0000000..f29a367 --- /dev/null +++ b/script/pyro.cfg @@ -0,0 +1,31 @@ +hudOnali30;echo Now Playing Pyro;wait 1500;hudOffali30 + +//Disable Other Class Specific Code +disableothercode + +//Pyro Specific Code Goes here + +//Allows Music To be played +musicPyro + + + +hudOnali31;echo Pyro Configs Loaded;wait 1500;hudOffali31 + +//alias pyroAirb "bind mouse3 +blast" +//alias +blast "+attack" +//alias -blast "-attack;+attack2;wait 20;-attack2" + +//alias waitTester "alias waitTest waitPositive; wait; waitTest;echo Waittesting..." +//alias wait "alias waitTest waitNegative" +//alias waitPositive "hudOnali52;Wait Test Succeeded!;wait 1250;hudOffali52" +//alias waitNegative "Wait Test Failed!" +//waitTester + +//Flare Switch Bind +//alias "+flarmee" "+attack;wait 10;-attack;slot2;+attack" +//alias "-flarmee" "-attack;slot1; forward" +//alias "+flare" "+attack;wait 40;-attack;+attack2;wait 10;-attack2;slot2;+attack" +//alias "-flare" "-attack;slot1; forward" +//bind "MOUSE5" "+flare" +//bind "MOUSE4" "+flarmee" \ No newline at end of file diff --git a/script/scout.cfg b/script/scout.cfg new file mode 100755 index 0000000..34da226 --- /dev/null +++ b/script/scout.cfg @@ -0,0 +1,10 @@ +hudOnali28;echo Now Playing Scout;wait 1500;hudOffali28 + +//Disable Other Class Specific Code +disableothercode + +//Scout Specific Code Goes here + +//Allows Music To be played +musicScout +hudOnali29;echo Scout Configs Loaded;wait 1500;hudOffali29 \ No newline at end of file diff --git a/script/sniper.cfg b/script/sniper.cfg new file mode 100755 index 0000000..269a9f6 --- /dev/null +++ b/script/sniper.cfg @@ -0,0 +1,10 @@ +hudOnali26;echo Now Playing Sniper;wait 1500;hudOffali26 + +//Disable Other Class Specific Code +disableothercode + +//Sniper Specific Code Goes here + +//Allows Music To be played +musicSniper +hudOnali27;echo Sniper Configs Loaded;wait 1500;hudOffali27 \ No newline at end of file diff --git a/script/soldier.cfg b/script/soldier.cfg new file mode 100755 index 0000000..2f21127 --- /dev/null +++ b/script/soldier.cfg @@ -0,0 +1,21 @@ +hudOnali38;echo Now Playing Soldier;wait 1500;hudOffali38 + +//Disable Other Class Specific Code +disableothercode + +//Soldier Specific Code Goes here + +//alias soldierLoad1 "load_itempreset 0;bind mouse4 soldierLoad2;bind mouse5 soldierLoad3;hudOnali49;echo Now Using The Golden Gun;wait 1250;hudOffali49" +//alias soldierLoad2 "load_itempreset 1;bind mouse4 soldierLoad1;bind mouse5 soldierLoad3;hudOnali50;echo Now Using Butter Gun;wait 1250;hudOffali50" +//alias soldierLoad3 "load_itempreset 2;bind mouse4 soldierLoad2;bind mouse5 soldierLoad1;hudOnali54;echo Now Using Toy Gun;wait 1250;hudOffali54" +//alias soldierLoad4 "load_itempreset 3;bind mouse4 soldierLoad2;bind mouse5 soldierLoad1;hudOnali1;echo Now Using Other Gun;wait 1250;hudOffali1" +//bind mouse4 soldierLoad1 +//bind mouse5 soldierLoad2 +//soldierLoad1 +bind mouse5 "load_itempreset 0" +bind mouse4 "load_itempreset 1" + + +//Allows Music To be played +musicSoldier +hudOnali39;echo Soldier Configs Loaded;wait 1500;hudOffali39 \ No newline at end of file diff --git a/script/spy.cfg b/script/spy.cfg new file mode 100755 index 0000000..68f3553 --- /dev/null +++ b/script/spy.cfg @@ -0,0 +1,25 @@ +hudOnali42;echo Now Playing Spy;wait 1500;hudOffali42 + +//Disable Other Class Specific Code +disableothercode + +//Spy Specific Code Goes here +alias lastd "bind MOUSE3 lastdisguise" +lastd + +//Allows Music To be played +musicSpy +hudOnali43;echo Spy Configs Loaded;wait 1500;hudOffali43 + + +//Unused or not prefered!! +//If wait is enabled, then autodisguise as much as possible +//alias addSpyLoop "alias reLoop spyloop; spyloop" +//alias removeSpyLoop "alias reLoop" +//alias spyloop "wait 20;reLoop;lastdisguise" + +//alias waitTester "alias waitTest waitPositive; wait; waitTest;echo Waittesting..." +//alias wait "alias waitTest waitNegative" +//alias waitPositive "hudOnali51;Wait Test Succeeded!;echo Auto Disguise is ON;wait 1250;hudOffali51;addSpyLoop" +//alias waitNegative "Wait Test Failed!;echo Auto Disguise is OFF;lastd" +//waitTester \ No newline at end of file