Go to file
Paco Hope e5c5b10420 added CLI identifier and setuptools 2022-08-06 22:13:30 -04:00
.vscode moved to new locations 2022-08-06 21:45:36 -04:00
src/tfscript Moved from tfscript.py 2022-08-06 22:12:31 -04:00
tests moved to new locations 2022-08-06 21:45:36 -04:00
.gitignore Added cfg/* and .DS_Store 2022-08-02 13:47:11 -04:00
LICENSE Initial commit 2022-06-12 13:41:34 -04:00
README.md Added content and an example 2022-06-16 20:04:31 -04:00
pylintrc Added pylintrc file for pylint 2022-06-15 09:28:45 -04:00
pyproject.toml added CLI identifier and setuptools 2022-08-06 22:13:30 -04:00
requirements.txt added pylint 2022-06-15 09:28:59 -04:00

README.md

Hello and welcome to tfscript!

Basic overview

tfscript is meant to simplify the complexity of creating tf2 keybinds. While simple binds may be easy, more complex actions such as key combinations and toggles can be quite complex.

For example, this config will bind "e" to call for medic, unless mouse4 is held, in which case it will call for an ÜberCharge:

alias call_for_medic "voicemenu 0 0"
alias call_for_uber  "voicemenu 1 6"
alias e_bind call_for_medic
bind e e_bind
alias +toggle_state "alias e_bind call_for_uber"
alias -toggle_state "alias e_bind call_for_medic"
bind mouse4 "+toggle_state"

There are some issues with this:

  • It is quite verbose, and if several of these exist the file can become difficult to traverse
  • There is a lack of clarity in the voicemenu command, only the bind name explains what it does
  • If either "mouse4" or "e" had a prior function, it has now been overwritten
  • The scope is dictated by what .cfg file this is located within, which can cause problems

 

The tfscript way of doing this is

default:
  e:
    double:
      primary:
        impulse: voice "medic"
      secondary:
        impulse: voice "activate uber"
      condition: mouse4

There are several benefits to this:

  • The indentation allows for easier scanning of the file
  • The voicemenu commands have been replaced with the clearer "voice" impulse
  • Since this is within the default section, it is clear that there are is no "prior function" to overwrite and this will apply to all classes unless specifically overwritten.

Known issues, problems, etc.

none everything is perfect and there are no problems it is all amazing