This repository has been archived on 2025-06-04. You can view files and clone it, but cannot push or open issues or pull requests.
aliashook/script/autoexec.cfg
julianacat ff7eeb2206 Uhhh
2017-11-10 11:12:25 -06:00

1003 lines
92 KiB
INI
Executable File

//==================================================================================================//
// Julianacat's very own stupidly advanced scripts. //
// //
// The following set of scripts were made quite a long time ago by myself. They are built //
// to provide the user with many options in-game to change the scripts functionality. //
// //
// The scripts are also heavily commented for easy understanding on what part does what. //
// Many things can be simplified down and made more lightweight, but also have already had //
// harsh optimazations from previous iterations. They have been re-written with the the //
// intention of solving the previous scripts bugs as well as customization from other people //
// other than myself. //
// //
// The previous iteration had everything in own cfg file to be execed the intent was it would //
// be easy for them to speak to each other, having everything in once place with a strict layout //
// would be great for easily connecting parts of the script together without jumping //
// inbetween files. There is also no need to seperate scripts due to not needing compiliation. //
// //
// If you have questions, please contact Julianacat at this steam url. //
// https://steamcommunity.com/id/Julianacat/ //
// or by creating an issue at //
// https://github.com/julianacat/aliashook //
// //
// To view the scripts with pleasure, I use notepadqq with the language set to c# //
//==================================================================================================//
//===============//
// Todo List //
//===============//
// !!DONE!! Get menu selection of chatspam working
// Fix minisentry script
// Impliment ui redirects of movement keys
// Use movement keys to create a simple anti-aim system
// Impliment ui redirects of jump key
// Configure bhop to use the redirects
// Add bhop to the misc menu list
// Add lots of info through hudConsole to many parts of the script
// Strip hudConsole to only its essential parts
// Move Binds to a central area for easy changing
// Test and fix scripts for bugs
// Correct any broken eye candy syntax
// Prepare for :b:ig release and release
echo Autoexecuting!
// We execute the graphics config here so that it doesnt conflict with our scripts.
echo Execute Graphical Config!
exec gfx // I use feliks graphical config but you may use your own.
echo Execute Graphical Config Complete!
echo Loading Scripts!
echo Aliasing hudConsoleApi!
//--------------------------------------------------------------------------------------------------------------------------------------------------------------//
//hudConsoleApi //
//----------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//======================================================================================================================// // //
// 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 the last command has time to be read by the user. // // //
// // // //
// 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 // // //
// //----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// // // //
////////////////////////////////////////////////////////////// // //----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
// //
// //
////////////////////////////////////////////////////////////////////// // //
// // // //
// // //
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 that 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 // // //
// // // //
//----------------------------------------------------------------------------------------------------------------------------------// // //
// //
//----------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//--------------------------------------------------------------------------------------------------------------------------------------------------------------//
echo Aliased hudConsoleApi!
echo Aliasing User Input Redirection!
//------------------------------------------------------------------//
// User input redirection //
//--------------------------------------------------------------// //
// //
//======================================================// // //
// User input Redirector // // //
// Allows us to bind a few keys while not needing to // // //
// Rebind them, only needing to call aliases instead // // //
// Makes aliases more organized and easy to control // // //
// with them built with this in mind. // // //
//======================================================// // //
// //
//////////////////////////////////////////////
// Redirection of slot keys + reload //
//
// Redirects for vaccinator script
alias uiResetVax "alias uiButton1 slot1; alias uiButton2 slot2; alias uiButton3 slot3; alias uiButton4 slot4; alias +uiButtonR +reload; alias -uiButtonR -reload"
alias uiToVax "alias uiButton1 vaxKey1; alias uiButton2 vaxKey2; alias uiButton3 vaxKey3; alias uiButton4 vaxKey4; alias +uiButtonR vaxKeyR; alias -uiButtonR"
uiResetVax
// Bind keys to redirects
bind 1 "uiButton1"
bind 2 "uiButton2"
bind 3 "uiButton3"
bind 4 "uiButton4"
bind r "+uiButtonR"
// Redirection of attack + extra keys
// Redirects for attack + other buttons
alias uiResetKeys "alias +uiButtonKey1 +attack3; alias -uiButtonKey1 -attack3; alias uiButtonKey2; alias uiButtonKey3; alias +uiButtonAttack +attack; alias -uiButtonAttack -attack"
alias uiToMediQuick "alias uiButtonKey2 mQsButton1; alias uiButtonKey3 mQsButton2"
alias uiToMiniSentry "alias +uiButtonKey1 miniKey1; alias -uiButtonKey1; alias uiButtonKey2 miniKey2; alias uiButtonKey3 miniKey3; alias -uiButtonAttack miniKeyAttack"
uiResetKeys
// Bind keys to redirects
bind MOUSE1 "+uiButtonAttack"
bind MOUSE3 "+uiButtonKey1"
bind MOUSE5 "uiButtonKey2"
bind MOUSE4 "uiButtonKey3"
// Redirection of movement keys
// Prevent player from not moving when 2 opposing keys are de-pressed.
alias +nullFwd "-back; +forward; alias nullCheckFwd +forward"
alias +nullBack "-forward; +back; alias nullCheckBack +back"
alias +nullLeft "-moveright; +moveleft; alias nullCheckLeft +moveleft"
alias +nullRight "-moveleft; +moveright; alias nullCheckRight +moveright"
alias -nullFwd "-forward; nullCheckBack; alias nullCheckFwd"
alias -nullBack "-back; nullCheckFwd; alias nullCheckBack"
alias -nullLeft "-moveleft; nullCheckRight; alias nullCheckLeft"
alias -nullRight "-moveright; nullCheckLeft; alias nullCheckRight"
alias nullCheckFwd; alias nullCheckBack; alias nullCheckLeft; alias nullCheckRight
// Redirects for movement keys
alias uiResetMovement "alias +uiButtonFwd +nullFwd; alias -uiButtonFwd -nullFwd; alias +uiButtonBack +nullBack; alias -uiButtonBack -nullBack; alias +uiButtonLeft +nullLeft; alias -uiButtonLeft -nullLeft; alias +uiButtonRight +nullRight; alias -uiButtonRight -nullRight"
uiResetMovement
// Bind keys to redirects
bind w "+uiButtonFwd"
bind a "+uiButtonLeft"
bind s "+uiButtonBack"
bind d "+uiButtonRight"
//--------------------------------------------------------------// //
// //
//------------------------------------------------------------------//
echo Aliased User Input Redirection!
// TODO // Redirect menu keys and bhop script
echo Doing crap bind job
bind b gToggleGui
bind uparrow gPointerUp
bind downarrow gPointerDown
bind enter gPointerSelect
echo finished crap bind job
echo Aliasing Console Menu!
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
// Menu Script //
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//==================================================================================// // //
// This script allows a menu to be used by the user using the development console. // // //
// You can browse the menu using the aliases provided below. // // //
// You have many options to go into sub menus and exit from the gui itself. // // //
// // // //
// This can be seperated frum the hudConsoleApi but be warned, without use of // // //
// the hudConsoleApi could allow any other alias to disable the dev console // // //
// making the script not visible anymore. // // //
//==================================================================================// // //
// //
//==============================================// // //
// Bind "gToggleGui" to toggle menu visibility // // //
// Bind "gPointerUp" to move pointer up // // //
// Bind "gPointerDown" to move pointer down // // //
// Bind "gPointerSelect" to select menu options // // //
//==============================================// // //
// //
////////////////////////////////////////////////////////////////////////////////////////// // //
// Automated string buffer pusher // // //
// // //
// Main Display Loop, we start it by using the wait detector // // //
alias gLoopStart "alias gLoopRedirect gLoopWaitT; gLoopWaitT" // // //
alias gLoopStop "alias gLoopRedirect; hudOffali1" // // //
alias gLoop "gPushUpdate; wait 30; gLoopRedirect" // // //
// // //
// Test for wait // // //
alias gLoopwaitT "alias gLoopWaitTmp gLoop; alias wait gLoopSetwaitF; wait; gLoopWaitTmp"/ // //
// When wait fails, we just let dev console show and we push an update but dont loop // // //
alias gLoopSetwaitF "alias gLoopWaitTmp; gPushUpdate" // // //
// // //
// Push an update from string buffer to console // // //
alias gPushUpdate "hudOnali1; clear; bline1; bline2; bline3; bline4; bline5; bline6" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////// // //
// //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// Aliases to control user input // // //
// // //
// We use redirects to control whether user input is allowed // // //
alias gEnableUserInput "alias gPointerUp gPointUp; alias gPointerDown gPointDown; alias gPointerSelect gPointSel" // // //
alias gDisableUserInput "alias gPointerUp; alias gPointerDown; alias gPointerSelect" // // //
// // //
// use to toggle the gui // // //
alias gToggleGuiOn "alias gToggleGui gToggleGuiOff; gEnableUserInput; gMainMenu; gLoopStart" // Set main menu here // // //
alias gToggleGuiOff "alias gToggleGui gToggleGuiOn; gDisableUserInput; gLoopStop" // // //
// Call the this to alias to prevent "command not found" in console // // //
gToggleGuiOff // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
// //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// Main Menu // // //
// // //
// First have the menu, just aliases to echo a simple menu // // //
alias gMainLine1 "echo _____Alias Hook_____" // // //
alias gMainLine2 "echo Chat" // // //
alias gMainLine3 "echo Anti-Aim" // // //
alias gMainLine4 "echo Quick Exec" // // //
alias gMainLine5 "echo Misc" // // //
alias gMainLine6 "echo Exit" // // //
// // //
// Since we want to be able to navagate it, we make similear aliases but with arrows to show where we are in the menu // // //
alias gMainLine2a "echo Chat<---" // // //
alias gMainLine3a "echo Anti-Aim<---" // // //
alias gMainLine4a "echo Quick Exec<---" // // //
alias gMainLine5a "echo Misc<---" // // //
alias gMainLine6a "echo Exit<---" // // //
// // //
// The following aliases control navagation of the menu, first it resets the buffer lines to default then changes only one line to show the pointer position and pushes the update // // //
// Then it changes pointer move and select aliases to do actions, like navagating, exiting or doing a different action involving aliases // // //
alias gMainPointer2 "gMainResetBuffer; alias bline2 gMainLine2a; gPushUpdate; alias gPointUp gMainPointer6; alias gPointDown gMainPointer3; alias gPointSel gChatMenu" // Enter chat menu // // //
alias gMainPointer3 "gMainResetBuffer; alias bline3 gMainLine3a; gPushUpdate; alias gPointUp gMainPointer2; alias gPointDown gMainPointer4; alias gPointSel " // Enter anti-aim menu // // //
alias gMainPointer4 "gMainResetBuffer; alias bline4 gMainLine4a; gPushUpdate; alias gPointUp gMainPointer3; alias gPointDown gMainPointer5; alias gPointSel " // Enter quick exec menu // // //
alias gMainPointer5 "gMainResetBuffer; alias bline5 gMainLine5a; gPushUpdate; alias gPointUp gMainPointer4; alias gPointDown gMainPointer6; alias gPointSel " // Enter misc menu // // //
alias gMainPointer6 "gMainResetBuffer; alias bline6 gMainLine6a; gPushUpdate; alias gPointUp gMainPointer5; alias gPointDown gMainPointer2; alias gPointSel gToggleGuiOff" // Exit the "gui" // // //
// // //
// An alias to reset the buffer lines to default for this menu // // //
alias gMainResetBuffer "alias bline1 gMainLine1; alias bline2 gMainLine2; alias bline3 gMainLine3; alias bline4 gMainLine4; alias bline5 gMainLine5; alias bline6 gMainLine6" // // //
// Simple Alias to make life easy, calling this changes current menu to the main // // //
alias gMainMenu "gMainPointer2" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// Chat Menu // // //
// // //
// For the chat menu, we wish to have a switch changer thing, different from option selection.
// Our goal here will be to tell the user which option is enabled from the others
// This will require initialization to sync the chat scripts state with the menu
// Here we need to have lines that will not be changed except for the pointer // // //
alias gChatLine1 "echo _____Alias Hook_____"
alias gChatLine6 "echo Back" // // //
alias gChatLine6a "echo Back<---"
// // //
// We would want a alias to reset our chat lines to their default normal states. It doesnt allow quotes inside for syntax cleanlyness but whatever works :/
alias gChatLineReset "alias gChatLine2 echo Hentai; alias gChatLine3 echo Lmaobox; alias gChatLine4 echo Cathook; alias gChatLine5 echo Tmp; alias gChatLine2a echo Hentai<---; alias gChatLine3a echo Lmaobox<---; alias gChatLine4a echo Cathook<---; alias gChatLine5a echo Tmp<---"
// Set the defaults in the case that chat script doesnt load and tell us about the default spam
gChatLineReset
// With an alias to reset our lines to default, we make alias to allow the chat aliases to notify us when a selected spam is selected. We do this for all the different types
// We reset the lines back to default then change one line to represent our selected option. Update due to not updating when wait is disabled
alias gChatNotifyHentai "gChatLineReset; alias gChatLine2 echo Hentai(sel); alias gChatLine2a echo Hentai(sel)<---"
alias gChatNotifyLmaobox "gChatLineReset; alias gChatLine3 echo Lmaobox(sel); alias gChatLine3a echo Lmaobox(sel)<---"
alias gChatNotifyCathook "gChatLineReset; alias gChatLine4 echo Cathook(sel); alias gChatLine4a echo Cathook(sel)<---"
alias gChatNotifyTmp "gChatLineReset; alias gChatLine5 echo Tmp(sel); alias gChatLine5a echo Tmp(sel)<---" // // //
// // //
// The following aliases control navagation of the menu, first it resets the buffer lines to default then changes only one line to show the pointer position and pushes the update // // //
// Then it changes pointer move and select aliases to do actions, like navagating, exiting or doing a different action involving aliases // // //
alias gChatPointer2 "gChatResetBuffer; alias bline2 gChatLine2a; gPushUpdate; alias gPointUp gChatPointer6; alias gPointDown gChatPointer3; alias gPointSel bindChangeHentai" // Switch Chat spam to Hentai // // //
alias gChatPointer3 "gChatResetBuffer; alias bline3 gChatLine3a; gPushUpdate; alias gPointUp gChatPointer2; alias gPointDown gChatPointer4; alias gPointSel bindChangeLmaobox" // Switch Chat spam to Lmaobox // // //
alias gChatPointer4 "gChatResetBuffer; alias bline4 gChatLine4a; gPushUpdate; alias gPointUp gChatPointer3; alias gPointDown gChatPointer5; alias gPointSel bindChangeCathook" // Switch Chat spam to Cathook // // //
alias gChatPointer5 "gChatResetBuffer; alias bline5 gChatLine5a; gPushUpdate; alias gPointUp gChatPointer4; alias gPointDown gChatPointer6; alias gPointSel bindChangeTmp" // Switch Chat spam to tmp // // //
alias gChatPointer6 "gChatResetBuffer; alias bline6 gChatLine6a; gPushUpdate; alias gPointUp gChatPointer5; alias gPointDown gChatPointer2; alias gPointSel gMainMenu" // Go to main menu // // //
// // //
// An alias to reset the buffer lines to default for this menu // // //
alias gChatResetBuffer "alias bline1 gChatLine1; alias bline2 gChatLine2; alias bline3 gChatLine3; alias bline4 gChatLine4; alias bline5 gChatLine5; alias bline6 gChatLine6" // // //
// Simple Alias to make life easy, calling this changes current menu to the Chat // // //
alias gChatMenu "gChatPointer2" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
echo Aliased Console Menu!
echo Aliasing bHopScript!
//--------------------------------------------------------------------------------------------------------------------------//
// bHopScript //
//----------------------------------------------------------------------------------------------------------------------// //
// //
//======================================================================// // //
// Julianacats Bhop Script // // //
// Its a 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) // // //
//======================================================================// // //
// //
////////////////////////////////////////////////////////////////////////////////////// // //
// // // //
// // //
// Bind this alias to the key you want for bhop // // //
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" // // //
alias disablebhop "bind space +jump;stopbLoop" // // //
// // //
// 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" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
//----------------------------------------------------------------------------------------------------------------------// //
// //
//--------------------------------------------------------------------------------------------------------------------------//
echo Aliased bHopScript!
echo Aliasing Medic Quick Switch!
//----------------------------------------------------------------------------------------------------------------------------------------------------------------------//
// Medi Quick Switch //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//======================================================================================// // //
// Medic Quick loadout switcher // // //
// This small script is meant for people that use each loadout slot for one medigun. // // //
// It is reccomended to bind mQsButton1 and 2 each to some thumb keys. // // //
// Press 1 once for krits while using medi, and press again to go back. // // //
// Pressing 2 while using medi or krits will switch over to quickfix and vaccinator // // //
//======================================================================================// // //
// //
// Disables the medi quick switcher // //
alias mQsDisable "alias mQsButton1; alias mQsButton2; hudOnali2; echo Disabled MediSwitch Script; wait 1500; hudOffali2" // //
alias mQsEnable "mQsSlot1" // //
// Some loadout toggles, Also controls vax script // //
alias mQsSlot1 "load_itempreset 0; alias mQsButton1 mQsSlot2; alias mQsButton2 mQsSlot3; vaxDisable; hudOnali3; echo Now Using Uber; wait 1500; hudOffali3" // //
alias mQsSlot2 "load_itempreset 1; alias mQsButton1 mQsSlot1; alias mQsButton2 mQsSlot3; vaxDisable; hudOnali4; echo Now Using Kritx; wait 1500; hudOffali4" // //
alias mQsSlot3 "load_itempreset 2; alias mQsButton1 mQsSlot1; alias mQsButton2 mQsSlot4; vaxDisable; hudOnali5; echo Now Using QuickFix; wait 1500; hudOffali5" // //
alias mQsSlot4 "load_itempreset 3; alias mQsButton1 mQsSlot1; alias mQsButton2 mQsSlot3; vaxStartUp; hudOnali6; echo Now Using Vaccinator; wait 1500; hudOffali6" // //
// //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//----------------------------------------------------------------------------------------------------------------------------------------------------------------------//
echo Aliased Medic Quick Switch!
echo Aliasing Medic Vaccinator!
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
// Vaccinator Resistance quick switcher //
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//==================================================================================// // //
// This medigun vaccinator script is supposed to make the vaccinator easy to use. // // //
// bind vaxKey1-4 and r to use the script, then run vaxStartUp. // // //
// Pressing 1 should switch to bullet, 2 to blast, and 3 to fire. // // //
// If the script ever gets the resistance wrong, you can always use r to // // //
// select the bullet resistance and press 4 to reset the script. // // //
// The script has reset when it reloads 3 times, do this after death. // // //
//==================================================================================// // //
// //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// Startup and usage // // //
// // //
// Run to startup the script // // //
alias vaxStartUp "vaxWaitTest" // // //
// A wait tester as the vaccinator script wont work without wait // // //
alias vaxWaitTest "alias vaxWaitTmp vaxEnable; alias wait vaxWaitSetF; wait; vaxWaitTmp" // // //
alias vaxWaitSetF "alias vaxWaitTmp vaxUnbind; echo Wait test failed, Vaccinator Script Disabled" // // //
// // //
// Use to enable/disable the script, startup is reccomended to check for wait // // //
alias vaxEnable "vaxBindToBullet; uiToVax; echo Wait test passed, Vaccinator script active." // // //
alias vaxDisable "vaxUnbind; uiResetVax; echo Disabling Vaccinator script" // // //
// // //
alias vaxUnbind "alias vaxKey1; alias vaxKey2; alias vaxKey3; alias vaxKey4; alias vaxKeyR" // // //
// // //
// Binds 1-3 and r respectivly to switch to a resistance // // //
alias vaxBindToBullet "alias vaxKey1; alias vaxKey2 vaxBulletToBlast; alias vaxKey3 vaxBulletToFire; alias vaxKey4; alias vaxKeyR vaxBulletToBlast" // // //
alias vaxBindToBlast "alias vaxKey1 vaxBlastToBullet; alias vaxKey2; alias vaxKey3 vaxBlastToFire; alias vaxKey4 vaxCorrectResistance; alias vaxKeyR vaxBlastToFire" // // //
alias vaxBindToFire "alias vaxKey1 vaxFireToBullet; alias vaxKey2 vaxFireToBlast; alias vaxKey3; alias vaxKey4 vaxCorrectResistance; alias vaxKeyR vaxFireToBullet" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
////////////////////////////////////////////////////////////////////////////////// // //
// Switching + Handling // // //
// // //
//Vax calls for a certin ammount of reload presses // // //
alias vaxRl1 "slot2; wait 2; +reload; wait 15; -reload" // // //
alias vaxRl2 "slot2; wait 2; +reload; wait 15; -reload; wait 8 vaxRl1" // // //
alias vaxRl3 "slot2; wait 2; +reload; wait 15; -reload; wait 8 vaxRl2" // // //
// // //
// Aliases for switching resistances // // //
// First unbind players key to prevent user from pressing multiple at one, // // //
// reload an amount of times, wait for the reload to finish, // // //
// then we rebind our keys // // //
alias vaxBulletToBlast "vaxUnbind; vaxRl1; wait 120; vaxBindToBlast" // // //
alias vaxBlastToFire "vaxUnbind; vaxRl1; wait 120; vaxBindToFire" // // //
alias vaxFireToBullet "vaxUnbind; vaxRl1; wait 120; vaxBindToBullet" // // //
alias vaxBulletToFire "vaxUnbind; vaxRl2; wait 120; vaxBindToFire" // // //
alias vaxFireToBlast "vaxUnbind; vaxRl2; wait 120; vaxBindToBlast" // // //
alias vaxBlastToBullet "vaxUnbind; vaxRl2; wait 120; vaxBindToBullet" // // //
// // //
// Wrong Resistance correction // // //
// When we die, our resistance resets to bullet, pressing the reset key will // // //
// reset the script so that it knows about the change. // // //
// It also reloads three times as a notifacation that the reset happened // // //
alias vaxCorrectResistance "vaxUnbind; vaxRl3; wait 130; vaxBindToBullet" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////// // //
// //
//--------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
echo Aliased Medic Vaccinator!
echo Aliasing Minisentry switchback!
//------------------------------------------------------------------------------------------------------//
// Minisentry switchback script //
//--------------------------------------------------------------------------------------------------// //
// //
//==================================================// // //
// The MiniSwitchBack script is made to switch // // //
// back to your primary after placing a sentry. // // //
// Usefull for using minis as mere distractions. // // //
//==================================================// // //
// //
//==================================================// // //
// How to Use, // // //
// Bind miniKey1 to a key for pulling sentrys // // //
// miniKey2 for pulling dispensers // // //
// miniKey3 to toggle switchback // // //
// and miniKeyAttack needs to be bound to -attack. // // //
//==================================================// // //
// //
////////////////////////////////////////////////////////////////////////////////////////////////// // //
// Stuff // // //
// // //
// Destroy and Pull up a building // // //
alias miniPullSentry "destroy 2 0;build 2 0" // // //
alias miniPullDispenser "destroy 0 0;build 0 0" // // //
// // //
// destroy and pull up a new sentry and bind attack to switch back // // //
// When player attacks, it will auto attack then switch to primary. // // //
alias miniSentry "miniPullSentry; alias miniKeyAttack miniSentryBack" // // //
alias miniSentryBack "-attack; slot1; alias miniKeyAttack -attack" // // //
// // //
// // //
// Enable Disabling the Sentry Script // //
alias miniDisable "alias miniKey1; alias miniKey2; alias miniKey3; alias miniKeyAttack" // //
// Change toggle to 1 if you dont want the script to switchback by default // //
alias miniEnable "miniToggle2; alias miniKey2 miniPullDispenser; alias miniKey3 miniToggle; alias miniKeyAttack -attack" // //
// Toggles // //
alias miniToggle1 "alias miniToggle miniToggle2; alias miniKey1 miniSentry" // //
alias miniToggle2 "alias miniToggle miniToggle1; alias miniKey1 miniPullSentry" // // //
// // //
// // // //
////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
//--------------------------------------------------------------------------------------------------// //
// //
//------------------------------------------------------------------------------------------------------//
echo Minisentry switchback!
echo Aliasing Chat Spam!
//----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
// Chat Spam Scripts //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // // //
// Fucked Up Hentai Quotes // // //
// Credit goes to karen for half of the quotes // // //
// // //
alias bindHln1 "say IMPREGNATE MY ASS! ; alias bindCallHentai bindHln2" // // //
alias bindHln2 "say Now my armpits are going to smell like dick... ; alias bindCallHentai bindHln3" // // //
alias bindHln3 "say Damn! Men have different genitals than women! ; alias bindCallHentai bindHln4" // // //
alias bindHln4 "say You're impregnating me while I'm taking a dump!!! ; alias bindCallHentai bindHln5" // // //
alias bindHln5 "say Sandwich fuck feels so good... ; alias bindCallHentai bindHln6" // // //
alias bindHln6 "say If I give birth, then the baby will grow up and lose its virginty before you do~ <3 ; alias bindCallHentai bindHln7" // // //
alias bindHln7 "say Use your dick and make cheese fondue in my pussy <3 ; alias bindCallHentai bindHln8" // // //
alias bindHln8 "say I'm shitting and sucking away at my smegma and cumming at the same time!!! ; alias bindCallHentai bindHln9" // // //
alias bindHln9 "say DAMN! My sister has a nice shit box on her ; alias bindCallHentai bindHln10" // // //
alias bindHln10 "say Do it! Do it! Pour your cum all over my unborn fetus! ; alias bindCallHentai bindHln11" // // //
alias bindHln11 "say You must be a real pervert to be able to cum while having my arm twisting around inside your ass ; alias bindCallHentai bindHln12" // // //
alias bindHln12 "say I'M BEING FUCKED BY MY OWN COCK! ; alias bindCallHentai bindHln13" // // //
alias bindHln13 "say Wow... Only a truly great pussy allows a premature ejaculator to hold out and extend the feeling of ecstasy... ; alias bindCallHentai bindHln14" // // //
alias bindHln14 "say The truth is, most boys are horrified when the girl they like suddenly grows a cock ; alias bindCallHentai bindHln15" // // //
alias bindHln15 "say But having 4 arms shoved up my ass, there's no way I can stand having anything smaller in there now; alias bindCallHentai bindHln16" // // //
alias bindHln16 "say So much vomit-cum is coming out of Senpai's mouth-pussy! ; alias bindCallHentai bindHln17" // // //
alias bindHln17 "say OGHHH!! My throat-pussy is being raped by this filthy penis! ; alias bindCallHentai bindHln18" // // //
alias bindHln18 "say So you crossdress and ejaculate prematurely... That's beyond sad ; alias bindCallHentai bindHln19" // // //
alias bindHln19 "say Control this 'GLOBAL WARMING' in my pussy! ; alias bindCallHentai bindHln20" // // //
alias bindHln20 "say You won't be able to rape me after cumming in my mouth ; alias bindCallHentai bindHln21" // // //
alias bindHln21 "say WHO IN THEIR RIGHT MIND WOULD FROST A CAKE WITH THEIR BUTT?! ; alias bindCallHentai bindHln22" // // //
alias bindHln22 "say Now that I actually came on my little brother's face, all my fears seem to have vanished ; alias bindCallHentai bindHln23" // // //
alias bindHln23 "say Why is that giraffe pounding into my anus so fiercely?! ; alias bindCallHentai bindHln24" // // //
alias bindHln24 "say Oooooh, it's knocking on the door to my baby factory! <3 ; alias bindCallHentai bindHln25" // // //
alias bindHln25 "say It's so big and thick! The dick of a married woman! ; alias bindCallHentai bindHln26" // // //
alias bindHln26 "say My pussy feels so good! It feels so good to shove shit into my pussy! ; alias bindCallHentai bindHln27" // // //
alias bindHln27 "say Maybe it's because I have sucked on nothing but cocks fo the last few days... ; alias bindCallHentai bindHln28" // // //
alias bindHln28 "say I'LL CUM TOO MUCH AND DIE! ; alias bindCallHentai bindHln29" // // //
alias bindHln29 "say Hhmng...! Ooh! Here it comes! Yes! Give my nose an enema with your cum! ; alias bindCallHentai bindHln30" // // //
alias bindHln30 "say It makes me sick to think I was fucking a woman who was having sex with an alligator ; alias bindCallHentai bindHln31" // // //
alias bindHln31 "say And your excrement will become my sustenance ; alias bindCallHentai bindHln32" // // //
alias bindHln32 "say Meeting and talking to men while naked increases your chances to score! ; alias bindCallHentai bindHln33" // // //
alias bindHln33 "say I wish I could have had sex with mom like you did, sis ; alias bindCallHentai bindHln34" // // //
alias bindHln34 "say Please don't watch me cum while I spray pee out of my ass! ; alias bindCallHentai bindHln35" // // //
alias bindHln35 "say He's like the ferryman across the River Styx, pulling men into sin by their dicks! ; alias bindCallHentai bindHln36" // // //
alias bindHln36 "say I'M BECOMING A TOTAL SLAVE FOR THICK, LONG, AND HARD MEGACOCKS! ; alias bindCallHentai bindHln37" // // //
alias bindHln37 "say Humans can make cows pregnant?! ; alias bindCallHentai bindHln38" // // //
alias bindHln38 "say I'M FLOATING ON COCKS! ; alias bindCallHentai bindHln39" // // //
alias bindHln39 "say It felt like I came my entire insides out my dick... ; alias bindCallHentai bindHln40" // // //
alias bindHln40 "say Heh, you're not only quick at fighting, but your dick is also like that of a kid's! ; alias bindCallHentai bindHln41" // // //
alias bindHln41 "say These are savage, untamed dicks ; alias bindCallHentai bindHln42" // // //
alias bindHln42 "say Terrorist actions against my ass are not acceptable! ; alias bindCallHentai bindHln43" // // //
alias bindHln43 "say But... It's a sin to have tits this huge for a girl your age! ; alias bindCallHentai bindHln44" // // //
alias bindHln44 "say This is bit of a pickle, though. ; alias bindCallHentai bindHln45" // // //
alias bindHln45 "say What does it say about a grade school teacher if she doesn't want to fuck her students? ; alias bindCallHentai bindHln46" // // //
alias bindHln46 "say T-this could be the biggest turd in all of Japan, no, the world... ; alias bindCallHentai bindHln47" // // //
alias bindHln47 "say Teach us how to use dicks ; alias bindCallHentai bindHln48" // // //
alias bindHln48 "say There's nothing better than cafe au semen, I tell you! ; alias bindCallHentai bindHln49" // // //
alias bindHln49 "say To have the person I love also be a hermaphrodite... ; alias bindCallHentai bindHln50" // // //
alias bindHln50 "say It's enough to make me want to thank God with a blowjob! ; alias bindCallHentai bindHln51" // // //
alias bindHln51 "say Just shut the fuck up, and let me fuck your ass!!! ; alias bindCallHentai bindHln52" // // //
alias bindHln52 "say Ooh? She's already wet, even though she's a virgin! ; alias bindCallHentai bindHln53" // // //
alias bindHln53 "say Quit having fun squeezing a guy's breasts ; alias bindCallHentai bindHln54" // // //
alias bindHln54 "say A dick with phimosis is the best <3 ; alias bindCallHentai bindHln55" // // //
alias bindHln55 "say Come on, confess. You wanted me to assault you, didn't you? ; alias bindCallHentai bindHln56" // // //
alias bindHln56 "say They say it's dangerous to swallow the cum of foreigners ; alias bindCallHentai bindHln57" // // //
alias bindHln57 "say Ah ah ah! I'm the lonely rapist! ; alias bindCallHentai bindHln58" // // //
alias bindHln58 "say You're too addicted to the cock! ; alias bindCallHentai bindHln59" // // //
alias bindHln59 "say You have become so dick-crazed that you can no longer call yourself a man! ; alias bindCallHentai bindHln60" // // //
alias bindHln60 "say I mean, this is why we went on vacation, so you could discreetly suck girl cock ; alias bindCallHentai bindHln61" // // //
alias bindHln61 "say The reason kindergartners' hands are so small is because they're meant to pat dicks! ; alias bindCallHentai bindHln62" // // //
alias bindHln62 "say It's because you only fight with your anus ; alias bindCallHentai bindHln63" // // //
alias bindHln63 "say Ughhh... I ended up giving my chastity to my girlfriend's cat... ; alias bindCallHentai bindHln64" // // //
alias bindHln64 "say She's eating my dick first? She's a slutty zombie, a slutbie! ; alias bindCallHentai bindHln65" // // //
alias bindHln65 "say Can you believe the whole school is being powered by your semen right now? ; alias bindCallHentai bindHln66" // // //
alias bindHln66 "say Even though I'm just a high schooler, I'm prepared to be a mother! ; alias bindCallHentai bindHln67" // // //
alias bindHln67 "say So please... impregnate me! ; alias bindCallHentai bindHln68" // // //
alias bindHln68 "say You're basically using my pussy to masturbate! ; alias bindCallHentai bindHln69" // // //
alias bindHln69 "say A vagina! I'm licking a real vagina! ; alias bindCallHentai bindHln70" // // //
alias bindHln70 "say Ripping through a high school girl's hymen is the best ; alias bindCallHentai bindHln71" // // //
alias bindHln71 "say Plus, her small tits are right up my alley ; alias bindCallHentai bindHln72" // // //
alias bindHln72 "say Flat chest is justice! ; alias bindCallHentai bindHln73" // // //
alias bindHln73 "say That was the point when I realized that there really was no candy. ; alias bindCallHentai bindHln74" // // //
alias bindHln74 "say My entire body is turning into pussies. ; alias bindCallHentai bindHln75" // // //
alias bindHln75 "say Your pussy's become so plump... and smells like an incredibly hot, rich cheese... ; alias bindCallHentai bindHln76" // // //
alias bindHln76 "say I'm not sure what's going on, but my asshole is in danger! ; alias bindCallHentai bindHln77" // // //
alias bindHln77 "say When I got back home, I was greeted by an ass coming out of the microwave. ; alias bindCallHentai bindHln78" // // //
alias bindHln78 "say Hey sis, look at me too! Your nipple is about to penetrate me! ; alias bindCallHentai bindHln79" // // //
alias bindHln79 "say My penis isn't just satisfied with just pudding. ; alias bindCallHentai bindHln80" // // //
alias bindHln80 "say You were fucked by your father who is the same person as your mother, and now you are pregnant. ; alias bindCallHentai bindHln81" // // //
alias bindHln81 "say Stoop!! Your second helping of milk is gonna turn my pussy into an idiot!! ; alias bindCallHentai bindHln82" // // //
alias bindHln82 "say M... My cum belongs to the fuhrer...! ; alias bindCallHentai bindHln83" // // //
alias bindHln83 "say LAST TIME I SLEPT WITH YOU, I GAVE YOU... SUPER HERPES!!! ; alias bindCallHentai bindHln84" // // //
alias bindHln84 "say My immortal dick is once again on fire and can't be stopped. ; alias bindCallHentai bindHln85" // // //
alias bindHln85 "say SH... SHE STOPPED HIM WITH A BLOWJOB!! ; alias bindCallHentai bindHln86" // // //
alias bindHln86 "say Stop trolling my anus! ; alias bindCallHentai bindHln87" // // //
alias bindHln87 "say Here we go! Nose rape! ; alias bindCallHentai bindHln88" // // //
alias bindHln88 "say Whenever mom was at work, I had sex with the cow. ; alias bindCallHentai bindHln89" // // //
alias bindHln89 "say It's like... He's ejaculating strait inside my mind. ; alias bindCallHentai bindHln90" // // //
alias bindHln90 "say And now we can even have sex with her dick!! ; alias bindCallHentai bindHln91" // // //
alias bindHln91 "say THE TREATY OF VERSAI OH GOD I'M CUUMMING! ; alias bindCallHentai bindHln92" // // //
alias bindHln92 "say Please come into my rectum and fill it up to the brim by using them like a false penis ; alias bindCallHentai bindHln93" // // //
alias bindHln93 "say Please captain, rape my streched anus with your erected nipples! ; alias bindCallHentai bindHln94" // // //
alias bindHln94 "say Wah! What are we going to do on the bed? ; alias bindCallHentai bindHln95" // // //
alias bindHln95 "say What are you doing back there, onii-chan? ; alias bindCallHentai bindHln96" // // //
alias bindHln96 "say Please go easy on me. I'm a virgin *spreads gaping vagina* ; alias bindCallHentai bindHln97" // // //
alias bindHln97 "say It's amazing! Anal sex with little girls really is the best! ; alias bindCallHentai bindHln98" // // //
alias bindHln98 "say If it's in the butt, then it doesn't count. ; alias bindCallHentai bindHln99" // // //
alias bindHln99 "say Pump that semen inside your sister! ; alias bindCallHentai bindHln100" // // //
alias bindHln100 "say Onee-Chan... p-please be gentle... aah~ ; alias bindCallHentai bindHln101" // // //
alias bindHln101 "say You're gonna get raped by my thick, fat futa-dick! ; alias bindCallHentai bindHln102" // // //
alias bindHln102 "say A tunafish just made me cum... ; alias bindCallHentai bindHln103" // // //
alias bindHln103 "say As you can plainly see... I'm a rapist disguised as a pizza boy. ; alias bindCallHentai bindHln104" // // //
alias bindHln104 "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 bindCallHentai bindHln105" // // //
alias bindHln105 "say Why is that man feeling so good despite her forcibly raping him? ; alias bindCallHentai bindHln106" // // //
alias bindHln106 "say Tonight I'm going to thoroughly stab you with my dick!! ; alias bindCallHentai bindHln107" // // //
alias bindHln107 "say You're the kind of little sister who prefers dick over olives... ; alias bindCallHentai bindHln108" // // //
alias bindHln108 "say The contents of my stomach... Are waffle batter mix! ; alias bindCallHentai bindHln109" // // //
alias bindHln109 "say Mommy, your sperm are raping my sperm... It's making me cum! ; alias bindCallHentai bindHln110" // // //
alias bindHln110 "say Still, It's pretty awesome that he's going to end up getting raped by that homo. ; alias bindCallHentai bindHln111" // // //
alias bindHln111 "say Ah... I wish I could be one of your tissues... and take your stinky cum day after day... ; alias bindCallHentai bindHln112" // // //
alias bindHln112 "say Ravioli, ravioli, cum in my assholi ; alias bindCallHentai bindHln113" // // //
alias bindHln113 "say It's not rape if their pupils turn into hearts, ask any lawyer ; alias bindCallHentai bindHln114" // // //
alias bindHln114 "say My pussy's about to eat up your weiner and it's like~ GOBBLE GOBBLE! ; alias bindCallHentai bindHln115" // // //
alias bindHln115 "say Penis or not, my feelings won't ever change! ; alias bindCallHentai bindHln116" // // //
alias bindHln116 "say You don't bring girls to your room and not have sex with them! ; alias bindCallHentai bindHln117" // // //
alias bindHln117 "say Uhn! I'm gonna launch my load at express speed! ; alias bindCallHentai bindHln118" // // //
alias bindHln118 "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 bindCallHentai bindHln119" // // //
alias bindHln119 "say You pissed in my coffee didn't you? Not that it matters anyway.. ; alias bindCallHentai bindHln120" // // //
alias bindHln120 "say Let's rape! You can start by screaming. ; alias bindCallHentai bindHln121" // // //
alias bindHln121 "say Didn't your mother teach you proper manners? It's only polite to close your asshole after being raped. ; alias bindCallHentai bindHln122" // // //
alias bindHln122 "say I wanna be fucked so hard I don't even know my own name anymore. ; alias bindCallHentai bindHln123" // // //
alias bindHln123 "say I can't believe you're confessing while eating his ass out! ; alias bindCallHentai bindHln124" // // //
alias bindHln124 "say Incest sure tastes bitter... ; alias bindCallHentai bindHln125" // // //
alias bindHln125 "say Our mothers will check our hymen every month, so I take a trip back home when the time comes. ; alias bindCallHentai bindHln126" // // //
alias bindHln126 "say How cruel, my pussy smells like camembert cheese for sure! ; alias bindCallHentai bindHln127" // // //
alias bindHln127 "say Not to good girls: Make sure not to insert a ball pen in your pussy. ; alias bindCallHentai bindHln128" // // //
alias bindHln128 "say You... You understood me, didn't you Mr. Tentacle...!? ; alias bindCallHentai bindHln129" // // //
alias bindHln129 "say If I see such a beautiful spinal erector mussle, then I must rub my dick against it. ; alias bindCallHentai bindHln130" // // //
alias bindHln130 "say I have three size d batteries lodged inside my asshole as a defensive measure. I call it ''The Shining Dragon.'' ; alias bindCallHentai bindHln131" // // //
alias bindHln131 "say I guess I have no choice... I have to impregnate my little sister! ; alias bindCallHentai bindHln132" // // //
alias bindHln132 "say I can't stop shitting! Pushing it out feels good!!!<3 ; alias bindCallHentai bindHln133" // // //
alias bindHln133 "say I can't calm down without smelling some semen!! ; alias bindCallHentai bindHln134" // // //
alias bindHln134 "say My body can only be washed by tits! ; alias bindCallHentai bindHln135" // // //
alias bindHln135 "say Come on, let's rethink this... I'm healthy! I don't need your hand in my butt! ; alias bindCallHentai bindHln136" // // //
alias bindHln136 "say Uhaa... Got carried away and spoofed right in ya' gash... ; alias bindCallHentai bindHln137" // // //
alias bindHln137 "say I was always taught to thank my host with sex if I ever ran away from home. ; alias bindCallHentai bindHln138" // // //
alias bindHln138 "say Her god's tounge really loves it's new pacifier... ; alias bindCallHentai bindHln139" // // //
alias bindHln139 "say Don't you dare make a mockery of cock! ; alias bindCallHentai bindHln140" // // //
alias bindHln140 "say I'm going to make you have a lot of ogre babies ; alias bindCallHentai bindHln141" // // //
alias bindHln141 "say Look, you're getting gayer and gayer... Decending into faggotry... ; alias bindCallHentai bindHln142" // // //
alias bindHln142 "say Fag... Gay... <3 <3 ; alias bindCallHentai bindHln143" // // //
alias bindHln143 "say YOU WILL BECOME A DICK ; alias bindCallHentai bindHln144" // // //
alias bindHln144 "say Poor Mr. Wolf! To have lost the ability to get an erection like that... ; alias bindCallHentai bindHln145" // // //
alias bindHln145 "say As expected of british chicks, what a smelly cunt you've got there. ; alias bindCallHentai bindHln146" // // //
alias bindHln146 "say Don't you think it's rude to greet your guest with your ass, Onee-chan? ; alias bindCallHentai bindHln147" // // //
alias bindHln147 "say That's right. Sugary sweet, sinfully rich, delightfully sticky faggot sex! <3 ; alias bindCallHentai bindHln148" // // //
alias bindHln148 "say This is such an amazing discovery! Let's name this your ass-pussy! ; alias bindCallHentai bindHln149" // // //
alias bindHln149 "say I'm cumming inside myself! ; alias bindCallHentai bindHln150" // // //
alias bindHln150 "say If you only see me as your brother, then why are your nipples erect? ; alias bindCallHentai bindHln151" // // //
alias bindHln151 "say Using this cock that I grew using a special drug, we'll both feel good together... senpai. <3 ; alias bindCallHentai bindHln152" // // //
alias bindHln152 "say Do...Don't fap your dick through my ASSSSS!! ; alias bindCallHentai bindHln153" // // //
alias bindHln153 "say APOLOGISE TO THE GOD OF SEX!! ; alias bindCallHentai bindHln154" // // //
alias bindHln154 "say I can stick three dicks in my mouth and sing the national anthem! ; alias bindCallHentai bindHln155" // // //
alias bindHln155 "say No, I will surpass that and become the king of virgins! ; alias bindCallHentai bindHln156" // // //
alias bindHln156 "say Here's you're pervert little brother's cock pounding your tight wet sister-pussy! ; alias bindCallHentai bindHln157" // // //
alias bindHln157 "say Mmmmmmm sweet incest fucking with onee-chan! ; alias bindCallHentai bindHln158" // // //
alias bindHln158 "say Nipple rubbing attack! ; alias bindCallHentai bindHln159" // // //
alias bindHln159 "say Wish such cuteness, gender means diddly-squat. Welcome to penis-land! ; alias bindCallHentai bindHln160" // // //
alias bindHln160 "say I wanted to push her away, but instead I ended up pushing her into my boner ; alias bindCallHentai bindHln161" // // //
alias bindHln161 "say You have a godly cock, onii-chan. So before I do anything, let me pay my respects. ; alias bindCallHentai bindHln162" // // //
alias bindHln162 "say But instead of getting close to one... I actually became a girl myself! ; alias bindCallHentai bindHln163" // // //
alias bindHln163 "say It feels like it wants to rape you. Not go on, suck your own dick. ; alias bindCallHentai bindHln164" // // //
alias bindHln164 "say How can you get pregnant in your ass...? I'm a magical girl, I can do anything! ; alias bindCallHentai bindHln165" // // //
alias bindHln165 "say With this giant rod I think I'll have no problem shoving my way into a toddler's pussy... ; alias bindCallHentai bindHln166" // // //
alias bindHln166 "say This p- perverted gay blowjob feels great..! ; alias bindCallHentai bindHln167" // // //
alias bindHln167 "say You're like a goat giving birth. ; alias bindCallHentai bindHln168" // // //
alias bindHln168 "say I'm pregnant and I'm a guy! ; alias bindCallHentai bindHln169" // // //
alias bindHln169 "say His ass-pussy really is the best! ; alias bindCallHentai bindHln170" // // //
alias bindHln170 "say Is it okay if my pussy becomes stupid? ; alias bindCallHentai bindHln171" // // //
alias bindHln171 "say I transplanted my womb and organs into my breasts... so its alright! ; alias bindCallHentai bindHln172" // // //
alias bindHln172 "say I had a itch down there and i needed something to stick up in there ; alias bindCallHentai bindHln173" // // //
alias bindHln173 "say If he creampies me, my memories as a man will die and... I will... I will become female! ; alias bindCallHentai bindHln174" // // //
alias bindHln174 "say It's so thick and warm. My breasts could get pregnant from it!. ; alias bindCallHentai bindHln175" // // //
alias bindHln175 "say My manpussy feels good right? ; alias bindCallHentai bindHln176" // // //
alias bindHln176 "say Fufu, It's not going in. You better learn how to get your ass-pussy wet soon! ; alias bindCallHentai bindHln177" // // //
alias bindHln177 "say But the tentacles... Yes, the tentacles. They can save these lonely girls! ; alias bindCallHentai bindHln178" // // //
alias bindHln178 "say This is where you say goodbye to your past self. This cock will change your entire existence. ; alias bindCallHentai bindHln179" // // //
alias bindHln179 "say If I don't crush that guys puny cock in my own hands, I can't be satisfied! ; alias bindCallHentai bindHln180" // // //
alias bindHln180 "say Why in the world do you have a frozen fish stick up your pussy!? ; alias bindCallHentai bindHln181" // // //
alias bindHln181 "say This is exactly why I can't stop raping elementary school girls!! ; alias bindCallHentai bindHln182" // // //
alias bindHln182 "say Rape myself!! This is it... ULTIMATE MASTURBATION! ; alias bindCallHentai bindHln183" // // //
alias bindHln183 "say These nipple pussies with their artifically implanted clitorises. ; alias bindCallHentai bindHln184" // // //
alias bindHln184 "say My stomach is being filled with semen that doesn't belong to my husband! ; alias bindCallHentai bindHln185" // // //
alias bindHln185 "say A middle schooler's virgin pussy has the best color after all ; alias bindCallHentai bindHln186" // // //
alias bindHln186 "say Good thing our parents shared their syringes! ; alias bindCallHentai bindHln187" // // //
alias bindHln187 "say Double rape time! ; alias bindCallHentai bindHln188" // // //
alias bindHln188 "say Your butt's getting used to your own penis! It's like a butt-pussy! ; alias bindCallHentai bindHln189" // // //
alias bindHln189 "say I-I'm sorry. I kind of raped you... ; alias bindCallHentai bindHln190" // // //
alias bindHln190 "say Make me feel like I'm five years old again and playin' with my dog in the yard! ; alias bindCallHentai bindHln191" // // //
alias bindHln191 "say Satan, guide by cock!!! ; alias bindCallHentai bindHln192" // // //
alias bindHln192 "say Donut penis! ; alias bindCallHentai bindHln193" // // //
alias bindHln193 "say How dare you play the flute as you have sex! ; alias bindCallHentai bindHln194" // // //
alias bindHln194 "say I can feel it bumping against the back of your throat through my anus... ; alias bindCallHentai bindHln195" // // //
alias bindHln195 "say I'm shooting sperm from my nipples... ; alias bindCallHentai bindHln196" // // //
alias bindHln196 "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 bindCallHentai bindHln197" // // //
alias bindHln197 "say My recorder is stuck in your butt! ; alias bindCallHentai bindHln198" // // //
alias bindHln198 "say Before I knew it, I had a dream to rape a bat ; alias bindCallHentai bindHln199" // // //
alias bindHln199 "say You gave him the gay! ; alias bindCallHentai bindHln200" // // //
alias bindHln200 "say Anybody with cock troubles comes to me. ; alias bindCallHentai bindHln201" // // //
alias bindHln201 "say Well then, let me teach you the beauty of receiving a blowjob from a man!! ; alias bindCallHentai bindHln202" // // //
alias bindHln202 "say It's as if my entire body is turning into cum. <3 ; alias bindCallHentai bindHln203" // // //
alias bindHln203 "say I feel like I could get pregnant just from how they're violating my face <3 ; alias bindCallHentai bindHln204" // // //
alias bindHln204 "say I'm your older sister, little sister, mother and daughter! ; alias bindCallHentai bindHln205" // // //
alias bindHln205 "say Dad...! That means you've had things up your ass before am I right? ; alias bindCallHentai bindHln206" // // //
alias bindHln206 "say If you go further, I'll... cum out of my breasts ; alias bindCallHentai bindHln207" // // //
alias bindHln207 "say She must be quite the masochist to blow her load while vomiting up cum. ; alias bindCallHentai bindHln208" // // //
alias bindHln208 "say Just relax and accept the fact that you're being raped, It's easier for you that way. ; alias bindCallHentai bindHln209" // // //
alias bindHln209 "say Who dares grab my penis!? ; alias bindCallHentai bindHln210" // // //
alias bindHln210 "say A relative's semen is the best! <3 ; alias bindCallHentai bindHln211" // // //
alias bindHln211 "say I had a buttfull of cockmeat and a virgin-tight loli cunt squeezing my dick. ; alias bindCallHentai bindHln212" // // //
alias bindHln212 "say Cough up your panties and put them on immediately! ; alias bindCallHentai bindHln213" // // //
alias bindHln213 "say It feels like a caterpillar's forcing itself inside me... ; alias bindCallHentai bindHln214" // // //
alias bindHln214 "say Yea! Thats why onii-chan has to give me lots of sperm to play with! ; alias bindCallHentai bindHln215" // // //
alias bindHln215 "say I've been busted, he found out I'm a boy! I have to get out of here! ; alias bindCallHentai bindHln216" // // //
alias bindHln216 "say Getting throatfucked is the best~ <3 ; alias bindCallHentai bindHln217" // // //
alias bindHln217 "say You pretend to be sweet around your friends but then you're just a lolicon pervert that rapes his little sister! ; alias bindCallHentai bindHln218" // // //
alias bindHln218 "say I'm orgasming with my boy pussy! <3 ; alias bindCallHentai bindHln219" // // //
alias bindHln219 "say My traitorous pussy, it's surrendering while my ass is being violated! It's cumming disgracefully! <3 ; alias bindCallHentai bindHln220" // // //
alias bindHln220 "say How's about a cock-sandwich with titty-muffins? ; alias bindCallHentai bindHln221" // // //
alias bindHln221 "say Squeeze the semen out of your wife's dick! <3 ; alias bindCallHentai bindHln222" // // //
alias bindHln222 "say In eromanga all girls get wet just from giving head so it's okay! ; alias bindCallHentai bindHln223" // // //
alias bindHln223 "say Having sex with your own body os really more like masturbation, right?! ; alias bindCallHentai bindHln224" // // //
alias bindHln224 "say No matter how much you love them, those sisters won't come out of the screen! ; alias bindCallHentai bindHln225" // // //
alias bindHln225 "say Mmm... This wonderful cock scent... ; alias bindCallHentai bindHln226" // // //
alias bindHln226 "say Gently grasping the bulge with his hand. ; alias bindCallHentai bindHln227" // // //
alias bindHln227 "say Never kick a little anime girl, even in her penis. ; alias bindCallHentai bindHln228" // // //
alias bindHln228 "say I showed you my dick, answer me! ; alias bindCallHentai bindHln229" // // //
alias bindHln229 "say Wait...! All he's ever done with me is fuck my ass...!! ; alias bindCallHentai bindHln230" // // //
alias bindHln230 "say Your butt is wet and hot inside just like a cat in heat would be. ; alias bindCallHentai bindHln231" // // //
alias bindHln231 "say My panties feel tight, im taking them off. ; alias bindCallHentai bindHln232" // // //
alias bindHln232 "say Men are from mars, and women from venus, but i am a woman, WITH A PENIS! ; alias bindCallHentai bindHln233" // // //
alias bindHln233 "say N-n-n-nani?!?! I-is it normal for friends to kiss each other?! I-i am kind of out of the loop on these things... ; alias bindCallHentai bindHln1" // // //
// // //
// Why did i box this up >_> // // //
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // //
// //
// Lmaobox Chat spam
alias bindLmaoln1 "say GET GOOD, GET LMAOBOX! ; alias bindCallLmaobox bindLmaoln2"
alias bindLmaoln2 "say LMAOBOX - WAY TO THE TOP ; alias bindCallLmaobox bindLmaoln3"
alias bindLmaoln3 "say WWW.LMAOBOX.NET - BEST TF2 HACK! ; alias bindCallLmaobox bindLmaoln1"
// cathook chat spam
alias bindCatln1 "say cathook - more fun than a ball of yarn! ; alias bindCallCathook bindCatln2"
alias bindCatln2 "say GNU/Linux is the best OS! ; alias bindCallCathook bindCatln3"
alias bindCatln3 "say visit youtube.com/c/nullifiedcat for more information! ; alias bindCallCathook bindCatln4"
alias bindCatln4 "say cathook - free tf2 cheat! ; alias bindCallCathook bindCatln5"
alias bindCatln5 "say cathook - ca(n)t stop me meow! ; alias bindCallCathook bindCatln1"
// Setup spam aliases // //
alias bindCallHentai "bindHln209" // //
alias bindCallLmaobox "bindLmaoln1"
alias bindCallCathook "bindCatln1"
alias bindCallTmp "say_team Tmp"
// Aliases for changing spam type
// We do this so that we can notify the menu about the change
alias bindChangeHentai "alias bindCallSet bindCallHentai; gChatNotifyHentai"
alias bindChangeLmaobox "alias bindCallSet bindCallLmaobox; gChatNotifyLmaobox"
alias bindChangeCathook "alias bindCallSet bindCallCathook; gChatNotifyCathook"
alias bindChangeTmp "alias bindCallSet bindCallTmp; gChatNotifyTmp" // //
// Set our default spam type
bindChangeHentai
bind rightarrow bindCallSet
// //
//------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------// //
// //
//----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------//
echo Aliased Chat Spam!
echo Loading Scripts Complete!
echo Setup Class Specific Settings!
//------------------------------------------------------------------------------//
// Class Specific aliases //
//--------------------------------------------------------------------------// //
// //
//==========================================================// // //
// On class change, className is called so we can choose // // //
// what scripts are enabled/disabled // // //
//==========================================================// // //
// //
// Reset any active scripts // //
alias classReset "uiResetKeys; miniDisable; vaxDisable; mQsDisable" // //
// //
//Selectively Enable and disable scripts based on class // //
alias classSoldier "classReset" // //
alias classPyro "classReset" // //
alias classHeavy "classReset" // //
alias classDemoman "classReset" // //
alias classSniper "classReset" // //
alias classScout "classReset; disablebhop" // //
alias classSpy "classReset; alias +uiRedirectKey1 lastdisguise" // //
alias classEngineer "classReset; miniEnable; uiToMiniSentry" // //
alias classMedic "classReset; mQsEnable; uiToMediQuick" // //
// //
//--------------------------------------------------------------------------// //
// //
//------------------------------------------------------------------------------//
echo Setup Class Specific Settings Complete!
echo Execute Gameplay Settings!
//----------------------------------------------------------------------------------//
// User Configs //
//------------------------------------------------------------------------------// //
// //
//==============================================================// // //
// Put any and all important gameplay cvar changes here. // // //
// Ive already put some things I use but you may use your own // // //
//==============================================================// // //
// //
// Gets rid of a shine on weps, similear to mat_phong but doesnt break things // //
r_rimlight 0 // //
// //
// Combine hitnumbers together // //
hud_combattext_batching 1 // //
hud_combattext_batching_window 3 // //
// //
// Instead of seeing ping bars, it shows numbers for ping // //
tf_scoreboard_ping_as_text 1 // //
// //
// Enable Transparent Viewmodels for toonhud // //
exec enable_transparency // //
// //
// See what bots are left in MVM // //
cl_mvm_wave_status_visible_during_wave 1 // //
// //
// Keep the votemenu open after voting // //
cl_vote_ui_active_after_voting 1 // //
// //
// Slower Sniper Zoom Sebsitivity // //
zoom_sensitivity_ratio 0.8 // //
// //
//------------------------------------------------------------------------------// //
// //
//----------------------------------------------------------------------------------//
echo Execute Gameplay Settings Complete!
echo Autoexecuting Done!