├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── temp.sql ├── CHANGELOG.md ├── CHANGELOG.png ├── CONTRIBUTING ├── LICENSE ├── README.md ├── TODO ├── compile.py ├── compiler ├── __init__.py ├── compiler.py ├── group.py ├── modifiers.py ├── text.py └── util.py ├── config.py ├── output ├── easyscript.cfg ├── groups.cfg ├── modifiers.cfg └── resets.cfg └── source ├── groups ├── attack.grp ├── attack.opt ├── cntx.grp ├── cntx.opt ├── misc.grp ├── misc.opt ├── movement.grp ├── movement.opt ├── movement_v.grp ├── movement_v.opt ├── singletons.grp ├── singletons.opt ├── slot.grp ├── slot.opt ├── taunt.grp └── taunt.opt ├── modifiers.grp └── prefabs ├── built_ins.pre ├── def_binds.pre ├── def_funct.pre ├── execs.pre ├── groups.pre ├── reset.pre ├── title.pre └── unstick.pre /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.pyc 3 | temp 4 | **/__pycache__ 5 | wiki 6 | *.zip 7 | .mypy_cache/ -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Compiler debug", 9 | "type": "python", 10 | "request": "launch", 11 | "stopOnEntry": true, 12 | "pythonPath": "${config:python.pythonPath}", 13 | "program": "${workspaceRoot}/compile.py", 14 | "cwd": "${workspaceRoot}", 15 | "env": {}, 16 | "envFile": "${workspaceRoot}/.env", 17 | "debugOptions": [ 18 | "WaitOnAbnormalExit", 19 | "WaitOnNormalExit", 20 | "RedirectOutput" 21 | ] 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | "python.pythonPath": "C:\\Program Files\\Python36\\python.exe" 4 | } -------------------------------------------------------------------------------- /.vscode/temp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FancyBanana/TF2-EasyScript/4788c7d6ac1ff4a913abc59142bc7af18ad8b6b7/.vscode/temp.sql -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0 2 | 3 | * First release. 4 | * Compiler written in ruby. 5 | 6 | ## 1.1 7 | 8 | * Added mode shifting 9 | 10 | ## 1.1.1 11 | 12 | * Renamed to TF2-EasyScript 13 | * Added a proper readme and a small tutorial 14 | 15 | ## 1.2 16 | 17 | * Removed 'sa_' aliases because of redundancy. 18 | * The reason behind this change is to sinplify the usage. 'sa_' and '+se_' where called in the same place, essentially making them redundant. The role of 'sa_' was to provide the 'key pressed and released' type of functionality, but there is no reason to not to use '+se_' since they are functionally identical. 19 | * This makes scripts for previous version incompatible. Sorry for inconvenience. 20 | * Every function aliased to sa_ is now aliased to +se_ 21 | 22 | ## 1.2.1 23 | 24 | * Bugfix: Fixed funky behavior when using invlast, invnext and invprev. 25 | 26 | ## 1.2.2 27 | 28 | * Bugfix: Added fix to `show on screen` script, setting `con_filter_text_out` to `0` by default. 29 | 30 | ## 1.3 31 | 32 | * Added mod__set and mod__reset. These are activated when a modifier is activated(set) and deactivated(reset). 33 | 34 | ## 1.3.1 35 | 36 | * Quickfix missing resets for mod_<>_set 37 | 38 | ## 1.3.2 39 | 40 | * Removed `sa_` alias from modifier definition. -------------------------------------------------------------------------------- /CHANGELOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FancyBanana/TF2-EasyScript/4788c7d6ac1ff4a913abc59142bc7af18ad8b6b7/CHANGELOG.png -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | You are welcome to contribute! 2 | Either create an issue, submit a commit or contact me on reddit /u/fanciestBanana. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TF2 EasyScript 2 | A scripting framework by /u/FanciestBanana 3 | A thank you for people contributing to this project: /u/Tvde1 4 | 5 | #### For quick programming guide scroll to the bottom. 6 | 7 | ## Description 8 | 9 | A script so ambitious it has it's own compiler! 10 | This framework is meant to be a starting point for scripters as well as 11 | a base for sharing scripts. It serves as a middleman between user input and scripts, also serving as a solid foundation for your scripts. 12 | 13 | # Features 14 | * ### Every single functionality in TF2 is taken care of! 15 | Every single key press can be and should be treated by EasyScript. 16 | 17 | * ### Change key binds without changing your script! 18 | 19 | * ### Mode shift everything! 20 | Mode shifting for ***every single*** (you heard it) ___key in the game___. 21 | 22 | * ### Scripter's best friend! 23 | Most confusing and annoying necessities are taken care of! 24 | TF2-EasyScript has hooks for different button press events, callbacks for when pressing next button in a button group as well as built-in null-canceling movement script. 25 | Lastinv, invnext, invprev, and spectator commands are already implemented. 26 | 27 | * ### Aliases for commands you didn't know existed! 28 | Call for an uber with single key press or instantly deploy a sentry. Or you can even use that taunt in the last slot that you hate to reach for... 29 | 30 | * ### Sharing scripts is never more complicated than drag'n'drop! 31 | Since all your script call TF2-EasyScript, it eliminates any need for changing your key binds 32 | 33 | ## How to install: 34 | 1. Go to: 35 | * [Releases](https://github.com/FancyBanana/TF2-EasyScript/releases) page on `GitHub` 36 | and grab a `.zip` with latest release of TF2-EasyScript 37 | 38 | 1. Navigate to your TF2 custom folder. 39 | - Example: `C:\Program Files (x86)\Steam\steamapps\common\Team Fortress 2\tf\custom` 40 | 41 | 1. Create a folder with a name of your choosing (someting like `myscripts`), and a folder named `cfg` inside it. 42 | - final result should look something like that: `\custom\myscripts\cfg` 43 | 44 | 1. If you hadn't already, create `autoexec.cfg` in that folder. This file will be executed 45 | at every launch. 46 | 47 | 1. In `autoexec.cfg` write on first line `exec easyscript.cfg` 48 | This will execute easyscript script at every launch. 49 | 50 | 1. In `easyscript.cfg` navigate to `Default bindings` section. 51 | There you will find a bunch of bindings that resemble default ones 52 | If you want to change binds, this is the place to do it. 53 | 54 | 1. (Advanced) If you happen to have `.cfg` scripts they should call `exec easyscript.cfg` in the first line. This will reset all aliases to defaults as well unstick all keys. This framework is designed to clean up everything for you :). 55 | 56 | ## How to use 57 | 58 | ##### For in-depth explanation on how to use TF2-EasyScript, please see `Wiki` section. (Coming ~~never~~ soon) 59 | ##### Meanwhile you can check out [some of my snippets](https://github.com/FancyBanana/TF2-EasyScript-Snippets) 60 | 61 | #### Vocabulary 62 | function - a native command that when written in console executes some action 63 | alias - a user-defined command that may call function(s) and/or other alias(es) 64 | binding - act of connecting a key press to function or alias 65 | a binding - the connection of a button to a function or alias 66 | 67 | It also should be noted that when a function or an alias with `+` prefix is bound to a key a function or an alias of the same name with prefix `-` is called on the release of the key, ex: 68 | 69 | bind w +forward 70 | 71 | pressing w down -> +forward is called 72 | releasing w -> -forward is called 73 | 74 | TF2-EasyScript consists of 4 files, but everything useful is conveniently located in `easyscript.cfg`, other 3 are purely technical. 75 | 76 | `easyscript.cfg` contains all key bindings, active and stubs for unused ones, and also aliases for voice commands, building stuff, destroying stuff, using eurika teleport, joining a class, joining a team, disguise for every combination of team/class, and lastly default functions for framework aliases that mirror buttons and shift modifiers. 77 | There's also a nifty script for showing console text on top of your HUD. 78 | 79 | The main principle behind this framework is that every default function (and more) is mirrored, so instead of: 80 | 81 | bind w +forward 82 | 83 | we have 84 | 85 | bind w +u_forward 86 | alias +se_forward +forward 87 | alias -se_forward -forward 88 | 89 | There's quite a bit more code, but it allows for extreme flexibility. 90 | Here's a bit more detailed: 91 | * there are user aliases: 92 | 93 | +u_ //key press 94 | -u_ //key release 95 | 96 | that are bound to keys: 97 | 98 | bind +u_ 99 | 100 | so now whenever we press a `key` the `+u` alias is called, and when we release the `key` the `-u` alias is called 101 | 102 | * there are also scripting aliases: 103 | 104 | sc_ //callback alias(explained later) 105 | +se_ //keydown event alias 106 | -se_ //keyup event alias 107 | 108 | that are used to call alias in user scripts. Please notice that all these are the same aliases name with different prefixes. 109 | 110 | Here are couple of simple examples with key press events detailed: 111 | 112 | ### `attack` on `MOUSE1` 113 | don't worry about `gc_attack` and `sc_attack` 114 | 115 | what you write: 116 | 117 | bind MOUSE1 +u_attack 118 | alias +se_attack +attack 119 | alias -se_attack -attack 120 | 121 | and how it is executed: 122 | 123 | pressing MOUSE1 -> 1. gc_attack called 124 | (previous alias for gc_attack, 125 | for example "alias gc_attack sc_attack2") 126 | 127 | 2. setting gc_attack to sc_attack 128 | ("alias gc_attack sc_attack") 129 | 130 | 3. +se_attack called (+attack) 131 | 132 | releasing MOUSE1-> 1. -se_attack called (-attack) 133 | 134 | Comment: attack key group has callback functionality, that's why you can define `sc_attack`, `sc_attack2` and `sc_attack3` to be called for consecutive key presses. 135 | 136 | another example 137 | ### Calling medic on `E` 138 | 139 | what you write 140 | 141 | bind E +u_callmed 142 | alias +se_callmed v_medic (v_medic is one of many 143 | short-hand aliases in TF2-EasyScript) 144 | 145 | and what happens when you press key 146 | 147 | pressing E-> 1. +se_callmed (v_medic) 148 | 149 | releasing E-> 1. -se_callmed (nothing) 150 | 151 | Pretty simple, right? How about something more complex: 152 | ### Mod shifting `E` to call for Uber 153 | 154 | Here we will be using predefined `pa` (full name is `mod_pa`) modifier. 155 | There are 2 types of modifiers: `press` and `toggle`. 156 | `a` is a `press` modifier (**p**a), first by alphabetical order (p**a**). There are a total of 4 predefined modifiers: 157 | * (`mod_`)`pa` 158 | * (`mod_`)`pb` 159 | * (`mod_`)`ta` 160 | * (`mod_`)`tb` 161 | 162 | when any modifier is active, every script alias "gains a suffix", that corresponds to modifier name ex: 163 | 164 | +se_callmed becomes +se_callmed_pa 165 | 166 | you can add more (why would you need more?) by modifying source files and building the framework from source. 167 | 168 | assuming the last example we need to write 169 | 170 | bind `MOUSE4` +u_mod_pa //binding shift mode alias 171 | 172 | alias +se_callmed_pa v_activateuber 173 | 174 | (again, this handy short-hand alias 175 | for a voice command can be found in 176 | `easyscript.cfg`) 177 | 178 | And that's all! Now anytime you press `MOUSE4`+`E` you can annoy your medic to give you uber XD 179 | 180 | And for the last topic: 181 | ### Callbacks 182 | 183 | It's rather hard for me to describe what a callback is, so I will base my explanation on an example. 184 | 185 | Let's say you play spy, your `fov_desired` is `90` by default but you want it to switch to `75` for your ambassador. So you need to switch to `75` when choosing `slot1`, and back to `90` when choosing anything else. The problem starts with *anything else* part. Normally you would need to include `fov_desired 90` into slots 2 to 10 to set fov to normal, but with TF2-EasyScript you need to do it only once for `slot1` callback, `sc_slot1`. 186 | 187 | Assuming you are using default binds (`bind 1 +u_slot1`,etc...) 188 | We need to locate the default function for `+u_slot1`, which should be a combination of any of 3 script aliases. In this case it's 189 | 190 | alias +se_slot1 "slot1"; (you can easily find this in easyscript.cfg) 191 | 192 | We will override this to include desired functionality. 193 | 194 | Now, for convenience we will create a spy.cfg, which will be automatically called when you change your class to spy. 195 | 196 | Inside we write: 197 | 198 | exec easyscript.cfg //obligatory, will reset aliases and cleanup 199 | 200 | alias +se_slot1 "slot1; fov_desired 75" //now selecting slot1 will set your fov to 75 201 | 202 | alias sc_slot1 "fov_desired 90;" //this will reset fov to normal when deselecting slot1 203 | 204 | 205 | And this is it! Amazingly simple, isn't it? Normally it will take a lot more code to implement, and maintaining the code becomes more difficult the more you write (believe me, without bloody compiler this framework is huge pain in the bottom). 206 | 207 | So now we will examine what happens when we press `2` then `1` then `3`: 208 | 209 | pressing 2 -> 1. call gc_slot (starting value 210 | is sc_slot1; "fov_desired 90;") 211 | 212 | 2. setting gc_slot to sc_slot2 213 | (default: "none") 214 | 215 | 3. +se_slot2 ("slot2") 216 | 217 | releasing 2 -> 1. -se_slot2 ("none") 218 | 219 | pressing 1 -> 1. call gc_slot ( sc_slot2 : "none") 220 | 221 | 2. setting gc_slot to sc_slot1 222 | (we defined sc_slot1: "fov_desired 90") 223 | 224 | 3. +se_slot1 ("slot1; fov_desired 75;") 225 | 226 | releasing 1 -> 1. -se_slot1 ("none") 227 | 228 | pressing 3 -> 1. call gc_slot (sc_slot1:"fov_desired 90") 229 | //yay, just but switching away from slot 1 230 | //we reset our fov 231 | 232 | 2. setting gc_slot to sc_slot3 ("none") 233 | 234 | 3. +se_slot3("none") 235 | 236 | releasing 3 -> 1. -se_slot3("none") 237 | 238 | Comment: When using mode shifting, the same callback alias `gc_` will be used across mode shift, meaning that switching from `slot1_pa` to `slot1` will call `sc_slot1_pa`. This behavior maybe subject to change. If you have a request, feel free to write me. 239 | 240 | So now you have basic understanding of how to work with TF2-EasyScript, what now? Now you play, write scripts, download scripts and just enjoy your new controls. Invert medigun attack function, make quickbuild script for engineer or randomized disguise for spy. You have all the freedom and one of the most powerful api and your disposal. Go nuts! 241 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | # Things I will do 2 | 3 | ## Very soon: 4 | 5 | * Wiki 6 | * Modifying source 7 | * Building from source 8 | 9 | ## Not so soon 10 | 11 | * Wiki 12 | * In-depth tutorial -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- 1 | #! python 2 | from compiler.compiler import compile 3 | from config import CFG 4 | 5 | compile(CFG) -------------------------------------------------------------------------------- /compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FancyBanana/TF2-EasyScript/4788c7d6ac1ff4a913abc59142bc7af18ad8b6b7/compiler/__init__.py -------------------------------------------------------------------------------- /compiler/compiler.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | 3 | # If you want to modify complation process, 4 | # then go to ../config.py 5 | # This file 6 | 7 | from glob import glob 8 | from os import makedirs, path 9 | 10 | # get functions 11 | from compiler.group import * 12 | from compiler.modifiers import * 13 | from compiler.text import * 14 | 15 | 16 | def compile(CFG): 17 | 18 | # this will hold the list of all modifiable aliases 19 | modifiables = [] 20 | 21 | # creating relevant dirs 22 | 23 | if(not path.isdir(CFG.out_dir)): 24 | makedirs(CFG.out_dir) 25 | if(not path.isdir(CFG.temp)): 26 | makedirs(CFG.temp) 27 | # file containing modifiers' definition 28 | m = open(CFG.source_modifiers, 'r') 29 | 30 | # relevant output files where text is saved before stitching 31 | frs = open(CFG.temp + 'reset.o', 'w+') 32 | fdb = open(CFG.temp + 'def_binds.o', 'w+') 33 | fdf = open(CFG.temp + 'def_funct.o', 'w+') 34 | fmd = open(CFG.temp + 'modifiers.o', 'w+') 35 | 36 | # read every group, it's options and compile items 37 | groups = glob(CFG.source_groups + '*.grp') 38 | fo = open(CFG.temp + 'groups.o', 'w') 39 | for gpr in groups: 40 | f = baseNameNoExt(gpr) 41 | f1 = open(gpr, 'r') 42 | f2 = open(CFG.source_groups + f + '.opt', 'r') 43 | res = compileGroup(f, readGroup(f1.readlines()), 44 | readOptions(f2.readlines()), 45 | CFG.preventCallbackSpam) 46 | writeListToFile(res['text'], fo) 47 | writeListToFile(res['resets'], frs) 48 | writeListToFile(res['def_binds'], fdb) 49 | writeListToFile(res['def_funct'], fdf) 50 | modifiables += res['modifiables'] 51 | f1.close() 52 | f2.close() 53 | fo.write("\n") 54 | fo.close() 55 | 56 | # compile modifiers 57 | res = None 58 | res = compileModifiers(readModifiers(m.readlines()), modifiables) 59 | writeListToFile(res['text'], fmd) 60 | writeListToFile(res['resets'], frs) 61 | writeListToFile(res['def_binds'], fdb) 62 | 63 | # closing file since it is useless now 64 | m.close() 65 | # closing all files since we will need to reopen them 66 | frs.close() 67 | fdb.close() 68 | fdf.close() 69 | fmd.close() 70 | 71 | for (l, d) in CFG.stitching_map: 72 | stitchFiles(l, d) 73 | 74 | print('End of compilation') 75 | -------------------------------------------------------------------------------- /compiler/group.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | 3 | from compiler.util import * 4 | from compiler.text import * 5 | import re 6 | 7 | 8 | def compileGroup(group_name, group_data, options, preventCallbackSpam): 9 | is_first = True # first loop is special 10 | invnext_entry = None # initialze invprev and invnext 11 | invprev_entry = None 12 | # groups text 13 | text = [] 14 | # same as text, only goes first 15 | header = [] 16 | # same as text, only goes second 17 | init = [] 18 | # i may have OCD, because i really want some lines to be toghether 19 | init2 = [] 20 | # reset assigment 21 | resets = [] 22 | # default functions 23 | def_funct = [] 24 | # default binds 25 | def_binds = [] 26 | # things that are affected by modifiers 27 | # format [handle,defualt_value] 28 | modifiables = [] 29 | # resetting some group aliases 30 | gpre = { 31 | 'gc': 'gc_' + group_name, 32 | 'gl': 'gl_' + group_name, 33 | 'pgl': '+gl_' + group_name, 34 | 'mgl': '-gl_' + group_name, 35 | 'pgn': '+gn_' + group_name, 36 | 'mgn': '-gn_' + group_name, 37 | 'pgp': '+gp_' + group_name, 38 | 'mgp': '-gp_' + group_name, 39 | } 40 | 41 | if options['qswitch']: 42 | resets += ["alias " + gpre['pgl'] + " none; "] 43 | resets += ["alias " + gpre['mgl'] + " none; "] 44 | resets += ["alias " + gpre['gl'] + " none; "] 45 | 46 | 47 | # Group's name in the header 48 | 49 | 50 | # Group's name in the header 51 | header += [' '] 52 | header += ['////////////////////////////////\ 53 | ////////////////////////////////'] 54 | header += ['///// ' + group_name] 55 | header += ['////////////////////////////////\ 56 | ////////////////////////////////'] 57 | 58 | pre = {} 59 | for entry in group_data: 60 | # Testing if this entry is a part of quickswitch 61 | is_qswitch_element = (entry['name'] in options) 62 | 63 | # precompile all prefixes for ease of use 64 | pre = { 65 | # aliases that user binds 66 | 'pu': '+u_' + entry['name'], 67 | 'mu': '-u_' + entry['name'], 68 | # aliases used by scripters 69 | 'pse': '+se_' + entry['name'], 70 | 'mse': '-se_' + entry['name'], 71 | 'sc': 'sc_' + entry['name'], 72 | # Framework internal aliases 73 | # these mirror user's end, they are used for qswitch 74 | 'pfd': '+fd_' + entry['name'], 75 | 'mfd': '-fd_' + entry['name'], 76 | # these aliases mirror scripters end, used for modifiers 77 | 'pfe': '+fe_' + entry['name'], 78 | 'mfe': '-fe_' + entry['name'], 79 | 'fc': 'fc_' + entry['name'], 80 | # this one holds the callback pointer for this entry 81 | 'fp': 'fp_' + entry['name'], 82 | # this is lastinv function for this entry 83 | 'fl': 'fl_' + entry['name'], 84 | # alias to setup lastinv 85 | 'gl': 'gl_' + entry['name'], 86 | } 87 | 88 | # export everything that is affected by modifiers in separate array 89 | if options['modifiers']: 90 | modifiables += [[pre['pfe'], pre['pse']]] 91 | modifiables += [[pre['mfe'], pre['mse']]] 92 | if options['callback'] and not is_qswitch_element: 93 | modifiables += [[pre['fc'], pre['sc']]] 94 | 95 | # some precompiled prefixes for invnext and invprev 96 | lpre = {} 97 | if options['qswitch'] and not is_qswitch_element: 98 | lpre = { 99 | 'pin': '+fd_' + entry['next'] if entry['next'] else ' ', 100 | 'min': '-fd_' + entry['next'] if entry['next'] else ' ', 101 | 'pip': '+fd_' + entry['prev'] if entry['next'] else ' ', 102 | 'mip': '-fd_' + entry['prev'] if entry['next'] else ' ', } 103 | # creating resets and default binds 104 | if options['callback']: 105 | resets += ['alias ' + pre['sc'] + ' none;'] 106 | 107 | # setting default functions some aliases or resetting them 108 | if not entry['funct']: 109 | resets += ['alias ' + pre['pse'] + ' none;'] 110 | resets += ['alias ' + pre['mse'] + ' none;'] 111 | elif re.match(r"\+.+", entry['funct']): 112 | def_funct += ['alias ' + pre['pse'] + ' "' + entry['funct'] + '";'] 113 | def_funct += ['alias ' + pre['mse'] + ' "' + 114 | mAlias(entry['funct']) + '";'] 115 | else: 116 | def_funct += ['alias ' + pre['pse'] + ' "' + entry['funct'] + '";'] 117 | resets += ['alias ' + pre['mse'] + ' none;'] 118 | 119 | # setting default binds 120 | if entry['bind']: 121 | def_binds += ['bind ' + entry['bind'] + ' ' + pre['pu']] 122 | else: 123 | def_binds += ['//bind ' + pre['pu']] 124 | 125 | # setting up some aliases for quickswitch 126 | if is_first: 127 | is_first = False 128 | if options['qswitch']: 129 | invnext_entry = entry['next'] 130 | invprev_entry = entry['prev'] 131 | 132 | if options['qswitch'] and invnext_entry == entry['name']: 133 | init += ['alias ' + gpre['pgn'] + ' ' + pre['pfd']] 134 | init += ['alias ' + gpre['mgn'] + ' ' + pre['mfd']] 135 | init += [' '] 136 | 137 | # a function to setup quickswitch 138 | if options['qswitch'] and not is_qswitch_element: 139 | # setting up lastinv after buton press 140 | 141 | gl_funct = 'alias ' + pre['gl'] + ' "'\ 142 | + ' alias ' + gpre['pgl'] + ' ' + pre['pfd'] + '; ' \ 143 | + ' alias ' + gpre['mgl'] + ' ' + pre['mfd'] + ';"' 144 | init2 += [gl_funct] 145 | 146 | fl_funct = 'alias ' + pre['fl'] + ' "'\ 147 | + ' alias ' + gpre['gl'] + ' ' + pre['gl'] + '; '\ 148 | + ' alias ' + gpre['pgn'] + ' ' + lpre['pin'] + '; ' \ 149 | + ' alias ' + gpre['mgn'] + ' ' + lpre['min'] + '; ' \ 150 | + ' alias ' + gpre['pgp'] + ' ' + lpre['pip'] + '; ' \ 151 | + ' alias ' + gpre['mgp'] + ' ' + lpre['mip'] + ';"' 152 | init2 += [fl_funct] 153 | 154 | # defaul script aliases for framework vars 155 | header += ['alias ' + pre['pfe'] + ' ' + pre['pse']] 156 | header += ['alias ' + pre['mfe'] + ' ' + pre['mse']] 157 | if options['callback']: 158 | header += ['alias ' + pre['fc'] + ' ' + pre['sc']] 159 | header += ['alias ' + pre['pu'] + ' ' + pre['pfd']] 160 | header += ['alias ' + pre['mu'] + ' ' + pre['mfd']] 161 | header += [' '] 162 | 163 | # Default button press alias 164 | palias = 'alias ' + pre['pfd'] + ' "' 165 | if preventCallbackSpam: 166 | palias += "alias %s none; " % pre['fc'] 167 | if options['callback'] and not is_qswitch_element: 168 | palias += gpre['gc'] + '; ' 169 | if preventCallbackSpam: 170 | palias += "alias %s %s; " % (pre['fc'], pre['sc']) 171 | if options['lastinv'] == entry['name']: 172 | palias += gpre['pgl'] + '; ' 173 | if options['invnext'] == entry['name']: 174 | palias += gpre['pgn'] + '; ' 175 | if options['invprev'] == entry['name']: 176 | palias += gpre['pgp'] + '; ' 177 | if options['callback'] and not is_qswitch_element: 178 | palias += 'alias ' + gpre['gc'] + ' ' + pre['fc'] + '; ' 179 | if options['qswitch'] and not is_qswitch_element: 180 | palias += gpre['gl'] + '; ' + pre['fl'] + '; ' 181 | palias += pre['pfe'] + '; ' 182 | if(entry['secondary']): 183 | palias += entry['secondary'] + '' 184 | palias += '"' 185 | text += [palias] 186 | 187 | # Default button release alias 188 | malias = 'alias ' + pre['mfd'] + ' "' 189 | if options['lastinv'] == entry['name']: 190 | malias += gpre['mgl'] + '; ' 191 | if options['invnext'] == entry['name']: 192 | malias += gpre['mgn'] + '; ' 193 | if options['invprev'] == entry['name']: 194 | malias += gpre['mgp'] + '; ' 195 | malias += pre['mfe'] + '; ' 196 | if entry['secondary'] and re.match(r"\+", entry['secondary']): 197 | tmp = mAlias(entry['secondary'].split(';')) 198 | tmp = [i + '; ' for i in tmp] 199 | tmp = ''.join(tmp) 200 | malias += tmp 201 | 202 | text += [malias + '" '] 203 | 204 | # a newline to separate each entry 205 | final = [] 206 | final += header + init + init2 + text 207 | def_binds += [' '] 208 | def_funct += [' '] 209 | return {'text': final, 'resets': resets, 'def_binds': def_binds, 210 | 'def_funct': def_funct, 'modifiables': modifiables} 211 | -------------------------------------------------------------------------------- /compiler/modifiers.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | 3 | 4 | def compileModifiers(modifiers, modifiables): 5 | # since tf2 doesn't understand very long commands, 6 | # we will chain aliases of length 10 7 | link_len = 10 8 | # main portion of the text 9 | text = [] 10 | # reset assigment 11 | resets = [] 12 | # default binds 13 | def_binds = [] 14 | 15 | text += [' '] 16 | text += ['/////////////////////////////////////////////\ 17 | ///////////////////'] 18 | text += ['///// Modifiers'] 19 | text += ['/////////////////////////////////////////////\ 20 | ///////////////////'] 21 | text += [' '] 22 | text += ['alias mod_reset none;'] 23 | 24 | # since resetting aliases to previous values 25 | # is common operation for all modifiers 26 | # it makes sense to define it only once 27 | al_index = 0 28 | fm_reset = "mod_reset; " 29 | fm_reset += "alias fm_reset " 30 | for index, entry in enumerate(modifiables): 31 | if (index % link_len) != 0: 32 | fm_reset += 'alias ' + entry[0] + ' ' + entry[1] + '; ' 33 | else: 34 | fm_reset += ' fm_reset%s;"\nalias fm_reset%s "' % (al_index, 35 | al_index) 36 | al_index += 1 37 | 38 | fm_reset += ' "' 39 | 40 | text += [fm_reset] + [' '] 41 | 42 | for modifier in modifiers: 43 | modifier_name = modifier['name'] 44 | modifier_type = modifier['type'] 45 | # precompiling prefixes 46 | pre = { 47 | # alias that contains modifier commands 48 | 'fm': "fm_mod_"+modifier_name, 49 | # script facing aliases for button presses 50 | 'pse': "+se_mod_"+modifier_name, 51 | 'mse': "-se_mod_"+modifier_name, 52 | # aliases for user binds 53 | 'pu': "+u_mod_"+modifier_name, 54 | 'mu': "-u_mod_"+modifier_name, 55 | # aliases for toggle mode 56 | 'ft': "ft_mod_"+modifier_name, 57 | 'pft': "+ft_mod_"+modifier_name, 58 | 'mft': "-ft_mod_"+modifier_name, 59 | 'set': "mod_"+modifier_name+"_set", 60 | 'reset': "mod_"+modifier_name+"_reset", 61 | } 62 | # resetting/setting values of script aliases 63 | resets += ['alias ' + pre['pse'] + ' none; '] 64 | resets += ['alias ' + pre['mse'] + ' none; '] 65 | resets += ['alias ' + pre['set'] + ' none; '] 66 | resets += ['alias ' + pre['reset'] + ' none; '] 67 | 68 | # default' binds for modifier keys 69 | def_binds += ['//bind ' + pre['pu']] 70 | # some logic for press/toggle type of modifiers 71 | if modifier_type == "press": 72 | text += ['alias %s "%s; %s;"' % 73 | (pre['pu'], pre['fm'], pre['pse'])] 74 | text += ['alias %s "fm_reset; %s;"' % (pre['mu'], pre['mse'])] 75 | elif modifier_type == "toggle": 76 | text += ['alias %s %s; ' % (pre['ft'], pre['pft'])] 77 | text += ['alias %s "%s; alias %s %s;" ' 78 | % (pre['pft'], pre['fm'], pre['ft'], pre['mft'])] 79 | text += ['alias %s "fm_reset; alias %s %s;" ' 80 | % (pre['mft'], pre['ft'], pre['pft'])] 81 | text += ['alias %s %s; ' % (pre['pu'], pre['ft'])] 82 | text += ['alias %s none; ' % pre['mu']] 83 | 84 | fm = 'alias %s "' % pre['fm'] 85 | fm += '%s; ' % pre['set'] 86 | fm += 'alias mod_reset %s; ' % pre['reset'] 87 | al_index = 0 88 | 89 | for index, entry in enumerate(modifiables): 90 | if index % link_len != 0: 91 | fm += 'alias %s %s_%s; ' % (entry[0], entry[1], modifier_name) 92 | else: 93 | fm += ' %s%s;"\nalias %s%s "' % (pre['fm'], al_index, 94 | pre['fm'], al_index) 95 | al_index += 1 96 | resets += ['alias %s_%s %s; ' % 97 | (entry[1], modifier_name, entry[1])] 98 | 99 | fm += ' "' 100 | text += [fm] + [' '] 101 | 102 | def_binds += [' '] 103 | return {'text': text, 'resets': resets, 'def_binds': def_binds} 104 | -------------------------------------------------------------------------------- /compiler/text.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | 3 | import re 4 | from compiler.util import * 5 | 6 | 7 | def stitchFiles(file_list, destination): 8 | fout = open(destination, "w") 9 | for f in file_list: 10 | fin = open(f, 'r') 11 | fout.writelines(fin.readlines()) 12 | fout.write("\n") 13 | 14 | 15 | def cleanLine(arg): 16 | m1 = re.sub(r"#.*$", '', arg) 17 | m1 = re.sub(r"^\s*", '', m1) 18 | m1 = re.sub(r"\s*$", '', m1) 19 | return m1 20 | 21 | 22 | def prepLine(arg): 23 | m1 = cleanLine(arg) 24 | m2 = re.match(r"\S+", m1) 25 | if(m2 is None): 26 | return None 27 | parts = m1.split(r":") 28 | res = [] 29 | for part in parts: 30 | clean = cleanLine(part) 31 | if len(clean) > 0: 32 | cropped = clean 33 | else: 34 | cropped = None 35 | res.append(cropped) 36 | return res 37 | 38 | 39 | def rSign(text): 40 | if(re.match(r"\+", text)): 41 | return re.sub(r"\+", "-", text) 42 | elif(re.match(r"\-", text)): 43 | return re.sub(r"\-", "+", text) 44 | else: 45 | return text 46 | 47 | 48 | def mAlias(var): 49 | if type(var) is str: 50 | return rSign(var) 51 | elif type(var) is list: 52 | res = [] 53 | for i in var: 54 | res.append(rSign(i)) 55 | return res 56 | 57 | 58 | def readGroup(lines): 59 | res = [] 60 | names = ['name', 'funct', 'bind', 'secondary', 'next', 'prev'] 61 | for line in lines: 62 | l = [] 63 | r = {} 64 | for i in range(0, len(names)): 65 | l.append(None) 66 | prepped = prepLine(line) 67 | if(prepped is None): 68 | continue 69 | arraySubst(prepped, l) 70 | for i in range(0, len(names)): 71 | r[names[i]] = l[i] 72 | res.append(r) 73 | return res 74 | 75 | 76 | def readOptions(lines): 77 | optList = {'modifiers': False, 'callback': False, 'qswitch': False, 78 | 'lastinv': None, 'invnext': None, 'invprev': None} 79 | opts = optList.keys() 80 | for line in lines: 81 | prepped = prepLine(line) 82 | if(prepped is None): 83 | continue 84 | for opt in opts: 85 | if(re.match(opt, prepped[0], re.I)): 86 | optList[opt] = qtfy(prepped[1]) 87 | break 88 | return optList 89 | 90 | 91 | def readModifiers(lines): 92 | res = [] 93 | for line in lines: 94 | prepped = prepLine(line) 95 | if(not prepped): 96 | continue 97 | res.append({'name': prepped[0], 'type': prepped[1]}) 98 | return res 99 | 100 | 101 | def writeListToFile(list, file): 102 | for line in list: 103 | file.write(line+"\n") 104 | -------------------------------------------------------------------------------- /compiler/util.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | 3 | from os.path import basename, splitext 4 | 5 | 6 | def qtfy(txt): 7 | if txt == 'no': 8 | return False 9 | if txt == 'yes': 10 | return True 11 | return txt 12 | 13 | 14 | def arraySubst(src, dest): 15 | count = range(len(src)) 16 | for i in count: 17 | dest[i] = src[i] 18 | return dest 19 | 20 | 21 | def baseNameNoExt(filename): 22 | return splitext(basename(filename))[0] 23 | -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- 1 | class CFG: 2 | 3 | # if set to yes, will disable callback when pressing a key twice 4 | preventCallbackSpam = False 5 | 6 | # source files for groups 7 | source_groups = './source/groups/' 8 | 9 | # surce file for modifiers 10 | source_modifiers = './source/modifiers.grp' 11 | 12 | # source files for prefabs 13 | source_prefabs = './source/prefabs/' 14 | 15 | # directory to store temp files 16 | temp = './temp/' 17 | 18 | # final output directory 19 | out_dir = './output/' 20 | 21 | # file to store base definitions in 22 | oFramework = out_dir + '/easyscript.cfg' 23 | 24 | # file to store reset commands in 25 | # usefull when reapplying framework 26 | oResets = out_dir + '/resets.cfg' 27 | 28 | # file to store group definitions in 29 | oGroups = out_dir + '/groups.cfg' 30 | 31 | # file to store modifiers' definitions in 32 | oModifiers = out_dir + '/modifiers.cfg' 33 | 34 | # stitch output files toghether with some prefabs 35 | # create the stitch list 36 | list_framework = [ 37 | source_prefabs + 'title.pre', 38 | source_prefabs + 'def_binds.pre', 39 | temp + 'def_binds.o', 40 | source_prefabs + 'def_funct.pre', 41 | temp + 'def_funct.o', 42 | source_prefabs + 'execs.pre', 43 | ] 44 | list_resets = [ 45 | source_prefabs + 'reset.pre', 46 | temp + 'reset.o', 47 | source_prefabs + 'unstick.pre', 48 | ] 49 | list_groups = [source_prefabs + 'groups.pre', 50 | temp + 'groups.o', 51 | source_prefabs + 'built_ins.pre'] 52 | 53 | list_modifiers = [ 54 | temp + 'modifiers.o', 55 | ] 56 | 57 | # this will tell compiler where ti write stiched output 58 | stitching_map = [ 59 | (list_framework, oFramework), 60 | (list_resets, oResets), 61 | (list_groups, oGroups), 62 | (list_modifiers, oModifiers) 63 | ] 64 | -------------------------------------------------------------------------------- /output/easyscript.cfg: -------------------------------------------------------------------------------- 1 | echo "/////////////////////////////////////////////////////////" 2 | echo "//// EASYSCRIPT ////" 3 | echo "//// by FanciestBanana ////" 4 | echo "//// LOADED ////" 5 | echo "/////////////////////////////////////////////////////////" 6 | 7 | alias none "" 8 | //////////////////////////////////////////////////////////////////// 9 | // Default binds 10 | //////////////////////////////////////////////////////////////////// 11 | 12 | //Here are some binds that cannot be substituted with aliases 13 | bind f1 lastinv; //this one is used only to close taunt menu 14 | bind g +taunt; //taunt menu uses custom rebind, therefore i could not substitute the functionality with alises 15 | 16 | //notification interaction aliases 17 | bind = cl_trigger_first_notification 18 | bind - cl_decline_first_notification 19 | 20 | //chat 21 | bind y say 22 | bind u say_team 23 | 24 | //keypad binds for ease of use 25 | bind KP_END KP_1 26 | bind KP_DOWNARROW KP_2 27 | bind KP_PGDN KP_3 28 | bind KP_LEFTARROW KP_4 29 | bind KP_5 KP_5 30 | bind KP_RIGHTARROW KP_6 31 | bind KP_HOME KP_7 32 | bind KP_UPARROW KP_8 33 | bind KP_PGUP KP_9 34 | 35 | //Automatically generated binds below 36 | bind MOUSE1 +u_attack 37 | bind MOUSE2 +u_attack2 38 | bind MOUSE3 +u_attack3 39 | 40 | //bind +u_ctx1 41 | //bind +u_ctx2 42 | //bind +u_ctx3 43 | //bind +u_ctx4 44 | //bind +u_ctx5 45 | //bind +u_ctx6 46 | //bind +u_ctx7 47 | //bind +u_ctx8 48 | 49 | //bind +u_misc1 50 | //bind +u_misc2 51 | //bind +u_misc3 52 | //bind +u_misc4 53 | //bind +u_misc5 54 | //bind +u_misc6 55 | //bind +u_misc7 56 | //bind +u_misc8 57 | 58 | bind w +u_forward 59 | bind s +u_back 60 | bind a +u_moveleft 61 | bind d +u_moveright 62 | 63 | bind space +u_jump 64 | bind ctrl +u_duck 65 | 66 | bind e +u_callmed 67 | bind v +u_voicerecord 68 | bind z +u_voicemenu_1 69 | bind x +u_voicemenu_2 70 | bind c +u_voicemenu_3 71 | bind , +u_changeclass 72 | bind . +u_changeteam 73 | bind m +u_loadout 74 | bind n +u_backpack 75 | bind l +u_dropitem 76 | bind h +u_action_slot 77 | bind i +u_showmapinfo 78 | bind f +u_inspect 79 | bind b +u_lastdisguise 80 | bind r +u_reload 81 | bind t +u_spray_logo 82 | bind tab +u_showscores 83 | bind f2 +u_quest_log 84 | bind f3 +u_askconnect 85 | bind f4 +u_ready_toggle 86 | bind f5 +u_screenshot 87 | bind f6 +u_save_replay 88 | bind f7 +u_abuse_report 89 | bind f10 +u_quit_game 90 | bind f12 +u_replay_tips 91 | bind ESCAPE +u_cancelselect 92 | bind j +u_askconnect_accept 93 | //bind +u_loadout_0 94 | //bind +u_loadout_1 95 | //bind +u_loadout_2 96 | //bind +u_loadout_3 97 | 98 | bind 1 +u_slot1 99 | bind 2 +u_slot2 100 | bind 3 +u_slot3 101 | bind 4 +u_slot4 102 | bind 5 +u_slot5 103 | bind 6 +u_slot6 104 | bind q +u_lastinv 105 | bind mwheelup +u_invnext 106 | bind mwheeldown +u_invprev 107 | 108 | //bind +u_taunt 109 | bind k +u_taunt_def 110 | //bind +u_taunt1 111 | //bind +u_taunt2 112 | //bind +u_taunt3 113 | //bind +u_taunt4 114 | //bind +u_taunt5 115 | //bind +u_taunt6 116 | //bind +u_taunt7 117 | //bind +u_taunt8 118 | 119 | //bind +u_mod_pa 120 | //bind +u_mod_pb 121 | //bind +u_mod_ta 122 | //bind +u_mod_tb 123 | 124 | 125 | //////////////////////////////////////////////////////////////////// 126 | // Default functions 127 | //////////////////////////////////////////////////////////////////// 128 | 129 | //These are useful aliases that people might want to use 130 | //Communication commands 131 | //shamelessly stolen from /u/Tvde1 132 | alias v_medic "voicemenu 0 0" 133 | alias v_thanks "voicemenu 0 1" 134 | alias v_gogogo "voicemenu 0 2" 135 | alias v_moveup "voicemenu 0 3" 136 | alias v_goleft "voicemenu 0 4" 137 | alias v_goright "voicemenu 0 5" 138 | alias v_yes "voicemenu 0 6" 139 | alias v_no "voicemenu 0 7" 140 | 141 | alias v_incoming "voicemenu 1 0" 142 | alias v_cloakedspy "voicemenu 1 1" 143 | alias v_sentryahead "voicemenu 1 2" 144 | alias v_teleporterhere "voicemenu 1 3" 145 | alias v_dispenserhere "voicemenu 1 4" 146 | alias v_sentryhere "voicemenu 1 5" 147 | alias v_activateuber "voicemenu 1 6" 148 | alias v_uberready "voicemenu 1 7" 149 | 150 | alias v_help "voicemenu 2 0" 151 | alias v_battlecry "voicemenu 2 1" 152 | alias v_cheers "voicemenu 2 2" 153 | alias v_jeers "voicemenu 2 3" 154 | alias v_positive "voicemenu 2 4" 155 | alias v_negative "voicemenu 2 5" 156 | alias v_niceshot "voicemenu 2 6" 157 | alias v_goodjob "voicemenu 2 7" 158 | 159 | //Engi build menus 160 | alias b_dispenser "build 0 0" 161 | alias b_tele_in "build 1 0" 162 | alias b_tele_out "build 1 1" 163 | alias b_sentry "build 2 0" 164 | alias b_sapper "build 3 0" //Spy can build sappers, WTF 165 | 166 | alias d_dispenser "destroy 0 0" 167 | alias d_tele_in "destroy 1 0" 168 | alias d_tele_out "destroy 1 1" 169 | alias d_sentry "destroy 2 0" 170 | //no sapper destrying, :( 171 | 172 | //Engi eurika teleport 173 | alias etp_spawn "eureka_teleport 0" 174 | alias etp_tpexit "eureka_teleport 1" 175 | 176 | //fast team join 177 | 178 | alias join_red jointeam red 179 | alias join_blu jointeam blue 180 | alias join_auto jointeam auto 181 | alias join_spec jointeam spectator 182 | 183 | //fast class join 184 | 185 | alias c_scout join_class scout 186 | alias c_soldier join_class soldier 187 | alias c_pyro join_class pyro 188 | alias c_demoman join_class demoman 189 | alias c_heavy join_class heavyweapons 190 | alias c_engineer join_class engineer 191 | alias c_medic join_class medic 192 | alias c_sniper join_class sniper 193 | alias c_spy join_class spy 194 | 195 | //spy fast disguise 196 | //enemy classes 197 | alias dg_e_scout "disguise 1 -1" 198 | alias dg_e_sniper "disguise 2 -1" 199 | alias dg_e_soldier "disguise 3 -1" 200 | alias dg_e_demoman "disguise 4 -1" 201 | alias dg_e_medic "disguise 5 -1" 202 | alias dg_e_heavy "disguise 6 -1" 203 | alias dg_e_pyro "disguise 7 -1" 204 | alias dg_e_spy "disguise 8 -1" 205 | alias dg_e_engineer "disguise 9 -1" 206 | //friendly classes 207 | alias dg_f_scout "disguise 1 -2" 208 | alias dg_f_sniper "disguise 2 -2" 209 | alias dg_f_soldier "disguise 3 -2" 210 | alias dg_f_demoman "disguise 4 -2" 211 | alias dg_f_medic "disguise 5 -2" 212 | alias dg_f_heavy "disguise 6 -2" 213 | alias dg_f_pyro "disguise 7 -2" 214 | alias dg_f_spy "disguise 8 -2" 215 | alias dg_f_engineer "disguise 9 -2" 216 | 217 | //show text on hud, stolen from /u/Tvde1 218 | con_filter_text_out 0 219 | alias showonscreen "developer 1; clear; d_separator; wait 10; message; wait 10; d_separator; con_filter_enable 1; contimes 6; con_notifytime 10; wait 440; developer 0; con_notifytime 8 ; contimes 8; con_filter_enable 0" 220 | con_filter_text_out " " 221 | alias d_separator "echo [------------------------------------------------------------]" 222 | alias message "echo No message..." 223 | 224 | //automaticly generated aliases 225 | alias +se_attack "+attack"; 226 | alias -se_attack "-attack"; 227 | alias +se_attack2 "+attack2"; 228 | alias -se_attack2 "-attack2"; 229 | alias +se_attack3 "+attack3"; 230 | alias -se_attack3 "-attack3"; 231 | 232 | 233 | 234 | alias +se_forward "+forward"; 235 | alias -se_forward "-forward"; 236 | alias +se_back "+back"; 237 | alias -se_back "-back"; 238 | alias +se_moveleft "+moveleft"; 239 | alias -se_moveleft "-moveleft"; 240 | alias +se_moveright "+moveright"; 241 | alias -se_moveright "-moveright"; 242 | 243 | alias +se_jump "+jump"; 244 | alias -se_jump "-jump"; 245 | alias +se_duck "+duck"; 246 | alias -se_duck "-duck"; 247 | 248 | alias +se_callmed "voicemenu 0 0"; 249 | alias +se_voicerecord "+voicerecord"; 250 | alias -se_voicerecord "-voicerecord"; 251 | alias +se_voicemenu_1 "voice_menu_1"; 252 | alias +se_voicemenu_2 "voice_menu_2"; 253 | alias +se_voicemenu_3 "voice_menu_3"; 254 | alias +se_changeclass "changeclass"; 255 | alias +se_changeteam "changeteam"; 256 | alias +se_loadout "open_charinfo_direct"; 257 | alias +se_backpack "open_charinfo_backpack"; 258 | alias +se_dropitem "dropitem"; 259 | alias +se_action_slot "+use_action_slot_item"; 260 | alias -se_action_slot "-use_action_slot_item"; 261 | alias +se_showmapinfo "showmapinfo"; 262 | alias +se_inspect "+inspect"; 263 | alias -se_inspect "-inspect"; 264 | alias +se_lastdisguise "lastdisguise"; 265 | alias +se_reload "+reload; +attack3"; 266 | alias -se_reload "-reload; -attack3"; 267 | alias +se_spray_logo "impulse 201"; 268 | alias +se_showscores "+showscores"; 269 | alias -se_showscores "-showscores"; 270 | alias +se_quest_log "show_quest_log"; 271 | alias +se_askconnect "askconnect_accept"; 272 | alias +se_ready_toggle "player_ready_toggle"; 273 | alias +se_screenshot "screenshot"; 274 | alias +se_save_replay "save_replay"; 275 | alias +se_abuse_report "abuse_report_queue"; 276 | alias +se_quit_game "quit prompt"; 277 | alias +se_replay_tips "replay_togglereplaytips"; 278 | alias +se_cancelselect "cancelselect"; 279 | alias +se_askconnect_accept "askconnect_accept"; 280 | alias +se_loadout_0 "load_itempreset 0"; 281 | alias +se_loadout_1 "load_itempreset 1"; 282 | alias +se_loadout_2 "load_itempreset 2"; 283 | alias +se_loadout_3 "load_itempreset 3"; 284 | 285 | alias +se_slot1 "slot1"; 286 | alias +se_slot2 "slot2"; 287 | alias +se_slot3 "slot3"; 288 | alias +se_slot4 "slot4"; 289 | alias +se_slot5 "slot5"; 290 | alias +se_slot6 "slot6"; 291 | 292 | alias +se_taunt "+taunt"; 293 | alias -se_taunt "-taunt"; 294 | alias +se_taunt_def "taunt"; 295 | alias +se_taunt1 "taunt 1"; 296 | alias +se_taunt2 "taunt 2"; 297 | alias +se_taunt3 "taunt 3"; 298 | alias +se_taunt4 "taunt 4"; 299 | alias +se_taunt5 "taunt 5"; 300 | alias +se_taunt6 "taunt 6"; 301 | alias +se_taunt7 "taunt 7"; 302 | alias +se_taunt8 "taunt 8"; 303 | 304 | 305 | exec resets 306 | exec groups 307 | exec modifiers 308 | -------------------------------------------------------------------------------- /output/groups.cfg: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////// 2 | // groups definition 3 | //////////////////////////////////////////////////////////////////// 4 | 5 | //////////////////////////////////////////////////////////////// 6 | ///// attack 7 | //////////////////////////////// //////////////////////////////// 8 | alias +fe_attack +se_attack 9 | alias -fe_attack -se_attack 10 | alias fc_attack sc_attack 11 | alias +u_attack +fd_attack 12 | alias -u_attack -fd_attack 13 | 14 | alias +fe_attack2 +se_attack2 15 | alias -fe_attack2 -se_attack2 16 | alias fc_attack2 sc_attack2 17 | alias +u_attack2 +fd_attack2 18 | alias -u_attack2 -fd_attack2 19 | 20 | alias +fe_attack3 +se_attack3 21 | alias -fe_attack3 -se_attack3 22 | alias fc_attack3 sc_attack3 23 | alias +u_attack3 +fd_attack3 24 | alias -u_attack3 -fd_attack3 25 | 26 | alias +fd_attack "gc_attack; alias gc_attack fc_attack; +fe_attack; spec_next" 27 | alias -fd_attack "-fe_attack; " 28 | alias +fd_attack2 "gc_attack; alias gc_attack fc_attack2; +fe_attack2; spec_prev" 29 | alias -fd_attack2 "-fe_attack2; " 30 | alias +fd_attack3 "gc_attack; alias gc_attack fc_attack3; +fe_attack3; " 31 | alias -fd_attack3 "-fe_attack3; " 32 | 33 | 34 | //////////////////////////////////////////////////////////////// 35 | ///// cntx 36 | //////////////////////////////// //////////////////////////////// 37 | alias +fe_ctx1 +se_ctx1 38 | alias -fe_ctx1 -se_ctx1 39 | alias fc_ctx1 sc_ctx1 40 | alias +u_ctx1 +fd_ctx1 41 | alias -u_ctx1 -fd_ctx1 42 | 43 | alias +fe_ctx2 +se_ctx2 44 | alias -fe_ctx2 -se_ctx2 45 | alias fc_ctx2 sc_ctx2 46 | alias +u_ctx2 +fd_ctx2 47 | alias -u_ctx2 -fd_ctx2 48 | 49 | alias +fe_ctx3 +se_ctx3 50 | alias -fe_ctx3 -se_ctx3 51 | alias fc_ctx3 sc_ctx3 52 | alias +u_ctx3 +fd_ctx3 53 | alias -u_ctx3 -fd_ctx3 54 | 55 | alias +fe_ctx4 +se_ctx4 56 | alias -fe_ctx4 -se_ctx4 57 | alias fc_ctx4 sc_ctx4 58 | alias +u_ctx4 +fd_ctx4 59 | alias -u_ctx4 -fd_ctx4 60 | 61 | alias +fe_ctx5 +se_ctx5 62 | alias -fe_ctx5 -se_ctx5 63 | alias fc_ctx5 sc_ctx5 64 | alias +u_ctx5 +fd_ctx5 65 | alias -u_ctx5 -fd_ctx5 66 | 67 | alias +fe_ctx6 +se_ctx6 68 | alias -fe_ctx6 -se_ctx6 69 | alias fc_ctx6 sc_ctx6 70 | alias +u_ctx6 +fd_ctx6 71 | alias -u_ctx6 -fd_ctx6 72 | 73 | alias +fe_ctx7 +se_ctx7 74 | alias -fe_ctx7 -se_ctx7 75 | alias fc_ctx7 sc_ctx7 76 | alias +u_ctx7 +fd_ctx7 77 | alias -u_ctx7 -fd_ctx7 78 | 79 | alias +fe_ctx8 +se_ctx8 80 | alias -fe_ctx8 -se_ctx8 81 | alias fc_ctx8 sc_ctx8 82 | alias +u_ctx8 +fd_ctx8 83 | alias -u_ctx8 -fd_ctx8 84 | 85 | alias +fd_ctx1 "gc_cntx; alias gc_cntx fc_ctx1; +fe_ctx1; " 86 | alias -fd_ctx1 "-fe_ctx1; " 87 | alias +fd_ctx2 "gc_cntx; alias gc_cntx fc_ctx2; +fe_ctx2; " 88 | alias -fd_ctx2 "-fe_ctx2; " 89 | alias +fd_ctx3 "gc_cntx; alias gc_cntx fc_ctx3; +fe_ctx3; " 90 | alias -fd_ctx3 "-fe_ctx3; " 91 | alias +fd_ctx4 "gc_cntx; alias gc_cntx fc_ctx4; +fe_ctx4; " 92 | alias -fd_ctx4 "-fe_ctx4; " 93 | alias +fd_ctx5 "gc_cntx; alias gc_cntx fc_ctx5; +fe_ctx5; " 94 | alias -fd_ctx5 "-fe_ctx5; " 95 | alias +fd_ctx6 "gc_cntx; alias gc_cntx fc_ctx6; +fe_ctx6; " 96 | alias -fd_ctx6 "-fe_ctx6; " 97 | alias +fd_ctx7 "gc_cntx; alias gc_cntx fc_ctx7; +fe_ctx7; " 98 | alias -fd_ctx7 "-fe_ctx7; " 99 | alias +fd_ctx8 "gc_cntx; alias gc_cntx fc_ctx8; +fe_ctx8; " 100 | alias -fd_ctx8 "-fe_ctx8; " 101 | 102 | 103 | //////////////////////////////////////////////////////////////// 104 | ///// misc 105 | //////////////////////////////// //////////////////////////////// 106 | alias +fe_misc1 +se_misc1 107 | alias -fe_misc1 -se_misc1 108 | alias +u_misc1 +fd_misc1 109 | alias -u_misc1 -fd_misc1 110 | 111 | alias +fe_misc2 +se_misc2 112 | alias -fe_misc2 -se_misc2 113 | alias +u_misc2 +fd_misc2 114 | alias -u_misc2 -fd_misc2 115 | 116 | alias +fe_misc3 +se_misc3 117 | alias -fe_misc3 -se_misc3 118 | alias +u_misc3 +fd_misc3 119 | alias -u_misc3 -fd_misc3 120 | 121 | alias +fe_misc4 +se_misc4 122 | alias -fe_misc4 -se_misc4 123 | alias +u_misc4 +fd_misc4 124 | alias -u_misc4 -fd_misc4 125 | 126 | alias +fe_misc5 +se_misc5 127 | alias -fe_misc5 -se_misc5 128 | alias +u_misc5 +fd_misc5 129 | alias -u_misc5 -fd_misc5 130 | 131 | alias +fe_misc6 +se_misc6 132 | alias -fe_misc6 -se_misc6 133 | alias +u_misc6 +fd_misc6 134 | alias -u_misc6 -fd_misc6 135 | 136 | alias +fe_misc7 +se_misc7 137 | alias -fe_misc7 -se_misc7 138 | alias +u_misc7 +fd_misc7 139 | alias -u_misc7 -fd_misc7 140 | 141 | alias +fe_misc8 +se_misc8 142 | alias -fe_misc8 -se_misc8 143 | alias +u_misc8 +fd_misc8 144 | alias -u_misc8 -fd_misc8 145 | 146 | alias +fd_misc1 "+fe_misc1; " 147 | alias -fd_misc1 "-fe_misc1; " 148 | alias +fd_misc2 "+fe_misc2; " 149 | alias -fd_misc2 "-fe_misc2; " 150 | alias +fd_misc3 "+fe_misc3; " 151 | alias -fd_misc3 "-fe_misc3; " 152 | alias +fd_misc4 "+fe_misc4; " 153 | alias -fd_misc4 "-fe_misc4; " 154 | alias +fd_misc5 "+fe_misc5; " 155 | alias -fd_misc5 "-fe_misc5; " 156 | alias +fd_misc6 "+fe_misc6; " 157 | alias -fd_misc6 "-fe_misc6; " 158 | alias +fd_misc7 "+fe_misc7; " 159 | alias -fd_misc7 "-fe_misc7; " 160 | alias +fd_misc8 "+fe_misc8; " 161 | alias -fd_misc8 "-fe_misc8; " 162 | 163 | 164 | //////////////////////////////////////////////////////////////// 165 | ///// movement 166 | //////////////////////////////// //////////////////////////////// 167 | alias +fe_forward +se_forward 168 | alias -fe_forward -se_forward 169 | alias fc_forward sc_forward 170 | alias +u_forward +fd_forward 171 | alias -u_forward -fd_forward 172 | 173 | alias +fe_back +se_back 174 | alias -fe_back -se_back 175 | alias fc_back sc_back 176 | alias +u_back +fd_back 177 | alias -u_back -fd_back 178 | 179 | alias +fe_moveleft +se_moveleft 180 | alias -fe_moveleft -se_moveleft 181 | alias fc_moveleft sc_moveleft 182 | alias +u_moveleft +fd_moveleft 183 | alias -u_moveleft -fd_moveleft 184 | 185 | alias +fe_moveright +se_moveright 186 | alias -fe_moveright -se_moveright 187 | alias fc_moveright sc_moveright 188 | alias +u_moveright +fd_moveright 189 | alias -u_moveright -fd_moveright 190 | 191 | alias +fd_forward "gc_movement; alias gc_movement fc_forward; +fe_forward; " 192 | alias -fd_forward "-fe_forward; " 193 | alias +fd_back "gc_movement; alias gc_movement fc_back; +fe_back; " 194 | alias -fd_back "-fe_back; " 195 | alias +fd_moveleft "gc_movement; alias gc_movement fc_moveleft; +fe_moveleft; " 196 | alias -fd_moveleft "-fe_moveleft; " 197 | alias +fd_moveright "gc_movement; alias gc_movement fc_moveright; +fe_moveright; " 198 | alias -fd_moveright "-fe_moveright; " 199 | 200 | 201 | //////////////////////////////////////////////////////////////// 202 | ///// movement_v 203 | //////////////////////////////// //////////////////////////////// 204 | alias +fe_jump +se_jump 205 | alias -fe_jump -se_jump 206 | alias fc_jump sc_jump 207 | alias +u_jump +fd_jump 208 | alias -u_jump -fd_jump 209 | 210 | alias +fe_duck +se_duck 211 | alias -fe_duck -se_duck 212 | alias fc_duck sc_duck 213 | alias +u_duck +fd_duck 214 | alias -u_duck -fd_duck 215 | 216 | alias +fd_jump "gc_movement_v; alias gc_movement_v fc_jump; +fe_jump; spec_mode" 217 | alias -fd_jump "-fe_jump; " 218 | alias +fd_duck "gc_movement_v; alias gc_movement_v fc_duck; +fe_duck; " 219 | alias -fd_duck "-fe_duck; " 220 | 221 | 222 | //////////////////////////////////////////////////////////////// 223 | ///// singletons 224 | //////////////////////////////// //////////////////////////////// 225 | alias +fe_callmed +se_callmed 226 | alias -fe_callmed -se_callmed 227 | alias +u_callmed +fd_callmed 228 | alias -u_callmed -fd_callmed 229 | 230 | alias +fe_voicerecord +se_voicerecord 231 | alias -fe_voicerecord -se_voicerecord 232 | alias +u_voicerecord +fd_voicerecord 233 | alias -u_voicerecord -fd_voicerecord 234 | 235 | alias +fe_voicemenu_1 +se_voicemenu_1 236 | alias -fe_voicemenu_1 -se_voicemenu_1 237 | alias +u_voicemenu_1 +fd_voicemenu_1 238 | alias -u_voicemenu_1 -fd_voicemenu_1 239 | 240 | alias +fe_voicemenu_2 +se_voicemenu_2 241 | alias -fe_voicemenu_2 -se_voicemenu_2 242 | alias +u_voicemenu_2 +fd_voicemenu_2 243 | alias -u_voicemenu_2 -fd_voicemenu_2 244 | 245 | alias +fe_voicemenu_3 +se_voicemenu_3 246 | alias -fe_voicemenu_3 -se_voicemenu_3 247 | alias +u_voicemenu_3 +fd_voicemenu_3 248 | alias -u_voicemenu_3 -fd_voicemenu_3 249 | 250 | alias +fe_changeclass +se_changeclass 251 | alias -fe_changeclass -se_changeclass 252 | alias +u_changeclass +fd_changeclass 253 | alias -u_changeclass -fd_changeclass 254 | 255 | alias +fe_changeteam +se_changeteam 256 | alias -fe_changeteam -se_changeteam 257 | alias +u_changeteam +fd_changeteam 258 | alias -u_changeteam -fd_changeteam 259 | 260 | alias +fe_loadout +se_loadout 261 | alias -fe_loadout -se_loadout 262 | alias +u_loadout +fd_loadout 263 | alias -u_loadout -fd_loadout 264 | 265 | alias +fe_backpack +se_backpack 266 | alias -fe_backpack -se_backpack 267 | alias +u_backpack +fd_backpack 268 | alias -u_backpack -fd_backpack 269 | 270 | alias +fe_dropitem +se_dropitem 271 | alias -fe_dropitem -se_dropitem 272 | alias +u_dropitem +fd_dropitem 273 | alias -u_dropitem -fd_dropitem 274 | 275 | alias +fe_action_slot +se_action_slot 276 | alias -fe_action_slot -se_action_slot 277 | alias +u_action_slot +fd_action_slot 278 | alias -u_action_slot -fd_action_slot 279 | 280 | alias +fe_showmapinfo +se_showmapinfo 281 | alias -fe_showmapinfo -se_showmapinfo 282 | alias +u_showmapinfo +fd_showmapinfo 283 | alias -u_showmapinfo -fd_showmapinfo 284 | 285 | alias +fe_inspect +se_inspect 286 | alias -fe_inspect -se_inspect 287 | alias +u_inspect +fd_inspect 288 | alias -u_inspect -fd_inspect 289 | 290 | alias +fe_lastdisguise +se_lastdisguise 291 | alias -fe_lastdisguise -se_lastdisguise 292 | alias +u_lastdisguise +fd_lastdisguise 293 | alias -u_lastdisguise -fd_lastdisguise 294 | 295 | alias +fe_reload +se_reload 296 | alias -fe_reload -se_reload 297 | alias +u_reload +fd_reload 298 | alias -u_reload -fd_reload 299 | 300 | alias +fe_spray_logo +se_spray_logo 301 | alias -fe_spray_logo -se_spray_logo 302 | alias +u_spray_logo +fd_spray_logo 303 | alias -u_spray_logo -fd_spray_logo 304 | 305 | alias +fe_showscores +se_showscores 306 | alias -fe_showscores -se_showscores 307 | alias +u_showscores +fd_showscores 308 | alias -u_showscores -fd_showscores 309 | 310 | alias +fe_quest_log +se_quest_log 311 | alias -fe_quest_log -se_quest_log 312 | alias +u_quest_log +fd_quest_log 313 | alias -u_quest_log -fd_quest_log 314 | 315 | alias +fe_askconnect +se_askconnect 316 | alias -fe_askconnect -se_askconnect 317 | alias +u_askconnect +fd_askconnect 318 | alias -u_askconnect -fd_askconnect 319 | 320 | alias +fe_ready_toggle +se_ready_toggle 321 | alias -fe_ready_toggle -se_ready_toggle 322 | alias +u_ready_toggle +fd_ready_toggle 323 | alias -u_ready_toggle -fd_ready_toggle 324 | 325 | alias +fe_screenshot +se_screenshot 326 | alias -fe_screenshot -se_screenshot 327 | alias +u_screenshot +fd_screenshot 328 | alias -u_screenshot -fd_screenshot 329 | 330 | alias +fe_save_replay +se_save_replay 331 | alias -fe_save_replay -se_save_replay 332 | alias +u_save_replay +fd_save_replay 333 | alias -u_save_replay -fd_save_replay 334 | 335 | alias +fe_abuse_report +se_abuse_report 336 | alias -fe_abuse_report -se_abuse_report 337 | alias +u_abuse_report +fd_abuse_report 338 | alias -u_abuse_report -fd_abuse_report 339 | 340 | alias +fe_quit_game +se_quit_game 341 | alias -fe_quit_game -se_quit_game 342 | alias +u_quit_game +fd_quit_game 343 | alias -u_quit_game -fd_quit_game 344 | 345 | alias +fe_replay_tips +se_replay_tips 346 | alias -fe_replay_tips -se_replay_tips 347 | alias +u_replay_tips +fd_replay_tips 348 | alias -u_replay_tips -fd_replay_tips 349 | 350 | alias +fe_cancelselect +se_cancelselect 351 | alias -fe_cancelselect -se_cancelselect 352 | alias +u_cancelselect +fd_cancelselect 353 | alias -u_cancelselect -fd_cancelselect 354 | 355 | alias +fe_askconnect_accept +se_askconnect_accept 356 | alias -fe_askconnect_accept -se_askconnect_accept 357 | alias +u_askconnect_accept +fd_askconnect_accept 358 | alias -u_askconnect_accept -fd_askconnect_accept 359 | 360 | alias +fe_loadout_0 +se_loadout_0 361 | alias -fe_loadout_0 -se_loadout_0 362 | alias +u_loadout_0 +fd_loadout_0 363 | alias -u_loadout_0 -fd_loadout_0 364 | 365 | alias +fe_loadout_1 +se_loadout_1 366 | alias -fe_loadout_1 -se_loadout_1 367 | alias +u_loadout_1 +fd_loadout_1 368 | alias -u_loadout_1 -fd_loadout_1 369 | 370 | alias +fe_loadout_2 +se_loadout_2 371 | alias -fe_loadout_2 -se_loadout_2 372 | alias +u_loadout_2 +fd_loadout_2 373 | alias -u_loadout_2 -fd_loadout_2 374 | 375 | alias +fe_loadout_3 +se_loadout_3 376 | alias -fe_loadout_3 -se_loadout_3 377 | alias +u_loadout_3 +fd_loadout_3 378 | alias -u_loadout_3 -fd_loadout_3 379 | 380 | alias +fd_callmed "+fe_callmed; " 381 | alias -fd_callmed "-fe_callmed; " 382 | alias +fd_voicerecord "+fe_voicerecord; " 383 | alias -fd_voicerecord "-fe_voicerecord; " 384 | alias +fd_voicemenu_1 "+fe_voicemenu_1; " 385 | alias -fd_voicemenu_1 "-fe_voicemenu_1; " 386 | alias +fd_voicemenu_2 "+fe_voicemenu_2; " 387 | alias -fd_voicemenu_2 "-fe_voicemenu_2; " 388 | alias +fd_voicemenu_3 "+fe_voicemenu_3; " 389 | alias -fd_voicemenu_3 "-fe_voicemenu_3; " 390 | alias +fd_changeclass "+fe_changeclass; " 391 | alias -fd_changeclass "-fe_changeclass; " 392 | alias +fd_changeteam "+fe_changeteam; " 393 | alias -fd_changeteam "-fe_changeteam; " 394 | alias +fd_loadout "+fe_loadout; " 395 | alias -fd_loadout "-fe_loadout; " 396 | alias +fd_backpack "+fe_backpack; " 397 | alias -fd_backpack "-fe_backpack; " 398 | alias +fd_dropitem "+fe_dropitem; " 399 | alias -fd_dropitem "-fe_dropitem; " 400 | alias +fd_action_slot "+fe_action_slot; " 401 | alias -fd_action_slot "-fe_action_slot; " 402 | alias +fd_showmapinfo "+fe_showmapinfo; " 403 | alias -fd_showmapinfo "-fe_showmapinfo; " 404 | alias +fd_inspect "+fe_inspect; " 405 | alias -fd_inspect "-fe_inspect; " 406 | alias +fd_lastdisguise "+fe_lastdisguise; " 407 | alias -fd_lastdisguise "-fe_lastdisguise; " 408 | alias +fd_reload "+fe_reload; " 409 | alias -fd_reload "-fe_reload; " 410 | alias +fd_spray_logo "+fe_spray_logo; " 411 | alias -fd_spray_logo "-fe_spray_logo; " 412 | alias +fd_showscores "+fe_showscores; " 413 | alias -fd_showscores "-fe_showscores; " 414 | alias +fd_quest_log "+fe_quest_log; " 415 | alias -fd_quest_log "-fe_quest_log; " 416 | alias +fd_askconnect "+fe_askconnect; " 417 | alias -fd_askconnect "-fe_askconnect; " 418 | alias +fd_ready_toggle "+fe_ready_toggle; " 419 | alias -fd_ready_toggle "-fe_ready_toggle; " 420 | alias +fd_screenshot "+fe_screenshot; " 421 | alias -fd_screenshot "-fe_screenshot; " 422 | alias +fd_save_replay "+fe_save_replay; " 423 | alias -fd_save_replay "-fe_save_replay; " 424 | alias +fd_abuse_report "+fe_abuse_report; " 425 | alias -fd_abuse_report "-fe_abuse_report; " 426 | alias +fd_quit_game "+fe_quit_game; " 427 | alias -fd_quit_game "-fe_quit_game; " 428 | alias +fd_replay_tips "+fe_replay_tips; " 429 | alias -fd_replay_tips "-fe_replay_tips; " 430 | alias +fd_cancelselect "+fe_cancelselect; " 431 | alias -fd_cancelselect "-fe_cancelselect; " 432 | alias +fd_askconnect_accept "+fe_askconnect_accept; " 433 | alias -fd_askconnect_accept "-fe_askconnect_accept; " 434 | alias +fd_loadout_0 "+fe_loadout_0; " 435 | alias -fd_loadout_0 "-fe_loadout_0; " 436 | alias +fd_loadout_1 "+fe_loadout_1; " 437 | alias -fd_loadout_1 "-fe_loadout_1; " 438 | alias +fd_loadout_2 "+fe_loadout_2; " 439 | alias -fd_loadout_2 "-fe_loadout_2; " 440 | alias +fd_loadout_3 "+fe_loadout_3; " 441 | alias -fd_loadout_3 "-fe_loadout_3; " 442 | 443 | 444 | //////////////////////////////////////////////////////////////// 445 | ///// slot 446 | //////////////////////////////// //////////////////////////////// 447 | alias +fe_slot1 +se_slot1 448 | alias -fe_slot1 -se_slot1 449 | alias fc_slot1 sc_slot1 450 | alias +u_slot1 +fd_slot1 451 | alias -u_slot1 -fd_slot1 452 | 453 | alias +fe_slot2 +se_slot2 454 | alias -fe_slot2 -se_slot2 455 | alias fc_slot2 sc_slot2 456 | alias +u_slot2 +fd_slot2 457 | alias -u_slot2 -fd_slot2 458 | 459 | alias +fe_slot3 +se_slot3 460 | alias -fe_slot3 -se_slot3 461 | alias fc_slot3 sc_slot3 462 | alias +u_slot3 +fd_slot3 463 | alias -u_slot3 -fd_slot3 464 | 465 | alias +fe_slot4 +se_slot4 466 | alias -fe_slot4 -se_slot4 467 | alias fc_slot4 sc_slot4 468 | alias +u_slot4 +fd_slot4 469 | alias -u_slot4 -fd_slot4 470 | 471 | alias +fe_slot5 +se_slot5 472 | alias -fe_slot5 -se_slot5 473 | alias fc_slot5 sc_slot5 474 | alias +u_slot5 +fd_slot5 475 | alias -u_slot5 -fd_slot5 476 | 477 | alias +fe_slot6 +se_slot6 478 | alias -fe_slot6 -se_slot6 479 | alias fc_slot6 sc_slot6 480 | alias +u_slot6 +fd_slot6 481 | alias -u_slot6 -fd_slot6 482 | 483 | alias +fe_lastinv +se_lastinv 484 | alias -fe_lastinv -se_lastinv 485 | alias fc_lastinv sc_lastinv 486 | alias +u_lastinv +fd_lastinv 487 | alias -u_lastinv -fd_lastinv 488 | 489 | alias +fe_invnext +se_invnext 490 | alias -fe_invnext -se_invnext 491 | alias fc_invnext sc_invnext 492 | alias +u_invnext +fd_invnext 493 | alias -u_invnext -fd_invnext 494 | 495 | alias +fe_invprev +se_invprev 496 | alias -fe_invprev -se_invprev 497 | alias fc_invprev sc_invprev 498 | alias +u_invprev +fd_invprev 499 | alias -u_invprev -fd_invprev 500 | 501 | alias +gn_slot +fd_slot2 502 | alias -gn_slot -fd_slot2 503 | 504 | alias gl_slot1 " alias +gl_slot +fd_slot1; alias -gl_slot -fd_slot1;" 505 | alias fl_slot1 " alias gl_slot gl_slot1; alias +gn_slot +fd_slot2; alias -gn_slot -fd_slot2; alias +gp_slot +fd_slot3; alias -gp_slot -fd_slot3;" 506 | alias gl_slot2 " alias +gl_slot +fd_slot2; alias -gl_slot -fd_slot2;" 507 | alias fl_slot2 " alias gl_slot gl_slot2; alias +gn_slot +fd_slot3; alias -gn_slot -fd_slot3; alias +gp_slot +fd_slot1; alias -gp_slot -fd_slot1;" 508 | alias gl_slot3 " alias +gl_slot +fd_slot3; alias -gl_slot -fd_slot3;" 509 | alias fl_slot3 " alias gl_slot gl_slot3; alias +gn_slot +fd_slot1; alias -gn_slot -fd_slot1; alias +gp_slot +fd_slot2; alias -gp_slot -fd_slot2;" 510 | alias gl_slot4 " alias +gl_slot +fd_slot4; alias -gl_slot -fd_slot4;" 511 | alias fl_slot4 " alias gl_slot gl_slot4; alias +gn_slot +fd_slot1; alias -gn_slot -fd_slot1; alias +gp_slot +fd_slot3; alias -gp_slot -fd_slot3;" 512 | alias gl_slot5 " alias +gl_slot +fd_slot5; alias -gl_slot -fd_slot5;" 513 | alias fl_slot5 " alias gl_slot gl_slot5; alias +gn_slot +fd_slot1; alias -gn_slot -fd_slot1; alias +gp_slot +fd_slot3; alias -gp_slot -fd_slot3;" 514 | alias gl_slot6 " alias +gl_slot +fd_slot6; alias -gl_slot -fd_slot6;" 515 | alias fl_slot6 " alias gl_slot gl_slot6; alias +gn_slot +fd_slot1; alias -gn_slot -fd_slot1; alias +gp_slot +fd_slot3; alias -gp_slot -fd_slot3;" 516 | alias +fd_slot1 "gc_slot; alias gc_slot fc_slot1; gl_slot; fl_slot1; +fe_slot1; " 517 | alias -fd_slot1 "-fe_slot1; " 518 | alias +fd_slot2 "gc_slot; alias gc_slot fc_slot2; gl_slot; fl_slot2; +fe_slot2; " 519 | alias -fd_slot2 "-fe_slot2; " 520 | alias +fd_slot3 "gc_slot; alias gc_slot fc_slot3; gl_slot; fl_slot3; +fe_slot3; " 521 | alias -fd_slot3 "-fe_slot3; " 522 | alias +fd_slot4 "gc_slot; alias gc_slot fc_slot4; gl_slot; fl_slot4; +fe_slot4; " 523 | alias -fd_slot4 "-fe_slot4; " 524 | alias +fd_slot5 "gc_slot; alias gc_slot fc_slot5; gl_slot; fl_slot5; +fe_slot5; " 525 | alias -fd_slot5 "-fe_slot5; " 526 | alias +fd_slot6 "gc_slot; alias gc_slot fc_slot6; gl_slot; fl_slot6; +fe_slot6; " 527 | alias -fd_slot6 "-fe_slot6; " 528 | alias +fd_lastinv "+gl_slot; +fe_lastinv; " 529 | alias -fd_lastinv "-gl_slot; -fe_lastinv; " 530 | alias +fd_invnext "+gn_slot; +fe_invnext; " 531 | alias -fd_invnext "-gn_slot; -fe_invnext; " 532 | alias +fd_invprev "+gp_slot; +fe_invprev; " 533 | alias -fd_invprev "-gp_slot; -fe_invprev; " 534 | 535 | 536 | //////////////////////////////////////////////////////////////// 537 | ///// taunt 538 | //////////////////////////////// //////////////////////////////// 539 | alias +fe_taunt +se_taunt 540 | alias -fe_taunt -se_taunt 541 | alias +u_taunt +fd_taunt 542 | alias -u_taunt -fd_taunt 543 | 544 | alias +fe_taunt_def +se_taunt_def 545 | alias -fe_taunt_def -se_taunt_def 546 | alias +u_taunt_def +fd_taunt_def 547 | alias -u_taunt_def -fd_taunt_def 548 | 549 | alias +fe_taunt1 +se_taunt1 550 | alias -fe_taunt1 -se_taunt1 551 | alias +u_taunt1 +fd_taunt1 552 | alias -u_taunt1 -fd_taunt1 553 | 554 | alias +fe_taunt2 +se_taunt2 555 | alias -fe_taunt2 -se_taunt2 556 | alias +u_taunt2 +fd_taunt2 557 | alias -u_taunt2 -fd_taunt2 558 | 559 | alias +fe_taunt3 +se_taunt3 560 | alias -fe_taunt3 -se_taunt3 561 | alias +u_taunt3 +fd_taunt3 562 | alias -u_taunt3 -fd_taunt3 563 | 564 | alias +fe_taunt4 +se_taunt4 565 | alias -fe_taunt4 -se_taunt4 566 | alias +u_taunt4 +fd_taunt4 567 | alias -u_taunt4 -fd_taunt4 568 | 569 | alias +fe_taunt5 +se_taunt5 570 | alias -fe_taunt5 -se_taunt5 571 | alias +u_taunt5 +fd_taunt5 572 | alias -u_taunt5 -fd_taunt5 573 | 574 | alias +fe_taunt6 +se_taunt6 575 | alias -fe_taunt6 -se_taunt6 576 | alias +u_taunt6 +fd_taunt6 577 | alias -u_taunt6 -fd_taunt6 578 | 579 | alias +fe_taunt7 +se_taunt7 580 | alias -fe_taunt7 -se_taunt7 581 | alias +u_taunt7 +fd_taunt7 582 | alias -u_taunt7 -fd_taunt7 583 | 584 | alias +fe_taunt8 +se_taunt8 585 | alias -fe_taunt8 -se_taunt8 586 | alias +u_taunt8 +fd_taunt8 587 | alias -u_taunt8 -fd_taunt8 588 | 589 | alias +fd_taunt "+fe_taunt; " 590 | alias -fd_taunt "-fe_taunt; " 591 | alias +fd_taunt_def "+fe_taunt_def; " 592 | alias -fd_taunt_def "-fe_taunt_def; " 593 | alias +fd_taunt1 "+fe_taunt1; " 594 | alias -fd_taunt1 "-fe_taunt1; " 595 | alias +fd_taunt2 "+fe_taunt2; " 596 | alias -fd_taunt2 "-fe_taunt2; " 597 | alias +fd_taunt3 "+fe_taunt3; " 598 | alias -fd_taunt3 "-fe_taunt3; " 599 | alias +fd_taunt4 "+fe_taunt4; " 600 | alias -fd_taunt4 "-fe_taunt4; " 601 | alias +fd_taunt5 "+fe_taunt5; " 602 | alias -fd_taunt5 "-fe_taunt5; " 603 | alias +fd_taunt6 "+fe_taunt6; " 604 | alias -fd_taunt6 "-fe_taunt6; " 605 | alias +fd_taunt7 "+fe_taunt7; " 606 | alias -fd_taunt7 "-fe_taunt7; " 607 | alias +fd_taunt8 "+fe_taunt8; " 608 | alias -fd_taunt8 "-fe_taunt8; " 609 | 610 | 611 | //Built in scripts are going here 612 | //the famous null-canceling movement script 613 | 614 | alias +u_forward "-fd_back;+fd_forward;alias checkfwd +fd_forward" 615 | alias +u_back "-fd_forward;+fd_back;alias checkback +fd_back" 616 | alias +u_moveleft "-fd_moveright;+fd_moveleft;alias checkleft +fd_moveleft" 617 | alias +u_moveright "-fd_moveleft;+fd_moveright;alias checkright +fd_moveright" 618 | alias -u_forward "-fd_forward;checkback;alias checkfwd none" 619 | alias -u_back "-fd_back;checkfwd;alias checkback none" 620 | alias -u_moveleft "-fd_moveleft;checkright;alias checkleft none" 621 | alias -u_moveright "-fd_moveright;checkleft;alias checkright none" 622 | alias checkfwd none 623 | alias checkback none 624 | alias checkleft none 625 | alias checkright none 626 | alias none "" 627 | -------------------------------------------------------------------------------- /output/modifiers.cfg: -------------------------------------------------------------------------------- 1 | 2 | ///////////////////////////////////////////// /////////////////// 3 | ///// Modifiers 4 | ///////////////////////////////////////////// /////////////////// 5 | 6 | alias mod_reset none; 7 | mod_reset; alias fm_reset fm_reset0;" 8 | alias fm_reset0 "alias -fe_attack -se_attack; alias fc_attack sc_attack; alias +fe_attack2 +se_attack2; alias -fe_attack2 -se_attack2; alias fc_attack2 sc_attack2; alias +fe_attack3 +se_attack3; alias -fe_attack3 -se_attack3; alias fc_attack3 sc_attack3; alias +fe_ctx1 +se_ctx1; fm_reset1;" 9 | alias fm_reset1 "alias fc_ctx1 sc_ctx1; alias +fe_ctx2 +se_ctx2; alias -fe_ctx2 -se_ctx2; alias fc_ctx2 sc_ctx2; alias +fe_ctx3 +se_ctx3; alias -fe_ctx3 -se_ctx3; alias fc_ctx3 sc_ctx3; alias +fe_ctx4 +se_ctx4; alias -fe_ctx4 -se_ctx4; fm_reset2;" 10 | alias fm_reset2 "alias +fe_ctx5 +se_ctx5; alias -fe_ctx5 -se_ctx5; alias fc_ctx5 sc_ctx5; alias +fe_ctx6 +se_ctx6; alias -fe_ctx6 -se_ctx6; alias fc_ctx6 sc_ctx6; alias +fe_ctx7 +se_ctx7; alias -fe_ctx7 -se_ctx7; alias fc_ctx7 sc_ctx7; fm_reset3;" 11 | alias fm_reset3 "alias -fe_ctx8 -se_ctx8; alias fc_ctx8 sc_ctx8; alias +fe_misc1 +se_misc1; alias -fe_misc1 -se_misc1; alias +fe_misc2 +se_misc2; alias -fe_misc2 -se_misc2; alias +fe_misc3 +se_misc3; alias -fe_misc3 -se_misc3; alias +fe_misc4 +se_misc4; fm_reset4;" 12 | alias fm_reset4 "alias +fe_misc5 +se_misc5; alias -fe_misc5 -se_misc5; alias +fe_misc6 +se_misc6; alias -fe_misc6 -se_misc6; alias +fe_misc7 +se_misc7; alias -fe_misc7 -se_misc7; alias +fe_misc8 +se_misc8; alias -fe_misc8 -se_misc8; alias +fe_forward +se_forward; fm_reset5;" 13 | alias fm_reset5 "alias fc_forward sc_forward; alias +fe_back +se_back; alias -fe_back -se_back; alias fc_back sc_back; alias +fe_moveleft +se_moveleft; alias -fe_moveleft -se_moveleft; alias fc_moveleft sc_moveleft; alias +fe_moveright +se_moveright; alias -fe_moveright -se_moveright; fm_reset6;" 14 | alias fm_reset6 "alias +fe_jump +se_jump; alias -fe_jump -se_jump; alias fc_jump sc_jump; alias +fe_duck +se_duck; alias -fe_duck -se_duck; alias fc_duck sc_duck; alias +fe_callmed +se_callmed; alias -fe_callmed -se_callmed; alias +fe_voicerecord +se_voicerecord; fm_reset7;" 15 | alias fm_reset7 "alias +fe_voicemenu_1 +se_voicemenu_1; alias -fe_voicemenu_1 -se_voicemenu_1; alias +fe_voicemenu_2 +se_voicemenu_2; alias -fe_voicemenu_2 -se_voicemenu_2; alias +fe_voicemenu_3 +se_voicemenu_3; alias -fe_voicemenu_3 -se_voicemenu_3; alias +fe_changeclass +se_changeclass; alias -fe_changeclass -se_changeclass; alias +fe_changeteam +se_changeteam; fm_reset8;" 16 | alias fm_reset8 "alias +fe_loadout +se_loadout; alias -fe_loadout -se_loadout; alias +fe_backpack +se_backpack; alias -fe_backpack -se_backpack; alias +fe_dropitem +se_dropitem; alias -fe_dropitem -se_dropitem; alias +fe_action_slot +se_action_slot; alias -fe_action_slot -se_action_slot; alias +fe_showmapinfo +se_showmapinfo; fm_reset9;" 17 | alias fm_reset9 "alias +fe_inspect +se_inspect; alias -fe_inspect -se_inspect; alias +fe_lastdisguise +se_lastdisguise; alias -fe_lastdisguise -se_lastdisguise; alias +fe_reload +se_reload; alias -fe_reload -se_reload; alias +fe_spray_logo +se_spray_logo; alias -fe_spray_logo -se_spray_logo; alias +fe_showscores +se_showscores; fm_reset10;" 18 | alias fm_reset10 "alias +fe_quest_log +se_quest_log; alias -fe_quest_log -se_quest_log; alias +fe_askconnect +se_askconnect; alias -fe_askconnect -se_askconnect; alias +fe_ready_toggle +se_ready_toggle; alias -fe_ready_toggle -se_ready_toggle; alias +fe_screenshot +se_screenshot; alias -fe_screenshot -se_screenshot; alias +fe_save_replay +se_save_replay; fm_reset11;" 19 | alias fm_reset11 "alias +fe_abuse_report +se_abuse_report; alias -fe_abuse_report -se_abuse_report; alias +fe_quit_game +se_quit_game; alias -fe_quit_game -se_quit_game; alias +fe_replay_tips +se_replay_tips; alias -fe_replay_tips -se_replay_tips; alias +fe_cancelselect +se_cancelselect; alias -fe_cancelselect -se_cancelselect; alias +fe_askconnect_accept +se_askconnect_accept; fm_reset12;" 20 | alias fm_reset12 "alias +fe_loadout_0 +se_loadout_0; alias -fe_loadout_0 -se_loadout_0; alias +fe_loadout_1 +se_loadout_1; alias -fe_loadout_1 -se_loadout_1; alias +fe_loadout_2 +se_loadout_2; alias -fe_loadout_2 -se_loadout_2; alias +fe_loadout_3 +se_loadout_3; alias -fe_loadout_3 -se_loadout_3; alias +fe_slot1 +se_slot1; fm_reset13;" 21 | alias fm_reset13 "alias fc_slot1 sc_slot1; alias +fe_slot2 +se_slot2; alias -fe_slot2 -se_slot2; alias fc_slot2 sc_slot2; alias +fe_slot3 +se_slot3; alias -fe_slot3 -se_slot3; alias fc_slot3 sc_slot3; alias +fe_slot4 +se_slot4; alias -fe_slot4 -se_slot4; fm_reset14;" 22 | alias fm_reset14 "alias +fe_slot5 +se_slot5; alias -fe_slot5 -se_slot5; alias fc_slot5 sc_slot5; alias +fe_slot6 +se_slot6; alias -fe_slot6 -se_slot6; alias fc_slot6 sc_slot6; alias +fe_lastinv +se_lastinv; alias -fe_lastinv -se_lastinv; alias +fe_invnext +se_invnext; fm_reset15;" 23 | alias fm_reset15 "alias +fe_invprev +se_invprev; alias -fe_invprev -se_invprev; " 24 | 25 | alias +u_mod_pa "fm_mod_pa; +se_mod_pa;" 26 | alias -u_mod_pa "fm_reset; -se_mod_pa;" 27 | alias fm_mod_pa "mod_pa_set; alias mod_reset mod_pa_reset; fm_mod_pa0;" 28 | alias fm_mod_pa0 "alias -fe_attack -se_attack_pa; alias fc_attack sc_attack_pa; alias +fe_attack2 +se_attack2_pa; alias -fe_attack2 -se_attack2_pa; alias fc_attack2 sc_attack2_pa; alias +fe_attack3 +se_attack3_pa; alias -fe_attack3 -se_attack3_pa; alias fc_attack3 sc_attack3_pa; alias +fe_ctx1 +se_ctx1_pa; fm_mod_pa1;" 29 | alias fm_mod_pa1 "alias fc_ctx1 sc_ctx1_pa; alias +fe_ctx2 +se_ctx2_pa; alias -fe_ctx2 -se_ctx2_pa; alias fc_ctx2 sc_ctx2_pa; alias +fe_ctx3 +se_ctx3_pa; alias -fe_ctx3 -se_ctx3_pa; alias fc_ctx3 sc_ctx3_pa; alias +fe_ctx4 +se_ctx4_pa; alias -fe_ctx4 -se_ctx4_pa; fm_mod_pa2;" 30 | alias fm_mod_pa2 "alias +fe_ctx5 +se_ctx5_pa; alias -fe_ctx5 -se_ctx5_pa; alias fc_ctx5 sc_ctx5_pa; alias +fe_ctx6 +se_ctx6_pa; alias -fe_ctx6 -se_ctx6_pa; alias fc_ctx6 sc_ctx6_pa; alias +fe_ctx7 +se_ctx7_pa; alias -fe_ctx7 -se_ctx7_pa; alias fc_ctx7 sc_ctx7_pa; fm_mod_pa3;" 31 | alias fm_mod_pa3 "alias -fe_ctx8 -se_ctx8_pa; alias fc_ctx8 sc_ctx8_pa; alias +fe_misc1 +se_misc1_pa; alias -fe_misc1 -se_misc1_pa; alias +fe_misc2 +se_misc2_pa; alias -fe_misc2 -se_misc2_pa; alias +fe_misc3 +se_misc3_pa; alias -fe_misc3 -se_misc3_pa; alias +fe_misc4 +se_misc4_pa; fm_mod_pa4;" 32 | alias fm_mod_pa4 "alias +fe_misc5 +se_misc5_pa; alias -fe_misc5 -se_misc5_pa; alias +fe_misc6 +se_misc6_pa; alias -fe_misc6 -se_misc6_pa; alias +fe_misc7 +se_misc7_pa; alias -fe_misc7 -se_misc7_pa; alias +fe_misc8 +se_misc8_pa; alias -fe_misc8 -se_misc8_pa; alias +fe_forward +se_forward_pa; fm_mod_pa5;" 33 | alias fm_mod_pa5 "alias fc_forward sc_forward_pa; alias +fe_back +se_back_pa; alias -fe_back -se_back_pa; alias fc_back sc_back_pa; alias +fe_moveleft +se_moveleft_pa; alias -fe_moveleft -se_moveleft_pa; alias fc_moveleft sc_moveleft_pa; alias +fe_moveright +se_moveright_pa; alias -fe_moveright -se_moveright_pa; fm_mod_pa6;" 34 | alias fm_mod_pa6 "alias +fe_jump +se_jump_pa; alias -fe_jump -se_jump_pa; alias fc_jump sc_jump_pa; alias +fe_duck +se_duck_pa; alias -fe_duck -se_duck_pa; alias fc_duck sc_duck_pa; alias +fe_callmed +se_callmed_pa; alias -fe_callmed -se_callmed_pa; alias +fe_voicerecord +se_voicerecord_pa; fm_mod_pa7;" 35 | alias fm_mod_pa7 "alias +fe_voicemenu_1 +se_voicemenu_1_pa; alias -fe_voicemenu_1 -se_voicemenu_1_pa; alias +fe_voicemenu_2 +se_voicemenu_2_pa; alias -fe_voicemenu_2 -se_voicemenu_2_pa; alias +fe_voicemenu_3 +se_voicemenu_3_pa; alias -fe_voicemenu_3 -se_voicemenu_3_pa; alias +fe_changeclass +se_changeclass_pa; alias -fe_changeclass -se_changeclass_pa; alias +fe_changeteam +se_changeteam_pa; fm_mod_pa8;" 36 | alias fm_mod_pa8 "alias +fe_loadout +se_loadout_pa; alias -fe_loadout -se_loadout_pa; alias +fe_backpack +se_backpack_pa; alias -fe_backpack -se_backpack_pa; alias +fe_dropitem +se_dropitem_pa; alias -fe_dropitem -se_dropitem_pa; alias +fe_action_slot +se_action_slot_pa; alias -fe_action_slot -se_action_slot_pa; alias +fe_showmapinfo +se_showmapinfo_pa; fm_mod_pa9;" 37 | alias fm_mod_pa9 "alias +fe_inspect +se_inspect_pa; alias -fe_inspect -se_inspect_pa; alias +fe_lastdisguise +se_lastdisguise_pa; alias -fe_lastdisguise -se_lastdisguise_pa; alias +fe_reload +se_reload_pa; alias -fe_reload -se_reload_pa; alias +fe_spray_logo +se_spray_logo_pa; alias -fe_spray_logo -se_spray_logo_pa; alias +fe_showscores +se_showscores_pa; fm_mod_pa10;" 38 | alias fm_mod_pa10 "alias +fe_quest_log +se_quest_log_pa; alias -fe_quest_log -se_quest_log_pa; alias +fe_askconnect +se_askconnect_pa; alias -fe_askconnect -se_askconnect_pa; alias +fe_ready_toggle +se_ready_toggle_pa; alias -fe_ready_toggle -se_ready_toggle_pa; alias +fe_screenshot +se_screenshot_pa; alias -fe_screenshot -se_screenshot_pa; alias +fe_save_replay +se_save_replay_pa; fm_mod_pa11;" 39 | alias fm_mod_pa11 "alias +fe_abuse_report +se_abuse_report_pa; alias -fe_abuse_report -se_abuse_report_pa; alias +fe_quit_game +se_quit_game_pa; alias -fe_quit_game -se_quit_game_pa; alias +fe_replay_tips +se_replay_tips_pa; alias -fe_replay_tips -se_replay_tips_pa; alias +fe_cancelselect +se_cancelselect_pa; alias -fe_cancelselect -se_cancelselect_pa; alias +fe_askconnect_accept +se_askconnect_accept_pa; fm_mod_pa12;" 40 | alias fm_mod_pa12 "alias +fe_loadout_0 +se_loadout_0_pa; alias -fe_loadout_0 -se_loadout_0_pa; alias +fe_loadout_1 +se_loadout_1_pa; alias -fe_loadout_1 -se_loadout_1_pa; alias +fe_loadout_2 +se_loadout_2_pa; alias -fe_loadout_2 -se_loadout_2_pa; alias +fe_loadout_3 +se_loadout_3_pa; alias -fe_loadout_3 -se_loadout_3_pa; alias +fe_slot1 +se_slot1_pa; fm_mod_pa13;" 41 | alias fm_mod_pa13 "alias fc_slot1 sc_slot1_pa; alias +fe_slot2 +se_slot2_pa; alias -fe_slot2 -se_slot2_pa; alias fc_slot2 sc_slot2_pa; alias +fe_slot3 +se_slot3_pa; alias -fe_slot3 -se_slot3_pa; alias fc_slot3 sc_slot3_pa; alias +fe_slot4 +se_slot4_pa; alias -fe_slot4 -se_slot4_pa; fm_mod_pa14;" 42 | alias fm_mod_pa14 "alias +fe_slot5 +se_slot5_pa; alias -fe_slot5 -se_slot5_pa; alias fc_slot5 sc_slot5_pa; alias +fe_slot6 +se_slot6_pa; alias -fe_slot6 -se_slot6_pa; alias fc_slot6 sc_slot6_pa; alias +fe_lastinv +se_lastinv_pa; alias -fe_lastinv -se_lastinv_pa; alias +fe_invnext +se_invnext_pa; fm_mod_pa15;" 43 | alias fm_mod_pa15 "alias +fe_invprev +se_invprev_pa; alias -fe_invprev -se_invprev_pa; " 44 | 45 | alias +u_mod_pb "fm_mod_pb; +se_mod_pb;" 46 | alias -u_mod_pb "fm_reset; -se_mod_pb;" 47 | alias fm_mod_pb "mod_pb_set; alias mod_reset mod_pb_reset; fm_mod_pb0;" 48 | alias fm_mod_pb0 "alias -fe_attack -se_attack_pb; alias fc_attack sc_attack_pb; alias +fe_attack2 +se_attack2_pb; alias -fe_attack2 -se_attack2_pb; alias fc_attack2 sc_attack2_pb; alias +fe_attack3 +se_attack3_pb; alias -fe_attack3 -se_attack3_pb; alias fc_attack3 sc_attack3_pb; alias +fe_ctx1 +se_ctx1_pb; fm_mod_pb1;" 49 | alias fm_mod_pb1 "alias fc_ctx1 sc_ctx1_pb; alias +fe_ctx2 +se_ctx2_pb; alias -fe_ctx2 -se_ctx2_pb; alias fc_ctx2 sc_ctx2_pb; alias +fe_ctx3 +se_ctx3_pb; alias -fe_ctx3 -se_ctx3_pb; alias fc_ctx3 sc_ctx3_pb; alias +fe_ctx4 +se_ctx4_pb; alias -fe_ctx4 -se_ctx4_pb; fm_mod_pb2;" 50 | alias fm_mod_pb2 "alias +fe_ctx5 +se_ctx5_pb; alias -fe_ctx5 -se_ctx5_pb; alias fc_ctx5 sc_ctx5_pb; alias +fe_ctx6 +se_ctx6_pb; alias -fe_ctx6 -se_ctx6_pb; alias fc_ctx6 sc_ctx6_pb; alias +fe_ctx7 +se_ctx7_pb; alias -fe_ctx7 -se_ctx7_pb; alias fc_ctx7 sc_ctx7_pb; fm_mod_pb3;" 51 | alias fm_mod_pb3 "alias -fe_ctx8 -se_ctx8_pb; alias fc_ctx8 sc_ctx8_pb; alias +fe_misc1 +se_misc1_pb; alias -fe_misc1 -se_misc1_pb; alias +fe_misc2 +se_misc2_pb; alias -fe_misc2 -se_misc2_pb; alias +fe_misc3 +se_misc3_pb; alias -fe_misc3 -se_misc3_pb; alias +fe_misc4 +se_misc4_pb; fm_mod_pb4;" 52 | alias fm_mod_pb4 "alias +fe_misc5 +se_misc5_pb; alias -fe_misc5 -se_misc5_pb; alias +fe_misc6 +se_misc6_pb; alias -fe_misc6 -se_misc6_pb; alias +fe_misc7 +se_misc7_pb; alias -fe_misc7 -se_misc7_pb; alias +fe_misc8 +se_misc8_pb; alias -fe_misc8 -se_misc8_pb; alias +fe_forward +se_forward_pb; fm_mod_pb5;" 53 | alias fm_mod_pb5 "alias fc_forward sc_forward_pb; alias +fe_back +se_back_pb; alias -fe_back -se_back_pb; alias fc_back sc_back_pb; alias +fe_moveleft +se_moveleft_pb; alias -fe_moveleft -se_moveleft_pb; alias fc_moveleft sc_moveleft_pb; alias +fe_moveright +se_moveright_pb; alias -fe_moveright -se_moveright_pb; fm_mod_pb6;" 54 | alias fm_mod_pb6 "alias +fe_jump +se_jump_pb; alias -fe_jump -se_jump_pb; alias fc_jump sc_jump_pb; alias +fe_duck +se_duck_pb; alias -fe_duck -se_duck_pb; alias fc_duck sc_duck_pb; alias +fe_callmed +se_callmed_pb; alias -fe_callmed -se_callmed_pb; alias +fe_voicerecord +se_voicerecord_pb; fm_mod_pb7;" 55 | alias fm_mod_pb7 "alias +fe_voicemenu_1 +se_voicemenu_1_pb; alias -fe_voicemenu_1 -se_voicemenu_1_pb; alias +fe_voicemenu_2 +se_voicemenu_2_pb; alias -fe_voicemenu_2 -se_voicemenu_2_pb; alias +fe_voicemenu_3 +se_voicemenu_3_pb; alias -fe_voicemenu_3 -se_voicemenu_3_pb; alias +fe_changeclass +se_changeclass_pb; alias -fe_changeclass -se_changeclass_pb; alias +fe_changeteam +se_changeteam_pb; fm_mod_pb8;" 56 | alias fm_mod_pb8 "alias +fe_loadout +se_loadout_pb; alias -fe_loadout -se_loadout_pb; alias +fe_backpack +se_backpack_pb; alias -fe_backpack -se_backpack_pb; alias +fe_dropitem +se_dropitem_pb; alias -fe_dropitem -se_dropitem_pb; alias +fe_action_slot +se_action_slot_pb; alias -fe_action_slot -se_action_slot_pb; alias +fe_showmapinfo +se_showmapinfo_pb; fm_mod_pb9;" 57 | alias fm_mod_pb9 "alias +fe_inspect +se_inspect_pb; alias -fe_inspect -se_inspect_pb; alias +fe_lastdisguise +se_lastdisguise_pb; alias -fe_lastdisguise -se_lastdisguise_pb; alias +fe_reload +se_reload_pb; alias -fe_reload -se_reload_pb; alias +fe_spray_logo +se_spray_logo_pb; alias -fe_spray_logo -se_spray_logo_pb; alias +fe_showscores +se_showscores_pb; fm_mod_pb10;" 58 | alias fm_mod_pb10 "alias +fe_quest_log +se_quest_log_pb; alias -fe_quest_log -se_quest_log_pb; alias +fe_askconnect +se_askconnect_pb; alias -fe_askconnect -se_askconnect_pb; alias +fe_ready_toggle +se_ready_toggle_pb; alias -fe_ready_toggle -se_ready_toggle_pb; alias +fe_screenshot +se_screenshot_pb; alias -fe_screenshot -se_screenshot_pb; alias +fe_save_replay +se_save_replay_pb; fm_mod_pb11;" 59 | alias fm_mod_pb11 "alias +fe_abuse_report +se_abuse_report_pb; alias -fe_abuse_report -se_abuse_report_pb; alias +fe_quit_game +se_quit_game_pb; alias -fe_quit_game -se_quit_game_pb; alias +fe_replay_tips +se_replay_tips_pb; alias -fe_replay_tips -se_replay_tips_pb; alias +fe_cancelselect +se_cancelselect_pb; alias -fe_cancelselect -se_cancelselect_pb; alias +fe_askconnect_accept +se_askconnect_accept_pb; fm_mod_pb12;" 60 | alias fm_mod_pb12 "alias +fe_loadout_0 +se_loadout_0_pb; alias -fe_loadout_0 -se_loadout_0_pb; alias +fe_loadout_1 +se_loadout_1_pb; alias -fe_loadout_1 -se_loadout_1_pb; alias +fe_loadout_2 +se_loadout_2_pb; alias -fe_loadout_2 -se_loadout_2_pb; alias +fe_loadout_3 +se_loadout_3_pb; alias -fe_loadout_3 -se_loadout_3_pb; alias +fe_slot1 +se_slot1_pb; fm_mod_pb13;" 61 | alias fm_mod_pb13 "alias fc_slot1 sc_slot1_pb; alias +fe_slot2 +se_slot2_pb; alias -fe_slot2 -se_slot2_pb; alias fc_slot2 sc_slot2_pb; alias +fe_slot3 +se_slot3_pb; alias -fe_slot3 -se_slot3_pb; alias fc_slot3 sc_slot3_pb; alias +fe_slot4 +se_slot4_pb; alias -fe_slot4 -se_slot4_pb; fm_mod_pb14;" 62 | alias fm_mod_pb14 "alias +fe_slot5 +se_slot5_pb; alias -fe_slot5 -se_slot5_pb; alias fc_slot5 sc_slot5_pb; alias +fe_slot6 +se_slot6_pb; alias -fe_slot6 -se_slot6_pb; alias fc_slot6 sc_slot6_pb; alias +fe_lastinv +se_lastinv_pb; alias -fe_lastinv -se_lastinv_pb; alias +fe_invnext +se_invnext_pb; fm_mod_pb15;" 63 | alias fm_mod_pb15 "alias +fe_invprev +se_invprev_pb; alias -fe_invprev -se_invprev_pb; " 64 | 65 | alias ft_mod_ta +ft_mod_ta; 66 | alias +ft_mod_ta "fm_mod_ta; alias ft_mod_ta -ft_mod_ta;" 67 | alias -ft_mod_ta "fm_reset; alias ft_mod_ta +ft_mod_ta;" 68 | alias +u_mod_ta ft_mod_ta; 69 | alias -u_mod_ta none; 70 | alias fm_mod_ta "mod_ta_set; alias mod_reset mod_ta_reset; fm_mod_ta0;" 71 | alias fm_mod_ta0 "alias -fe_attack -se_attack_ta; alias fc_attack sc_attack_ta; alias +fe_attack2 +se_attack2_ta; alias -fe_attack2 -se_attack2_ta; alias fc_attack2 sc_attack2_ta; alias +fe_attack3 +se_attack3_ta; alias -fe_attack3 -se_attack3_ta; alias fc_attack3 sc_attack3_ta; alias +fe_ctx1 +se_ctx1_ta; fm_mod_ta1;" 72 | alias fm_mod_ta1 "alias fc_ctx1 sc_ctx1_ta; alias +fe_ctx2 +se_ctx2_ta; alias -fe_ctx2 -se_ctx2_ta; alias fc_ctx2 sc_ctx2_ta; alias +fe_ctx3 +se_ctx3_ta; alias -fe_ctx3 -se_ctx3_ta; alias fc_ctx3 sc_ctx3_ta; alias +fe_ctx4 +se_ctx4_ta; alias -fe_ctx4 -se_ctx4_ta; fm_mod_ta2;" 73 | alias fm_mod_ta2 "alias +fe_ctx5 +se_ctx5_ta; alias -fe_ctx5 -se_ctx5_ta; alias fc_ctx5 sc_ctx5_ta; alias +fe_ctx6 +se_ctx6_ta; alias -fe_ctx6 -se_ctx6_ta; alias fc_ctx6 sc_ctx6_ta; alias +fe_ctx7 +se_ctx7_ta; alias -fe_ctx7 -se_ctx7_ta; alias fc_ctx7 sc_ctx7_ta; fm_mod_ta3;" 74 | alias fm_mod_ta3 "alias -fe_ctx8 -se_ctx8_ta; alias fc_ctx8 sc_ctx8_ta; alias +fe_misc1 +se_misc1_ta; alias -fe_misc1 -se_misc1_ta; alias +fe_misc2 +se_misc2_ta; alias -fe_misc2 -se_misc2_ta; alias +fe_misc3 +se_misc3_ta; alias -fe_misc3 -se_misc3_ta; alias +fe_misc4 +se_misc4_ta; fm_mod_ta4;" 75 | alias fm_mod_ta4 "alias +fe_misc5 +se_misc5_ta; alias -fe_misc5 -se_misc5_ta; alias +fe_misc6 +se_misc6_ta; alias -fe_misc6 -se_misc6_ta; alias +fe_misc7 +se_misc7_ta; alias -fe_misc7 -se_misc7_ta; alias +fe_misc8 +se_misc8_ta; alias -fe_misc8 -se_misc8_ta; alias +fe_forward +se_forward_ta; fm_mod_ta5;" 76 | alias fm_mod_ta5 "alias fc_forward sc_forward_ta; alias +fe_back +se_back_ta; alias -fe_back -se_back_ta; alias fc_back sc_back_ta; alias +fe_moveleft +se_moveleft_ta; alias -fe_moveleft -se_moveleft_ta; alias fc_moveleft sc_moveleft_ta; alias +fe_moveright +se_moveright_ta; alias -fe_moveright -se_moveright_ta; fm_mod_ta6;" 77 | alias fm_mod_ta6 "alias +fe_jump +se_jump_ta; alias -fe_jump -se_jump_ta; alias fc_jump sc_jump_ta; alias +fe_duck +se_duck_ta; alias -fe_duck -se_duck_ta; alias fc_duck sc_duck_ta; alias +fe_callmed +se_callmed_ta; alias -fe_callmed -se_callmed_ta; alias +fe_voicerecord +se_voicerecord_ta; fm_mod_ta7;" 78 | alias fm_mod_ta7 "alias +fe_voicemenu_1 +se_voicemenu_1_ta; alias -fe_voicemenu_1 -se_voicemenu_1_ta; alias +fe_voicemenu_2 +se_voicemenu_2_ta; alias -fe_voicemenu_2 -se_voicemenu_2_ta; alias +fe_voicemenu_3 +se_voicemenu_3_ta; alias -fe_voicemenu_3 -se_voicemenu_3_ta; alias +fe_changeclass +se_changeclass_ta; alias -fe_changeclass -se_changeclass_ta; alias +fe_changeteam +se_changeteam_ta; fm_mod_ta8;" 79 | alias fm_mod_ta8 "alias +fe_loadout +se_loadout_ta; alias -fe_loadout -se_loadout_ta; alias +fe_backpack +se_backpack_ta; alias -fe_backpack -se_backpack_ta; alias +fe_dropitem +se_dropitem_ta; alias -fe_dropitem -se_dropitem_ta; alias +fe_action_slot +se_action_slot_ta; alias -fe_action_slot -se_action_slot_ta; alias +fe_showmapinfo +se_showmapinfo_ta; fm_mod_ta9;" 80 | alias fm_mod_ta9 "alias +fe_inspect +se_inspect_ta; alias -fe_inspect -se_inspect_ta; alias +fe_lastdisguise +se_lastdisguise_ta; alias -fe_lastdisguise -se_lastdisguise_ta; alias +fe_reload +se_reload_ta; alias -fe_reload -se_reload_ta; alias +fe_spray_logo +se_spray_logo_ta; alias -fe_spray_logo -se_spray_logo_ta; alias +fe_showscores +se_showscores_ta; fm_mod_ta10;" 81 | alias fm_mod_ta10 "alias +fe_quest_log +se_quest_log_ta; alias -fe_quest_log -se_quest_log_ta; alias +fe_askconnect +se_askconnect_ta; alias -fe_askconnect -se_askconnect_ta; alias +fe_ready_toggle +se_ready_toggle_ta; alias -fe_ready_toggle -se_ready_toggle_ta; alias +fe_screenshot +se_screenshot_ta; alias -fe_screenshot -se_screenshot_ta; alias +fe_save_replay +se_save_replay_ta; fm_mod_ta11;" 82 | alias fm_mod_ta11 "alias +fe_abuse_report +se_abuse_report_ta; alias -fe_abuse_report -se_abuse_report_ta; alias +fe_quit_game +se_quit_game_ta; alias -fe_quit_game -se_quit_game_ta; alias +fe_replay_tips +se_replay_tips_ta; alias -fe_replay_tips -se_replay_tips_ta; alias +fe_cancelselect +se_cancelselect_ta; alias -fe_cancelselect -se_cancelselect_ta; alias +fe_askconnect_accept +se_askconnect_accept_ta; fm_mod_ta12;" 83 | alias fm_mod_ta12 "alias +fe_loadout_0 +se_loadout_0_ta; alias -fe_loadout_0 -se_loadout_0_ta; alias +fe_loadout_1 +se_loadout_1_ta; alias -fe_loadout_1 -se_loadout_1_ta; alias +fe_loadout_2 +se_loadout_2_ta; alias -fe_loadout_2 -se_loadout_2_ta; alias +fe_loadout_3 +se_loadout_3_ta; alias -fe_loadout_3 -se_loadout_3_ta; alias +fe_slot1 +se_slot1_ta; fm_mod_ta13;" 84 | alias fm_mod_ta13 "alias fc_slot1 sc_slot1_ta; alias +fe_slot2 +se_slot2_ta; alias -fe_slot2 -se_slot2_ta; alias fc_slot2 sc_slot2_ta; alias +fe_slot3 +se_slot3_ta; alias -fe_slot3 -se_slot3_ta; alias fc_slot3 sc_slot3_ta; alias +fe_slot4 +se_slot4_ta; alias -fe_slot4 -se_slot4_ta; fm_mod_ta14;" 85 | alias fm_mod_ta14 "alias +fe_slot5 +se_slot5_ta; alias -fe_slot5 -se_slot5_ta; alias fc_slot5 sc_slot5_ta; alias +fe_slot6 +se_slot6_ta; alias -fe_slot6 -se_slot6_ta; alias fc_slot6 sc_slot6_ta; alias +fe_lastinv +se_lastinv_ta; alias -fe_lastinv -se_lastinv_ta; alias +fe_invnext +se_invnext_ta; fm_mod_ta15;" 86 | alias fm_mod_ta15 "alias +fe_invprev +se_invprev_ta; alias -fe_invprev -se_invprev_ta; " 87 | 88 | alias ft_mod_tb +ft_mod_tb; 89 | alias +ft_mod_tb "fm_mod_tb; alias ft_mod_tb -ft_mod_tb;" 90 | alias -ft_mod_tb "fm_reset; alias ft_mod_tb +ft_mod_tb;" 91 | alias +u_mod_tb ft_mod_tb; 92 | alias -u_mod_tb none; 93 | alias fm_mod_tb "mod_tb_set; alias mod_reset mod_tb_reset; fm_mod_tb0;" 94 | alias fm_mod_tb0 "alias -fe_attack -se_attack_tb; alias fc_attack sc_attack_tb; alias +fe_attack2 +se_attack2_tb; alias -fe_attack2 -se_attack2_tb; alias fc_attack2 sc_attack2_tb; alias +fe_attack3 +se_attack3_tb; alias -fe_attack3 -se_attack3_tb; alias fc_attack3 sc_attack3_tb; alias +fe_ctx1 +se_ctx1_tb; fm_mod_tb1;" 95 | alias fm_mod_tb1 "alias fc_ctx1 sc_ctx1_tb; alias +fe_ctx2 +se_ctx2_tb; alias -fe_ctx2 -se_ctx2_tb; alias fc_ctx2 sc_ctx2_tb; alias +fe_ctx3 +se_ctx3_tb; alias -fe_ctx3 -se_ctx3_tb; alias fc_ctx3 sc_ctx3_tb; alias +fe_ctx4 +se_ctx4_tb; alias -fe_ctx4 -se_ctx4_tb; fm_mod_tb2;" 96 | alias fm_mod_tb2 "alias +fe_ctx5 +se_ctx5_tb; alias -fe_ctx5 -se_ctx5_tb; alias fc_ctx5 sc_ctx5_tb; alias +fe_ctx6 +se_ctx6_tb; alias -fe_ctx6 -se_ctx6_tb; alias fc_ctx6 sc_ctx6_tb; alias +fe_ctx7 +se_ctx7_tb; alias -fe_ctx7 -se_ctx7_tb; alias fc_ctx7 sc_ctx7_tb; fm_mod_tb3;" 97 | alias fm_mod_tb3 "alias -fe_ctx8 -se_ctx8_tb; alias fc_ctx8 sc_ctx8_tb; alias +fe_misc1 +se_misc1_tb; alias -fe_misc1 -se_misc1_tb; alias +fe_misc2 +se_misc2_tb; alias -fe_misc2 -se_misc2_tb; alias +fe_misc3 +se_misc3_tb; alias -fe_misc3 -se_misc3_tb; alias +fe_misc4 +se_misc4_tb; fm_mod_tb4;" 98 | alias fm_mod_tb4 "alias +fe_misc5 +se_misc5_tb; alias -fe_misc5 -se_misc5_tb; alias +fe_misc6 +se_misc6_tb; alias -fe_misc6 -se_misc6_tb; alias +fe_misc7 +se_misc7_tb; alias -fe_misc7 -se_misc7_tb; alias +fe_misc8 +se_misc8_tb; alias -fe_misc8 -se_misc8_tb; alias +fe_forward +se_forward_tb; fm_mod_tb5;" 99 | alias fm_mod_tb5 "alias fc_forward sc_forward_tb; alias +fe_back +se_back_tb; alias -fe_back -se_back_tb; alias fc_back sc_back_tb; alias +fe_moveleft +se_moveleft_tb; alias -fe_moveleft -se_moveleft_tb; alias fc_moveleft sc_moveleft_tb; alias +fe_moveright +se_moveright_tb; alias -fe_moveright -se_moveright_tb; fm_mod_tb6;" 100 | alias fm_mod_tb6 "alias +fe_jump +se_jump_tb; alias -fe_jump -se_jump_tb; alias fc_jump sc_jump_tb; alias +fe_duck +se_duck_tb; alias -fe_duck -se_duck_tb; alias fc_duck sc_duck_tb; alias +fe_callmed +se_callmed_tb; alias -fe_callmed -se_callmed_tb; alias +fe_voicerecord +se_voicerecord_tb; fm_mod_tb7;" 101 | alias fm_mod_tb7 "alias +fe_voicemenu_1 +se_voicemenu_1_tb; alias -fe_voicemenu_1 -se_voicemenu_1_tb; alias +fe_voicemenu_2 +se_voicemenu_2_tb; alias -fe_voicemenu_2 -se_voicemenu_2_tb; alias +fe_voicemenu_3 +se_voicemenu_3_tb; alias -fe_voicemenu_3 -se_voicemenu_3_tb; alias +fe_changeclass +se_changeclass_tb; alias -fe_changeclass -se_changeclass_tb; alias +fe_changeteam +se_changeteam_tb; fm_mod_tb8;" 102 | alias fm_mod_tb8 "alias +fe_loadout +se_loadout_tb; alias -fe_loadout -se_loadout_tb; alias +fe_backpack +se_backpack_tb; alias -fe_backpack -se_backpack_tb; alias +fe_dropitem +se_dropitem_tb; alias -fe_dropitem -se_dropitem_tb; alias +fe_action_slot +se_action_slot_tb; alias -fe_action_slot -se_action_slot_tb; alias +fe_showmapinfo +se_showmapinfo_tb; fm_mod_tb9;" 103 | alias fm_mod_tb9 "alias +fe_inspect +se_inspect_tb; alias -fe_inspect -se_inspect_tb; alias +fe_lastdisguise +se_lastdisguise_tb; alias -fe_lastdisguise -se_lastdisguise_tb; alias +fe_reload +se_reload_tb; alias -fe_reload -se_reload_tb; alias +fe_spray_logo +se_spray_logo_tb; alias -fe_spray_logo -se_spray_logo_tb; alias +fe_showscores +se_showscores_tb; fm_mod_tb10;" 104 | alias fm_mod_tb10 "alias +fe_quest_log +se_quest_log_tb; alias -fe_quest_log -se_quest_log_tb; alias +fe_askconnect +se_askconnect_tb; alias -fe_askconnect -se_askconnect_tb; alias +fe_ready_toggle +se_ready_toggle_tb; alias -fe_ready_toggle -se_ready_toggle_tb; alias +fe_screenshot +se_screenshot_tb; alias -fe_screenshot -se_screenshot_tb; alias +fe_save_replay +se_save_replay_tb; fm_mod_tb11;" 105 | alias fm_mod_tb11 "alias +fe_abuse_report +se_abuse_report_tb; alias -fe_abuse_report -se_abuse_report_tb; alias +fe_quit_game +se_quit_game_tb; alias -fe_quit_game -se_quit_game_tb; alias +fe_replay_tips +se_replay_tips_tb; alias -fe_replay_tips -se_replay_tips_tb; alias +fe_cancelselect +se_cancelselect_tb; alias -fe_cancelselect -se_cancelselect_tb; alias +fe_askconnect_accept +se_askconnect_accept_tb; fm_mod_tb12;" 106 | alias fm_mod_tb12 "alias +fe_loadout_0 +se_loadout_0_tb; alias -fe_loadout_0 -se_loadout_0_tb; alias +fe_loadout_1 +se_loadout_1_tb; alias -fe_loadout_1 -se_loadout_1_tb; alias +fe_loadout_2 +se_loadout_2_tb; alias -fe_loadout_2 -se_loadout_2_tb; alias +fe_loadout_3 +se_loadout_3_tb; alias -fe_loadout_3 -se_loadout_3_tb; alias +fe_slot1 +se_slot1_tb; fm_mod_tb13;" 107 | alias fm_mod_tb13 "alias fc_slot1 sc_slot1_tb; alias +fe_slot2 +se_slot2_tb; alias -fe_slot2 -se_slot2_tb; alias fc_slot2 sc_slot2_tb; alias +fe_slot3 +se_slot3_tb; alias -fe_slot3 -se_slot3_tb; alias fc_slot3 sc_slot3_tb; alias +fe_slot4 +se_slot4_tb; alias -fe_slot4 -se_slot4_tb; fm_mod_tb14;" 108 | alias fm_mod_tb14 "alias +fe_slot5 +se_slot5_tb; alias -fe_slot5 -se_slot5_tb; alias fc_slot5 sc_slot5_tb; alias +fe_slot6 +se_slot6_tb; alias -fe_slot6 -se_slot6_tb; alias fc_slot6 sc_slot6_tb; alias +fe_lastinv +se_lastinv_tb; alias -fe_lastinv -se_lastinv_tb; alias +fe_invnext +se_invnext_tb; fm_mod_tb15;" 109 | alias fm_mod_tb15 "alias +fe_invprev +se_invprev_tb; alias -fe_invprev -se_invprev_tb; " 110 | 111 | 112 | -------------------------------------------------------------------------------- /output/resets.cfg: -------------------------------------------------------------------------------- 1 | //PAST THIS POINT THERE'S NOTHING INTERESTING 2 | 3 | //////////////////////////////////////////////////////////////////// 4 | // Reset values to null 5 | //////////////////////////////////////////////////////////////////// 6 | alias sc_attack none; 7 | alias sc_attack2 none; 8 | alias sc_attack3 none; 9 | alias sc_ctx1 none; 10 | alias +se_ctx1 none; 11 | alias -se_ctx1 none; 12 | alias sc_ctx2 none; 13 | alias +se_ctx2 none; 14 | alias -se_ctx2 none; 15 | alias sc_ctx3 none; 16 | alias +se_ctx3 none; 17 | alias -se_ctx3 none; 18 | alias sc_ctx4 none; 19 | alias +se_ctx4 none; 20 | alias -se_ctx4 none; 21 | alias sc_ctx5 none; 22 | alias +se_ctx5 none; 23 | alias -se_ctx5 none; 24 | alias sc_ctx6 none; 25 | alias +se_ctx6 none; 26 | alias -se_ctx6 none; 27 | alias sc_ctx7 none; 28 | alias +se_ctx7 none; 29 | alias -se_ctx7 none; 30 | alias sc_ctx8 none; 31 | alias +se_ctx8 none; 32 | alias -se_ctx8 none; 33 | alias +se_misc1 none; 34 | alias -se_misc1 none; 35 | alias +se_misc2 none; 36 | alias -se_misc2 none; 37 | alias +se_misc3 none; 38 | alias -se_misc3 none; 39 | alias +se_misc4 none; 40 | alias -se_misc4 none; 41 | alias +se_misc5 none; 42 | alias -se_misc5 none; 43 | alias +se_misc6 none; 44 | alias -se_misc6 none; 45 | alias +se_misc7 none; 46 | alias -se_misc7 none; 47 | alias +se_misc8 none; 48 | alias -se_misc8 none; 49 | alias sc_forward none; 50 | alias sc_back none; 51 | alias sc_moveleft none; 52 | alias sc_moveright none; 53 | alias sc_jump none; 54 | alias sc_duck none; 55 | alias -se_callmed none; 56 | alias -se_voicemenu_1 none; 57 | alias -se_voicemenu_2 none; 58 | alias -se_voicemenu_3 none; 59 | alias -se_changeclass none; 60 | alias -se_changeteam none; 61 | alias -se_loadout none; 62 | alias -se_backpack none; 63 | alias -se_dropitem none; 64 | alias -se_showmapinfo none; 65 | alias -se_lastdisguise none; 66 | alias -se_spray_logo none; 67 | alias -se_quest_log none; 68 | alias -se_askconnect none; 69 | alias -se_ready_toggle none; 70 | alias -se_screenshot none; 71 | alias -se_save_replay none; 72 | alias -se_abuse_report none; 73 | alias -se_quit_game none; 74 | alias -se_replay_tips none; 75 | alias -se_cancelselect none; 76 | alias -se_askconnect_accept none; 77 | alias -se_loadout_0 none; 78 | alias -se_loadout_1 none; 79 | alias -se_loadout_2 none; 80 | alias -se_loadout_3 none; 81 | alias +gl_slot none; 82 | alias -gl_slot none; 83 | alias gl_slot none; 84 | alias sc_slot1 none; 85 | alias -se_slot1 none; 86 | alias sc_slot2 none; 87 | alias -se_slot2 none; 88 | alias sc_slot3 none; 89 | alias -se_slot3 none; 90 | alias sc_slot4 none; 91 | alias -se_slot4 none; 92 | alias sc_slot5 none; 93 | alias -se_slot5 none; 94 | alias sc_slot6 none; 95 | alias -se_slot6 none; 96 | alias sc_lastinv none; 97 | alias +se_lastinv none; 98 | alias -se_lastinv none; 99 | alias sc_invnext none; 100 | alias +se_invnext none; 101 | alias -se_invnext none; 102 | alias sc_invprev none; 103 | alias +se_invprev none; 104 | alias -se_invprev none; 105 | alias -se_taunt_def none; 106 | alias -se_taunt1 none; 107 | alias -se_taunt2 none; 108 | alias -se_taunt3 none; 109 | alias -se_taunt4 none; 110 | alias -se_taunt5 none; 111 | alias -se_taunt6 none; 112 | alias -se_taunt7 none; 113 | alias -se_taunt8 none; 114 | alias +se_mod_pa none; 115 | alias -se_mod_pa none; 116 | alias mod_pa_set none; 117 | alias mod_pa_reset none; 118 | alias +se_attack_pa +se_attack; 119 | alias -se_attack_pa -se_attack; 120 | alias sc_attack_pa sc_attack; 121 | alias +se_attack2_pa +se_attack2; 122 | alias -se_attack2_pa -se_attack2; 123 | alias sc_attack2_pa sc_attack2; 124 | alias +se_attack3_pa +se_attack3; 125 | alias -se_attack3_pa -se_attack3; 126 | alias sc_attack3_pa sc_attack3; 127 | alias +se_ctx1_pa +se_ctx1; 128 | alias -se_ctx1_pa -se_ctx1; 129 | alias sc_ctx1_pa sc_ctx1; 130 | alias +se_ctx2_pa +se_ctx2; 131 | alias -se_ctx2_pa -se_ctx2; 132 | alias sc_ctx2_pa sc_ctx2; 133 | alias +se_ctx3_pa +se_ctx3; 134 | alias -se_ctx3_pa -se_ctx3; 135 | alias sc_ctx3_pa sc_ctx3; 136 | alias +se_ctx4_pa +se_ctx4; 137 | alias -se_ctx4_pa -se_ctx4; 138 | alias sc_ctx4_pa sc_ctx4; 139 | alias +se_ctx5_pa +se_ctx5; 140 | alias -se_ctx5_pa -se_ctx5; 141 | alias sc_ctx5_pa sc_ctx5; 142 | alias +se_ctx6_pa +se_ctx6; 143 | alias -se_ctx6_pa -se_ctx6; 144 | alias sc_ctx6_pa sc_ctx6; 145 | alias +se_ctx7_pa +se_ctx7; 146 | alias -se_ctx7_pa -se_ctx7; 147 | alias sc_ctx7_pa sc_ctx7; 148 | alias +se_ctx8_pa +se_ctx8; 149 | alias -se_ctx8_pa -se_ctx8; 150 | alias sc_ctx8_pa sc_ctx8; 151 | alias +se_misc1_pa +se_misc1; 152 | alias -se_misc1_pa -se_misc1; 153 | alias +se_misc2_pa +se_misc2; 154 | alias -se_misc2_pa -se_misc2; 155 | alias +se_misc3_pa +se_misc3; 156 | alias -se_misc3_pa -se_misc3; 157 | alias +se_misc4_pa +se_misc4; 158 | alias -se_misc4_pa -se_misc4; 159 | alias +se_misc5_pa +se_misc5; 160 | alias -se_misc5_pa -se_misc5; 161 | alias +se_misc6_pa +se_misc6; 162 | alias -se_misc6_pa -se_misc6; 163 | alias +se_misc7_pa +se_misc7; 164 | alias -se_misc7_pa -se_misc7; 165 | alias +se_misc8_pa +se_misc8; 166 | alias -se_misc8_pa -se_misc8; 167 | alias +se_forward_pa +se_forward; 168 | alias -se_forward_pa -se_forward; 169 | alias sc_forward_pa sc_forward; 170 | alias +se_back_pa +se_back; 171 | alias -se_back_pa -se_back; 172 | alias sc_back_pa sc_back; 173 | alias +se_moveleft_pa +se_moveleft; 174 | alias -se_moveleft_pa -se_moveleft; 175 | alias sc_moveleft_pa sc_moveleft; 176 | alias +se_moveright_pa +se_moveright; 177 | alias -se_moveright_pa -se_moveright; 178 | alias sc_moveright_pa sc_moveright; 179 | alias +se_jump_pa +se_jump; 180 | alias -se_jump_pa -se_jump; 181 | alias sc_jump_pa sc_jump; 182 | alias +se_duck_pa +se_duck; 183 | alias -se_duck_pa -se_duck; 184 | alias sc_duck_pa sc_duck; 185 | alias +se_callmed_pa +se_callmed; 186 | alias -se_callmed_pa -se_callmed; 187 | alias +se_voicerecord_pa +se_voicerecord; 188 | alias -se_voicerecord_pa -se_voicerecord; 189 | alias +se_voicemenu_1_pa +se_voicemenu_1; 190 | alias -se_voicemenu_1_pa -se_voicemenu_1; 191 | alias +se_voicemenu_2_pa +se_voicemenu_2; 192 | alias -se_voicemenu_2_pa -se_voicemenu_2; 193 | alias +se_voicemenu_3_pa +se_voicemenu_3; 194 | alias -se_voicemenu_3_pa -se_voicemenu_3; 195 | alias +se_changeclass_pa +se_changeclass; 196 | alias -se_changeclass_pa -se_changeclass; 197 | alias +se_changeteam_pa +se_changeteam; 198 | alias -se_changeteam_pa -se_changeteam; 199 | alias +se_loadout_pa +se_loadout; 200 | alias -se_loadout_pa -se_loadout; 201 | alias +se_backpack_pa +se_backpack; 202 | alias -se_backpack_pa -se_backpack; 203 | alias +se_dropitem_pa +se_dropitem; 204 | alias -se_dropitem_pa -se_dropitem; 205 | alias +se_action_slot_pa +se_action_slot; 206 | alias -se_action_slot_pa -se_action_slot; 207 | alias +se_showmapinfo_pa +se_showmapinfo; 208 | alias -se_showmapinfo_pa -se_showmapinfo; 209 | alias +se_inspect_pa +se_inspect; 210 | alias -se_inspect_pa -se_inspect; 211 | alias +se_lastdisguise_pa +se_lastdisguise; 212 | alias -se_lastdisguise_pa -se_lastdisguise; 213 | alias +se_reload_pa +se_reload; 214 | alias -se_reload_pa -se_reload; 215 | alias +se_spray_logo_pa +se_spray_logo; 216 | alias -se_spray_logo_pa -se_spray_logo; 217 | alias +se_showscores_pa +se_showscores; 218 | alias -se_showscores_pa -se_showscores; 219 | alias +se_quest_log_pa +se_quest_log; 220 | alias -se_quest_log_pa -se_quest_log; 221 | alias +se_askconnect_pa +se_askconnect; 222 | alias -se_askconnect_pa -se_askconnect; 223 | alias +se_ready_toggle_pa +se_ready_toggle; 224 | alias -se_ready_toggle_pa -se_ready_toggle; 225 | alias +se_screenshot_pa +se_screenshot; 226 | alias -se_screenshot_pa -se_screenshot; 227 | alias +se_save_replay_pa +se_save_replay; 228 | alias -se_save_replay_pa -se_save_replay; 229 | alias +se_abuse_report_pa +se_abuse_report; 230 | alias -se_abuse_report_pa -se_abuse_report; 231 | alias +se_quit_game_pa +se_quit_game; 232 | alias -se_quit_game_pa -se_quit_game; 233 | alias +se_replay_tips_pa +se_replay_tips; 234 | alias -se_replay_tips_pa -se_replay_tips; 235 | alias +se_cancelselect_pa +se_cancelselect; 236 | alias -se_cancelselect_pa -se_cancelselect; 237 | alias +se_askconnect_accept_pa +se_askconnect_accept; 238 | alias -se_askconnect_accept_pa -se_askconnect_accept; 239 | alias +se_loadout_0_pa +se_loadout_0; 240 | alias -se_loadout_0_pa -se_loadout_0; 241 | alias +se_loadout_1_pa +se_loadout_1; 242 | alias -se_loadout_1_pa -se_loadout_1; 243 | alias +se_loadout_2_pa +se_loadout_2; 244 | alias -se_loadout_2_pa -se_loadout_2; 245 | alias +se_loadout_3_pa +se_loadout_3; 246 | alias -se_loadout_3_pa -se_loadout_3; 247 | alias +se_slot1_pa +se_slot1; 248 | alias -se_slot1_pa -se_slot1; 249 | alias sc_slot1_pa sc_slot1; 250 | alias +se_slot2_pa +se_slot2; 251 | alias -se_slot2_pa -se_slot2; 252 | alias sc_slot2_pa sc_slot2; 253 | alias +se_slot3_pa +se_slot3; 254 | alias -se_slot3_pa -se_slot3; 255 | alias sc_slot3_pa sc_slot3; 256 | alias +se_slot4_pa +se_slot4; 257 | alias -se_slot4_pa -se_slot4; 258 | alias sc_slot4_pa sc_slot4; 259 | alias +se_slot5_pa +se_slot5; 260 | alias -se_slot5_pa -se_slot5; 261 | alias sc_slot5_pa sc_slot5; 262 | alias +se_slot6_pa +se_slot6; 263 | alias -se_slot6_pa -se_slot6; 264 | alias sc_slot6_pa sc_slot6; 265 | alias +se_lastinv_pa +se_lastinv; 266 | alias -se_lastinv_pa -se_lastinv; 267 | alias +se_invnext_pa +se_invnext; 268 | alias -se_invnext_pa -se_invnext; 269 | alias +se_invprev_pa +se_invprev; 270 | alias -se_invprev_pa -se_invprev; 271 | alias +se_mod_pb none; 272 | alias -se_mod_pb none; 273 | alias mod_pb_set none; 274 | alias mod_pb_reset none; 275 | alias +se_attack_pb +se_attack; 276 | alias -se_attack_pb -se_attack; 277 | alias sc_attack_pb sc_attack; 278 | alias +se_attack2_pb +se_attack2; 279 | alias -se_attack2_pb -se_attack2; 280 | alias sc_attack2_pb sc_attack2; 281 | alias +se_attack3_pb +se_attack3; 282 | alias -se_attack3_pb -se_attack3; 283 | alias sc_attack3_pb sc_attack3; 284 | alias +se_ctx1_pb +se_ctx1; 285 | alias -se_ctx1_pb -se_ctx1; 286 | alias sc_ctx1_pb sc_ctx1; 287 | alias +se_ctx2_pb +se_ctx2; 288 | alias -se_ctx2_pb -se_ctx2; 289 | alias sc_ctx2_pb sc_ctx2; 290 | alias +se_ctx3_pb +se_ctx3; 291 | alias -se_ctx3_pb -se_ctx3; 292 | alias sc_ctx3_pb sc_ctx3; 293 | alias +se_ctx4_pb +se_ctx4; 294 | alias -se_ctx4_pb -se_ctx4; 295 | alias sc_ctx4_pb sc_ctx4; 296 | alias +se_ctx5_pb +se_ctx5; 297 | alias -se_ctx5_pb -se_ctx5; 298 | alias sc_ctx5_pb sc_ctx5; 299 | alias +se_ctx6_pb +se_ctx6; 300 | alias -se_ctx6_pb -se_ctx6; 301 | alias sc_ctx6_pb sc_ctx6; 302 | alias +se_ctx7_pb +se_ctx7; 303 | alias -se_ctx7_pb -se_ctx7; 304 | alias sc_ctx7_pb sc_ctx7; 305 | alias +se_ctx8_pb +se_ctx8; 306 | alias -se_ctx8_pb -se_ctx8; 307 | alias sc_ctx8_pb sc_ctx8; 308 | alias +se_misc1_pb +se_misc1; 309 | alias -se_misc1_pb -se_misc1; 310 | alias +se_misc2_pb +se_misc2; 311 | alias -se_misc2_pb -se_misc2; 312 | alias +se_misc3_pb +se_misc3; 313 | alias -se_misc3_pb -se_misc3; 314 | alias +se_misc4_pb +se_misc4; 315 | alias -se_misc4_pb -se_misc4; 316 | alias +se_misc5_pb +se_misc5; 317 | alias -se_misc5_pb -se_misc5; 318 | alias +se_misc6_pb +se_misc6; 319 | alias -se_misc6_pb -se_misc6; 320 | alias +se_misc7_pb +se_misc7; 321 | alias -se_misc7_pb -se_misc7; 322 | alias +se_misc8_pb +se_misc8; 323 | alias -se_misc8_pb -se_misc8; 324 | alias +se_forward_pb +se_forward; 325 | alias -se_forward_pb -se_forward; 326 | alias sc_forward_pb sc_forward; 327 | alias +se_back_pb +se_back; 328 | alias -se_back_pb -se_back; 329 | alias sc_back_pb sc_back; 330 | alias +se_moveleft_pb +se_moveleft; 331 | alias -se_moveleft_pb -se_moveleft; 332 | alias sc_moveleft_pb sc_moveleft; 333 | alias +se_moveright_pb +se_moveright; 334 | alias -se_moveright_pb -se_moveright; 335 | alias sc_moveright_pb sc_moveright; 336 | alias +se_jump_pb +se_jump; 337 | alias -se_jump_pb -se_jump; 338 | alias sc_jump_pb sc_jump; 339 | alias +se_duck_pb +se_duck; 340 | alias -se_duck_pb -se_duck; 341 | alias sc_duck_pb sc_duck; 342 | alias +se_callmed_pb +se_callmed; 343 | alias -se_callmed_pb -se_callmed; 344 | alias +se_voicerecord_pb +se_voicerecord; 345 | alias -se_voicerecord_pb -se_voicerecord; 346 | alias +se_voicemenu_1_pb +se_voicemenu_1; 347 | alias -se_voicemenu_1_pb -se_voicemenu_1; 348 | alias +se_voicemenu_2_pb +se_voicemenu_2; 349 | alias -se_voicemenu_2_pb -se_voicemenu_2; 350 | alias +se_voicemenu_3_pb +se_voicemenu_3; 351 | alias -se_voicemenu_3_pb -se_voicemenu_3; 352 | alias +se_changeclass_pb +se_changeclass; 353 | alias -se_changeclass_pb -se_changeclass; 354 | alias +se_changeteam_pb +se_changeteam; 355 | alias -se_changeteam_pb -se_changeteam; 356 | alias +se_loadout_pb +se_loadout; 357 | alias -se_loadout_pb -se_loadout; 358 | alias +se_backpack_pb +se_backpack; 359 | alias -se_backpack_pb -se_backpack; 360 | alias +se_dropitem_pb +se_dropitem; 361 | alias -se_dropitem_pb -se_dropitem; 362 | alias +se_action_slot_pb +se_action_slot; 363 | alias -se_action_slot_pb -se_action_slot; 364 | alias +se_showmapinfo_pb +se_showmapinfo; 365 | alias -se_showmapinfo_pb -se_showmapinfo; 366 | alias +se_inspect_pb +se_inspect; 367 | alias -se_inspect_pb -se_inspect; 368 | alias +se_lastdisguise_pb +se_lastdisguise; 369 | alias -se_lastdisguise_pb -se_lastdisguise; 370 | alias +se_reload_pb +se_reload; 371 | alias -se_reload_pb -se_reload; 372 | alias +se_spray_logo_pb +se_spray_logo; 373 | alias -se_spray_logo_pb -se_spray_logo; 374 | alias +se_showscores_pb +se_showscores; 375 | alias -se_showscores_pb -se_showscores; 376 | alias +se_quest_log_pb +se_quest_log; 377 | alias -se_quest_log_pb -se_quest_log; 378 | alias +se_askconnect_pb +se_askconnect; 379 | alias -se_askconnect_pb -se_askconnect; 380 | alias +se_ready_toggle_pb +se_ready_toggle; 381 | alias -se_ready_toggle_pb -se_ready_toggle; 382 | alias +se_screenshot_pb +se_screenshot; 383 | alias -se_screenshot_pb -se_screenshot; 384 | alias +se_save_replay_pb +se_save_replay; 385 | alias -se_save_replay_pb -se_save_replay; 386 | alias +se_abuse_report_pb +se_abuse_report; 387 | alias -se_abuse_report_pb -se_abuse_report; 388 | alias +se_quit_game_pb +se_quit_game; 389 | alias -se_quit_game_pb -se_quit_game; 390 | alias +se_replay_tips_pb +se_replay_tips; 391 | alias -se_replay_tips_pb -se_replay_tips; 392 | alias +se_cancelselect_pb +se_cancelselect; 393 | alias -se_cancelselect_pb -se_cancelselect; 394 | alias +se_askconnect_accept_pb +se_askconnect_accept; 395 | alias -se_askconnect_accept_pb -se_askconnect_accept; 396 | alias +se_loadout_0_pb +se_loadout_0; 397 | alias -se_loadout_0_pb -se_loadout_0; 398 | alias +se_loadout_1_pb +se_loadout_1; 399 | alias -se_loadout_1_pb -se_loadout_1; 400 | alias +se_loadout_2_pb +se_loadout_2; 401 | alias -se_loadout_2_pb -se_loadout_2; 402 | alias +se_loadout_3_pb +se_loadout_3; 403 | alias -se_loadout_3_pb -se_loadout_3; 404 | alias +se_slot1_pb +se_slot1; 405 | alias -se_slot1_pb -se_slot1; 406 | alias sc_slot1_pb sc_slot1; 407 | alias +se_slot2_pb +se_slot2; 408 | alias -se_slot2_pb -se_slot2; 409 | alias sc_slot2_pb sc_slot2; 410 | alias +se_slot3_pb +se_slot3; 411 | alias -se_slot3_pb -se_slot3; 412 | alias sc_slot3_pb sc_slot3; 413 | alias +se_slot4_pb +se_slot4; 414 | alias -se_slot4_pb -se_slot4; 415 | alias sc_slot4_pb sc_slot4; 416 | alias +se_slot5_pb +se_slot5; 417 | alias -se_slot5_pb -se_slot5; 418 | alias sc_slot5_pb sc_slot5; 419 | alias +se_slot6_pb +se_slot6; 420 | alias -se_slot6_pb -se_slot6; 421 | alias sc_slot6_pb sc_slot6; 422 | alias +se_lastinv_pb +se_lastinv; 423 | alias -se_lastinv_pb -se_lastinv; 424 | alias +se_invnext_pb +se_invnext; 425 | alias -se_invnext_pb -se_invnext; 426 | alias +se_invprev_pb +se_invprev; 427 | alias -se_invprev_pb -se_invprev; 428 | alias +se_mod_ta none; 429 | alias -se_mod_ta none; 430 | alias mod_ta_set none; 431 | alias mod_ta_reset none; 432 | alias +se_attack_ta +se_attack; 433 | alias -se_attack_ta -se_attack; 434 | alias sc_attack_ta sc_attack; 435 | alias +se_attack2_ta +se_attack2; 436 | alias -se_attack2_ta -se_attack2; 437 | alias sc_attack2_ta sc_attack2; 438 | alias +se_attack3_ta +se_attack3; 439 | alias -se_attack3_ta -se_attack3; 440 | alias sc_attack3_ta sc_attack3; 441 | alias +se_ctx1_ta +se_ctx1; 442 | alias -se_ctx1_ta -se_ctx1; 443 | alias sc_ctx1_ta sc_ctx1; 444 | alias +se_ctx2_ta +se_ctx2; 445 | alias -se_ctx2_ta -se_ctx2; 446 | alias sc_ctx2_ta sc_ctx2; 447 | alias +se_ctx3_ta +se_ctx3; 448 | alias -se_ctx3_ta -se_ctx3; 449 | alias sc_ctx3_ta sc_ctx3; 450 | alias +se_ctx4_ta +se_ctx4; 451 | alias -se_ctx4_ta -se_ctx4; 452 | alias sc_ctx4_ta sc_ctx4; 453 | alias +se_ctx5_ta +se_ctx5; 454 | alias -se_ctx5_ta -se_ctx5; 455 | alias sc_ctx5_ta sc_ctx5; 456 | alias +se_ctx6_ta +se_ctx6; 457 | alias -se_ctx6_ta -se_ctx6; 458 | alias sc_ctx6_ta sc_ctx6; 459 | alias +se_ctx7_ta +se_ctx7; 460 | alias -se_ctx7_ta -se_ctx7; 461 | alias sc_ctx7_ta sc_ctx7; 462 | alias +se_ctx8_ta +se_ctx8; 463 | alias -se_ctx8_ta -se_ctx8; 464 | alias sc_ctx8_ta sc_ctx8; 465 | alias +se_misc1_ta +se_misc1; 466 | alias -se_misc1_ta -se_misc1; 467 | alias +se_misc2_ta +se_misc2; 468 | alias -se_misc2_ta -se_misc2; 469 | alias +se_misc3_ta +se_misc3; 470 | alias -se_misc3_ta -se_misc3; 471 | alias +se_misc4_ta +se_misc4; 472 | alias -se_misc4_ta -se_misc4; 473 | alias +se_misc5_ta +se_misc5; 474 | alias -se_misc5_ta -se_misc5; 475 | alias +se_misc6_ta +se_misc6; 476 | alias -se_misc6_ta -se_misc6; 477 | alias +se_misc7_ta +se_misc7; 478 | alias -se_misc7_ta -se_misc7; 479 | alias +se_misc8_ta +se_misc8; 480 | alias -se_misc8_ta -se_misc8; 481 | alias +se_forward_ta +se_forward; 482 | alias -se_forward_ta -se_forward; 483 | alias sc_forward_ta sc_forward; 484 | alias +se_back_ta +se_back; 485 | alias -se_back_ta -se_back; 486 | alias sc_back_ta sc_back; 487 | alias +se_moveleft_ta +se_moveleft; 488 | alias -se_moveleft_ta -se_moveleft; 489 | alias sc_moveleft_ta sc_moveleft; 490 | alias +se_moveright_ta +se_moveright; 491 | alias -se_moveright_ta -se_moveright; 492 | alias sc_moveright_ta sc_moveright; 493 | alias +se_jump_ta +se_jump; 494 | alias -se_jump_ta -se_jump; 495 | alias sc_jump_ta sc_jump; 496 | alias +se_duck_ta +se_duck; 497 | alias -se_duck_ta -se_duck; 498 | alias sc_duck_ta sc_duck; 499 | alias +se_callmed_ta +se_callmed; 500 | alias -se_callmed_ta -se_callmed; 501 | alias +se_voicerecord_ta +se_voicerecord; 502 | alias -se_voicerecord_ta -se_voicerecord; 503 | alias +se_voicemenu_1_ta +se_voicemenu_1; 504 | alias -se_voicemenu_1_ta -se_voicemenu_1; 505 | alias +se_voicemenu_2_ta +se_voicemenu_2; 506 | alias -se_voicemenu_2_ta -se_voicemenu_2; 507 | alias +se_voicemenu_3_ta +se_voicemenu_3; 508 | alias -se_voicemenu_3_ta -se_voicemenu_3; 509 | alias +se_changeclass_ta +se_changeclass; 510 | alias -se_changeclass_ta -se_changeclass; 511 | alias +se_changeteam_ta +se_changeteam; 512 | alias -se_changeteam_ta -se_changeteam; 513 | alias +se_loadout_ta +se_loadout; 514 | alias -se_loadout_ta -se_loadout; 515 | alias +se_backpack_ta +se_backpack; 516 | alias -se_backpack_ta -se_backpack; 517 | alias +se_dropitem_ta +se_dropitem; 518 | alias -se_dropitem_ta -se_dropitem; 519 | alias +se_action_slot_ta +se_action_slot; 520 | alias -se_action_slot_ta -se_action_slot; 521 | alias +se_showmapinfo_ta +se_showmapinfo; 522 | alias -se_showmapinfo_ta -se_showmapinfo; 523 | alias +se_inspect_ta +se_inspect; 524 | alias -se_inspect_ta -se_inspect; 525 | alias +se_lastdisguise_ta +se_lastdisguise; 526 | alias -se_lastdisguise_ta -se_lastdisguise; 527 | alias +se_reload_ta +se_reload; 528 | alias -se_reload_ta -se_reload; 529 | alias +se_spray_logo_ta +se_spray_logo; 530 | alias -se_spray_logo_ta -se_spray_logo; 531 | alias +se_showscores_ta +se_showscores; 532 | alias -se_showscores_ta -se_showscores; 533 | alias +se_quest_log_ta +se_quest_log; 534 | alias -se_quest_log_ta -se_quest_log; 535 | alias +se_askconnect_ta +se_askconnect; 536 | alias -se_askconnect_ta -se_askconnect; 537 | alias +se_ready_toggle_ta +se_ready_toggle; 538 | alias -se_ready_toggle_ta -se_ready_toggle; 539 | alias +se_screenshot_ta +se_screenshot; 540 | alias -se_screenshot_ta -se_screenshot; 541 | alias +se_save_replay_ta +se_save_replay; 542 | alias -se_save_replay_ta -se_save_replay; 543 | alias +se_abuse_report_ta +se_abuse_report; 544 | alias -se_abuse_report_ta -se_abuse_report; 545 | alias +se_quit_game_ta +se_quit_game; 546 | alias -se_quit_game_ta -se_quit_game; 547 | alias +se_replay_tips_ta +se_replay_tips; 548 | alias -se_replay_tips_ta -se_replay_tips; 549 | alias +se_cancelselect_ta +se_cancelselect; 550 | alias -se_cancelselect_ta -se_cancelselect; 551 | alias +se_askconnect_accept_ta +se_askconnect_accept; 552 | alias -se_askconnect_accept_ta -se_askconnect_accept; 553 | alias +se_loadout_0_ta +se_loadout_0; 554 | alias -se_loadout_0_ta -se_loadout_0; 555 | alias +se_loadout_1_ta +se_loadout_1; 556 | alias -se_loadout_1_ta -se_loadout_1; 557 | alias +se_loadout_2_ta +se_loadout_2; 558 | alias -se_loadout_2_ta -se_loadout_2; 559 | alias +se_loadout_3_ta +se_loadout_3; 560 | alias -se_loadout_3_ta -se_loadout_3; 561 | alias +se_slot1_ta +se_slot1; 562 | alias -se_slot1_ta -se_slot1; 563 | alias sc_slot1_ta sc_slot1; 564 | alias +se_slot2_ta +se_slot2; 565 | alias -se_slot2_ta -se_slot2; 566 | alias sc_slot2_ta sc_slot2; 567 | alias +se_slot3_ta +se_slot3; 568 | alias -se_slot3_ta -se_slot3; 569 | alias sc_slot3_ta sc_slot3; 570 | alias +se_slot4_ta +se_slot4; 571 | alias -se_slot4_ta -se_slot4; 572 | alias sc_slot4_ta sc_slot4; 573 | alias +se_slot5_ta +se_slot5; 574 | alias -se_slot5_ta -se_slot5; 575 | alias sc_slot5_ta sc_slot5; 576 | alias +se_slot6_ta +se_slot6; 577 | alias -se_slot6_ta -se_slot6; 578 | alias sc_slot6_ta sc_slot6; 579 | alias +se_lastinv_ta +se_lastinv; 580 | alias -se_lastinv_ta -se_lastinv; 581 | alias +se_invnext_ta +se_invnext; 582 | alias -se_invnext_ta -se_invnext; 583 | alias +se_invprev_ta +se_invprev; 584 | alias -se_invprev_ta -se_invprev; 585 | alias +se_mod_tb none; 586 | alias -se_mod_tb none; 587 | alias mod_tb_set none; 588 | alias mod_tb_reset none; 589 | alias +se_attack_tb +se_attack; 590 | alias -se_attack_tb -se_attack; 591 | alias sc_attack_tb sc_attack; 592 | alias +se_attack2_tb +se_attack2; 593 | alias -se_attack2_tb -se_attack2; 594 | alias sc_attack2_tb sc_attack2; 595 | alias +se_attack3_tb +se_attack3; 596 | alias -se_attack3_tb -se_attack3; 597 | alias sc_attack3_tb sc_attack3; 598 | alias +se_ctx1_tb +se_ctx1; 599 | alias -se_ctx1_tb -se_ctx1; 600 | alias sc_ctx1_tb sc_ctx1; 601 | alias +se_ctx2_tb +se_ctx2; 602 | alias -se_ctx2_tb -se_ctx2; 603 | alias sc_ctx2_tb sc_ctx2; 604 | alias +se_ctx3_tb +se_ctx3; 605 | alias -se_ctx3_tb -se_ctx3; 606 | alias sc_ctx3_tb sc_ctx3; 607 | alias +se_ctx4_tb +se_ctx4; 608 | alias -se_ctx4_tb -se_ctx4; 609 | alias sc_ctx4_tb sc_ctx4; 610 | alias +se_ctx5_tb +se_ctx5; 611 | alias -se_ctx5_tb -se_ctx5; 612 | alias sc_ctx5_tb sc_ctx5; 613 | alias +se_ctx6_tb +se_ctx6; 614 | alias -se_ctx6_tb -se_ctx6; 615 | alias sc_ctx6_tb sc_ctx6; 616 | alias +se_ctx7_tb +se_ctx7; 617 | alias -se_ctx7_tb -se_ctx7; 618 | alias sc_ctx7_tb sc_ctx7; 619 | alias +se_ctx8_tb +se_ctx8; 620 | alias -se_ctx8_tb -se_ctx8; 621 | alias sc_ctx8_tb sc_ctx8; 622 | alias +se_misc1_tb +se_misc1; 623 | alias -se_misc1_tb -se_misc1; 624 | alias +se_misc2_tb +se_misc2; 625 | alias -se_misc2_tb -se_misc2; 626 | alias +se_misc3_tb +se_misc3; 627 | alias -se_misc3_tb -se_misc3; 628 | alias +se_misc4_tb +se_misc4; 629 | alias -se_misc4_tb -se_misc4; 630 | alias +se_misc5_tb +se_misc5; 631 | alias -se_misc5_tb -se_misc5; 632 | alias +se_misc6_tb +se_misc6; 633 | alias -se_misc6_tb -se_misc6; 634 | alias +se_misc7_tb +se_misc7; 635 | alias -se_misc7_tb -se_misc7; 636 | alias +se_misc8_tb +se_misc8; 637 | alias -se_misc8_tb -se_misc8; 638 | alias +se_forward_tb +se_forward; 639 | alias -se_forward_tb -se_forward; 640 | alias sc_forward_tb sc_forward; 641 | alias +se_back_tb +se_back; 642 | alias -se_back_tb -se_back; 643 | alias sc_back_tb sc_back; 644 | alias +se_moveleft_tb +se_moveleft; 645 | alias -se_moveleft_tb -se_moveleft; 646 | alias sc_moveleft_tb sc_moveleft; 647 | alias +se_moveright_tb +se_moveright; 648 | alias -se_moveright_tb -se_moveright; 649 | alias sc_moveright_tb sc_moveright; 650 | alias +se_jump_tb +se_jump; 651 | alias -se_jump_tb -se_jump; 652 | alias sc_jump_tb sc_jump; 653 | alias +se_duck_tb +se_duck; 654 | alias -se_duck_tb -se_duck; 655 | alias sc_duck_tb sc_duck; 656 | alias +se_callmed_tb +se_callmed; 657 | alias -se_callmed_tb -se_callmed; 658 | alias +se_voicerecord_tb +se_voicerecord; 659 | alias -se_voicerecord_tb -se_voicerecord; 660 | alias +se_voicemenu_1_tb +se_voicemenu_1; 661 | alias -se_voicemenu_1_tb -se_voicemenu_1; 662 | alias +se_voicemenu_2_tb +se_voicemenu_2; 663 | alias -se_voicemenu_2_tb -se_voicemenu_2; 664 | alias +se_voicemenu_3_tb +se_voicemenu_3; 665 | alias -se_voicemenu_3_tb -se_voicemenu_3; 666 | alias +se_changeclass_tb +se_changeclass; 667 | alias -se_changeclass_tb -se_changeclass; 668 | alias +se_changeteam_tb +se_changeteam; 669 | alias -se_changeteam_tb -se_changeteam; 670 | alias +se_loadout_tb +se_loadout; 671 | alias -se_loadout_tb -se_loadout; 672 | alias +se_backpack_tb +se_backpack; 673 | alias -se_backpack_tb -se_backpack; 674 | alias +se_dropitem_tb +se_dropitem; 675 | alias -se_dropitem_tb -se_dropitem; 676 | alias +se_action_slot_tb +se_action_slot; 677 | alias -se_action_slot_tb -se_action_slot; 678 | alias +se_showmapinfo_tb +se_showmapinfo; 679 | alias -se_showmapinfo_tb -se_showmapinfo; 680 | alias +se_inspect_tb +se_inspect; 681 | alias -se_inspect_tb -se_inspect; 682 | alias +se_lastdisguise_tb +se_lastdisguise; 683 | alias -se_lastdisguise_tb -se_lastdisguise; 684 | alias +se_reload_tb +se_reload; 685 | alias -se_reload_tb -se_reload; 686 | alias +se_spray_logo_tb +se_spray_logo; 687 | alias -se_spray_logo_tb -se_spray_logo; 688 | alias +se_showscores_tb +se_showscores; 689 | alias -se_showscores_tb -se_showscores; 690 | alias +se_quest_log_tb +se_quest_log; 691 | alias -se_quest_log_tb -se_quest_log; 692 | alias +se_askconnect_tb +se_askconnect; 693 | alias -se_askconnect_tb -se_askconnect; 694 | alias +se_ready_toggle_tb +se_ready_toggle; 695 | alias -se_ready_toggle_tb -se_ready_toggle; 696 | alias +se_screenshot_tb +se_screenshot; 697 | alias -se_screenshot_tb -se_screenshot; 698 | alias +se_save_replay_tb +se_save_replay; 699 | alias -se_save_replay_tb -se_save_replay; 700 | alias +se_abuse_report_tb +se_abuse_report; 701 | alias -se_abuse_report_tb -se_abuse_report; 702 | alias +se_quit_game_tb +se_quit_game; 703 | alias -se_quit_game_tb -se_quit_game; 704 | alias +se_replay_tips_tb +se_replay_tips; 705 | alias -se_replay_tips_tb -se_replay_tips; 706 | alias +se_cancelselect_tb +se_cancelselect; 707 | alias -se_cancelselect_tb -se_cancelselect; 708 | alias +se_askconnect_accept_tb +se_askconnect_accept; 709 | alias -se_askconnect_accept_tb -se_askconnect_accept; 710 | alias +se_loadout_0_tb +se_loadout_0; 711 | alias -se_loadout_0_tb -se_loadout_0; 712 | alias +se_loadout_1_tb +se_loadout_1; 713 | alias -se_loadout_1_tb -se_loadout_1; 714 | alias +se_loadout_2_tb +se_loadout_2; 715 | alias -se_loadout_2_tb -se_loadout_2; 716 | alias +se_loadout_3_tb +se_loadout_3; 717 | alias -se_loadout_3_tb -se_loadout_3; 718 | alias +se_slot1_tb +se_slot1; 719 | alias -se_slot1_tb -se_slot1; 720 | alias sc_slot1_tb sc_slot1; 721 | alias +se_slot2_tb +se_slot2; 722 | alias -se_slot2_tb -se_slot2; 723 | alias sc_slot2_tb sc_slot2; 724 | alias +se_slot3_tb +se_slot3; 725 | alias -se_slot3_tb -se_slot3; 726 | alias sc_slot3_tb sc_slot3; 727 | alias +se_slot4_tb +se_slot4; 728 | alias -se_slot4_tb -se_slot4; 729 | alias sc_slot4_tb sc_slot4; 730 | alias +se_slot5_tb +se_slot5; 731 | alias -se_slot5_tb -se_slot5; 732 | alias sc_slot5_tb sc_slot5; 733 | alias +se_slot6_tb +se_slot6; 734 | alias -se_slot6_tb -se_slot6; 735 | alias sc_slot6_tb sc_slot6; 736 | alias +se_lastinv_tb +se_lastinv; 737 | alias -se_lastinv_tb -se_lastinv; 738 | alias +se_invnext_tb +se_invnext; 739 | alias -se_invnext_tb -se_invnext; 740 | alias +se_invprev_tb +se_invprev; 741 | alias -se_invprev_tb -se_invprev; 742 | 743 | //////////////////////////////////////////////////////////////////// 744 | // Reset sticking keys 745 | //////////////////////////////////////////////////////////////////// 746 | -forward 747 | -back 748 | -moveleft 749 | -moveright 750 | -attack 751 | -attack2 752 | -attack3 753 | -jump 754 | -duck 755 | -crouch 756 | -moveup 757 | -movedown 758 | -lookup 759 | -lookdown 760 | -left 761 | -right 762 | -voicerecord 763 | -taunt 764 | -use_action_slot_item 765 | -inspect 766 | -reload 767 | -showscores 768 | -showroundinfo 769 | -------------------------------------------------------------------------------- /source/groups/attack.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | attack : +attack : MOUSE1 : spec_next 3 | attack2 : +attack2 : MOUSE2 : spec_prev 4 | attack3 : +attack3 : MOUSE3 5 | -------------------------------------------------------------------------------- /source/groups/attack.opt: -------------------------------------------------------------------------------- 1 | modifiers: yes 2 | callback: yes 3 | qswitch: no 4 | lastinv: 5 | invnext: 6 | invprev: -------------------------------------------------------------------------------- /source/groups/cntx.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | ctx1 3 | ctx2 4 | ctx3 5 | ctx4 6 | ctx5 7 | ctx6 8 | ctx7 9 | ctx8 -------------------------------------------------------------------------------- /source/groups/cntx.opt: -------------------------------------------------------------------------------- 1 | callback: yes 2 | modifiers: yes 3 | qswitch: no -------------------------------------------------------------------------------- /source/groups/misc.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | misc1 3 | misc2 4 | misc3 5 | misc4 6 | misc5 7 | misc6 8 | misc7 9 | misc8 -------------------------------------------------------------------------------- /source/groups/misc.opt: -------------------------------------------------------------------------------- 1 | callback: no 2 | modifiers: yes 3 | qswitch: no -------------------------------------------------------------------------------- /source/groups/movement.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | forward : +forward : w 3 | back : +back : s 4 | moveleft : +moveleft : a 5 | moveright : +moveright : d 6 | -------------------------------------------------------------------------------- /source/groups/movement.opt: -------------------------------------------------------------------------------- 1 | callback: yes 2 | modifiers: yes 3 | qswitch: no -------------------------------------------------------------------------------- /source/groups/movement_v.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | jump : +jump : space : spec_mode 3 | duck : +duck : ctrl : -------------------------------------------------------------------------------- /source/groups/movement_v.opt: -------------------------------------------------------------------------------- 1 | modifiers: yes 2 | callback: yes 3 | qswitch: no 4 | lastinv: 5 | invnext: 6 | invprev: -------------------------------------------------------------------------------- /source/groups/singletons.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | #this cannot be grouped toghether, therefore they dont have a callback 3 | callmed : voicemenu 0 0 : e 4 | voicerecord : +voicerecord : v 5 | voicemenu_1 : voice_menu_1 : z 6 | voicemenu_2 : voice_menu_2 : x 7 | voicemenu_3 : voice_menu_3 : c 8 | changeclass : changeclass : , 9 | changeteam : changeteam : . 10 | loadout : open_charinfo_direct : m 11 | backpack : open_charinfo_backpack : n 12 | dropitem : dropitem : l 13 | action_slot : +use_action_slot_item : h 14 | showmapinfo : showmapinfo : i 15 | inspect : +inspect : f 16 | lastdisguise : lastdisguise : b 17 | reload : +reload; +attack3 : r 18 | spray_logo : impulse 201 : t 19 | showscores : +showscores : tab 20 | quest_log : show_quest_log : f2 21 | askconnect : askconnect_accept : f3 22 | ready_toggle : player_ready_toggle : f4 23 | screenshot : screenshot : f5 24 | save_replay : save_replay : f6 25 | abuse_report : abuse_report_queue : f7 26 | quit_game : quit prompt : f10 27 | replay_tips : replay_togglereplaytips : f12 28 | cancelselect : cancelselect : ESCAPE 29 | askconnect_accept : askconnect_accept : j 30 | loadout_0 : load_itempreset 0 31 | loadout_1 : load_itempreset 1 32 | loadout_2 : load_itempreset 2 33 | loadout_3 : load_itempreset 3 -------------------------------------------------------------------------------- /source/groups/singletons.opt: -------------------------------------------------------------------------------- 1 | modifiers: yes 2 | callback: no 3 | qswitch: no 4 | lastinv: 5 | invnext: 6 | invprev: -------------------------------------------------------------------------------- /source/groups/slot.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | slot1 : slot1 : 1 : : slot2 : slot3 3 | slot2 : slot2 : 2 : : slot3 : slot1 4 | slot3 : slot3 : 3 : : slot1 : slot2 5 | slot4 : slot4 : 4 : : slot1 : slot3 6 | slot5 : slot5 : 5 : : slot1 : slot3 7 | slot6 : slot6 : 6 : : slot1 : slot3 8 | lastinv : : q 9 | invnext : : mwheelup 10 | invprev : : mwheeldown -------------------------------------------------------------------------------- /source/groups/slot.opt: -------------------------------------------------------------------------------- 1 | modifiers: yes 2 | callback: yes 3 | qswitch: yes 4 | lastinv: lastinv 5 | invnext: invnext 6 | invprev: invprev -------------------------------------------------------------------------------- /source/groups/taunt.grp: -------------------------------------------------------------------------------- 1 | #name : def_func : def_bind : secondary_action : invnext : invprev 2 | #since taunt menu uses custom binds not available to scripters, i had to make some workarounds 3 | taunt : +taunt : #this one brings up the menu 4 | taunt_def : taunt : k #this one uses default taunt 5 | taunt1 : taunt 1 #these are used to bypass taunt menu 6 | taunt2 : taunt 2 7 | taunt3 : taunt 3 8 | taunt4 : taunt 4 9 | taunt5 : taunt 5 10 | taunt6 : taunt 6 11 | taunt7 : taunt 7 12 | taunt8 : taunt 8 -------------------------------------------------------------------------------- /source/groups/taunt.opt: -------------------------------------------------------------------------------- 1 | modifiers: no 2 | callback: no 3 | qswitch: no 4 | lastinv: 5 | invnext: 6 | invprev: -------------------------------------------------------------------------------- /source/modifiers.grp: -------------------------------------------------------------------------------- 1 | pa : press 2 | pb : press 3 | ta : toggle 4 | tb : toggle -------------------------------------------------------------------------------- /source/prefabs/built_ins.pre: -------------------------------------------------------------------------------- 1 | //Built in scripts are going here 2 | //the famous null-canceling movement script 3 | 4 | alias +u_forward "-fd_back;+fd_forward;alias checkfwd +fd_forward" 5 | alias +u_back "-fd_forward;+fd_back;alias checkback +fd_back" 6 | alias +u_moveleft "-fd_moveright;+fd_moveleft;alias checkleft +fd_moveleft" 7 | alias +u_moveright "-fd_moveleft;+fd_moveright;alias checkright +fd_moveright" 8 | alias -u_forward "-fd_forward;checkback;alias checkfwd none" 9 | alias -u_back "-fd_back;checkfwd;alias checkback none" 10 | alias -u_moveleft "-fd_moveleft;checkright;alias checkleft none" 11 | alias -u_moveright "-fd_moveright;checkleft;alias checkright none" 12 | alias checkfwd none 13 | alias checkback none 14 | alias checkleft none 15 | alias checkright none 16 | alias none "" -------------------------------------------------------------------------------- /source/prefabs/def_binds.pre: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////// 2 | // Default binds 3 | //////////////////////////////////////////////////////////////////// 4 | 5 | //Here are some binds that cannot be substituted with aliases 6 | bind f1 lastinv; //this one is used only to close taunt menu 7 | bind g +taunt; //taunt menu uses custom rebind, therefore i could not substitute the functionality with alises 8 | 9 | //notification interaction aliases 10 | bind = cl_trigger_first_notification 11 | bind - cl_decline_first_notification 12 | 13 | //chat 14 | bind y say 15 | bind u say_team 16 | 17 | //keypad binds for ease of use 18 | bind KP_END KP_1 19 | bind KP_DOWNARROW KP_2 20 | bind KP_PGDN KP_3 21 | bind KP_LEFTARROW KP_4 22 | bind KP_5 KP_5 23 | bind KP_RIGHTARROW KP_6 24 | bind KP_HOME KP_7 25 | bind KP_UPARROW KP_8 26 | bind KP_PGUP KP_9 27 | 28 | //Automatically generated binds below -------------------------------------------------------------------------------- /source/prefabs/def_funct.pre: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////// 2 | // Default functions 3 | //////////////////////////////////////////////////////////////////// 4 | 5 | //These are useful aliases that people might want to use 6 | //Communication commands 7 | //shamelessly stolen from /u/Tvde1 8 | alias v_medic "voicemenu 0 0" 9 | alias v_thanks "voicemenu 0 1" 10 | alias v_gogogo "voicemenu 0 2" 11 | alias v_moveup "voicemenu 0 3" 12 | alias v_goleft "voicemenu 0 4" 13 | alias v_goright "voicemenu 0 5" 14 | alias v_yes "voicemenu 0 6" 15 | alias v_no "voicemenu 0 7" 16 | 17 | alias v_incoming "voicemenu 1 0" 18 | alias v_cloakedspy "voicemenu 1 1" 19 | alias v_sentryahead "voicemenu 1 2" 20 | alias v_teleporterhere "voicemenu 1 3" 21 | alias v_dispenserhere "voicemenu 1 4" 22 | alias v_sentryhere "voicemenu 1 5" 23 | alias v_activateuber "voicemenu 1 6" 24 | alias v_uberready "voicemenu 1 7" 25 | 26 | alias v_help "voicemenu 2 0" 27 | alias v_battlecry "voicemenu 2 1" 28 | alias v_cheers "voicemenu 2 2" 29 | alias v_jeers "voicemenu 2 3" 30 | alias v_positive "voicemenu 2 4" 31 | alias v_negative "voicemenu 2 5" 32 | alias v_niceshot "voicemenu 2 6" 33 | alias v_goodjob "voicemenu 2 7" 34 | 35 | //Engi build menus 36 | alias b_dispenser "build 0 0" 37 | alias b_tele_in "build 1 0" 38 | alias b_tele_out "build 1 1" 39 | alias b_sentry "build 2 0" 40 | alias b_sapper "build 3 0" //Spy can build sappers, WTF 41 | 42 | alias d_dispenser "destroy 0 0" 43 | alias d_tele_in "destroy 1 0" 44 | alias d_tele_out "destroy 1 1" 45 | alias d_sentry "destroy 2 0" 46 | //no sapper destrying, :( 47 | 48 | //Engi eurika teleport 49 | alias etp_spawn "eureka_teleport 0" 50 | alias etp_tpexit "eureka_teleport 1" 51 | 52 | //fast team join 53 | 54 | alias join_red jointeam red 55 | alias join_blu jointeam blue 56 | alias join_auto jointeam auto 57 | alias join_spec jointeam spectator 58 | 59 | //fast class join 60 | 61 | alias c_scout join_class scout 62 | alias c_soldier join_class soldier 63 | alias c_pyro join_class pyro 64 | alias c_demoman join_class demoman 65 | alias c_heavy join_class heavyweapons 66 | alias c_engineer join_class engineer 67 | alias c_medic join_class medic 68 | alias c_sniper join_class sniper 69 | alias c_spy join_class spy 70 | 71 | //spy fast disguise 72 | //enemy classes 73 | alias dg_e_scout "disguise 1 -1" 74 | alias dg_e_sniper "disguise 2 -1" 75 | alias dg_e_soldier "disguise 3 -1" 76 | alias dg_e_demoman "disguise 4 -1" 77 | alias dg_e_medic "disguise 5 -1" 78 | alias dg_e_heavy "disguise 6 -1" 79 | alias dg_e_pyro "disguise 7 -1" 80 | alias dg_e_spy "disguise 8 -1" 81 | alias dg_e_engineer "disguise 9 -1" 82 | //friendly classes 83 | alias dg_f_scout "disguise 1 -2" 84 | alias dg_f_sniper "disguise 2 -2" 85 | alias dg_f_soldier "disguise 3 -2" 86 | alias dg_f_demoman "disguise 4 -2" 87 | alias dg_f_medic "disguise 5 -2" 88 | alias dg_f_heavy "disguise 6 -2" 89 | alias dg_f_pyro "disguise 7 -2" 90 | alias dg_f_spy "disguise 8 -2" 91 | alias dg_f_engineer "disguise 9 -2" 92 | 93 | //show text on hud, stolen from /u/Tvde1 94 | con_filter_text_out 0 95 | alias showonscreen "developer 1; clear; d_separator; wait 10; message; wait 10; d_separator; con_filter_enable 1; contimes 6; con_notifytime 10; wait 440; developer 0; con_notifytime 8 ; contimes 8; con_filter_enable 0" 96 | con_filter_text_out " " 97 | alias d_separator "echo [------------------------------------------------------------]" 98 | alias message "echo No message..." 99 | 100 | //automaticly generated aliases -------------------------------------------------------------------------------- /source/prefabs/execs.pre: -------------------------------------------------------------------------------- 1 | exec resets 2 | exec groups 3 | exec modifiers -------------------------------------------------------------------------------- /source/prefabs/groups.pre: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////// 2 | // groups definition 3 | //////////////////////////////////////////////////////////////////// -------------------------------------------------------------------------------- /source/prefabs/reset.pre: -------------------------------------------------------------------------------- 1 | //PAST THIS POINT THERE'S NOTHING INTERESTING 2 | 3 | //////////////////////////////////////////////////////////////////// 4 | // Reset values to null 5 | //////////////////////////////////////////////////////////////////// -------------------------------------------------------------------------------- /source/prefabs/title.pre: -------------------------------------------------------------------------------- 1 | echo "/////////////////////////////////////////////////////////" 2 | echo "//// EASYSCRIPT ////" 3 | echo "//// by FanciestBanana ////" 4 | echo "//// LOADED ////" 5 | echo "/////////////////////////////////////////////////////////" 6 | 7 | alias none "" -------------------------------------------------------------------------------- /source/prefabs/unstick.pre: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////// 2 | // Reset sticking keys 3 | //////////////////////////////////////////////////////////////////// 4 | -forward 5 | -back 6 | -moveleft 7 | -moveright 8 | -attack 9 | -attack2 10 | -attack3 11 | -jump 12 | -duck 13 | -crouch 14 | -moveup 15 | -movedown 16 | -lookup 17 | -lookdown 18 | -left 19 | -right 20 | -voicerecord 21 | -taunt 22 | -use_action_slot_item 23 | -inspect 24 | -reload 25 | -showscores 26 | -showroundinfo --------------------------------------------------------------------------------