Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Maybe try Uncle Danes script for it:
it is working, i did try it. im just trying to figure out how to toggle the teleport. currently, in order to teleport to the exit teleporter, you have to hold shift, and press b. instead, what i want is you press shift, and you go to your exit teleporter. when you press shift then b again, it teleports me to spawn. im basically turning shift into a togglable button
this is basically solarlight's code but i made it togglable, cuz i can
yeah
/////////////////////////////////////////////////////
// SolarLight's Fast Eureka Effect Teleport Script w/Toggle by ❮ϟ𝟑 //
/////////////////////////////////////////////////////
bind b +teleport
alias +teleport slot3
alias -teleport Teleport_To_Spawn
alias Teleport_To_Spawn "eureka_teleport 0"
alias Teleport_To_Exit "eureka_teleport 1"
alias toggleon "bind b Teleport_To_Exit; bind ctrl toggleoff"
alias toggleoff "bind b Teleport_To_Spawn; bind ctrl toggleon"
bind ctrl toggleon
/////////////////////////////////////////////////////////
https://steamcommunity.com/app/440/discussions/0/537402115088044387/
i also put it in autoexec.cfg but it still isnt auto starting any help?
did you do exec autoexec in console?
also, just copy the script into notepad++ or any coding program, save it as a cfg, then move it into Steam\steamapps\common\Team Fortress 2\tf\cfg
if you want more info on scripts, heres the wiki on it
https://wiki.teamfortress.com/wiki/Scripting
and here's the shorthand version
https://www.gamefaqs.com/boards/437678-team-fortress-2/56828849
also any binds that you typed out replaces any binds in the keyboard binds under options.
ex: spy's last diguise default button is b, but the "eureka effect teleport back to spawn" button is b, so the script overrides it and replaces it
sorry if its kinda confusing
/////////////////////////////////////////////////////
// The Nutcrack's Eureka Effect Fast Teleport Script (no toggle)//
/////////////////////////////////////////////////////
bind h +telespawn
alias +telespawn slot3
alias -telespawn "eureka_teleport"
bind shift +teleexit
alias +teleexit slot3
alias -teleexit "eureka_teleport 1"
/////////////////////////////////////////////////////////