I've seen some jumpers do it on screen I was wondering how you can do it for jump maps and not needing to be on a server. Anyone know?
getpos and setpos, use the info you got from getpos to make a bind for setpos
neon_getpos and setpos, use the info you got from getpos to make a bind for setpos
Thank you very much!
Thank you very much!
I think you need to lower height after getting the coordinates from getpos though? Otherwise you'll spawn in midair or get stuck in a ceiling. At least that's in my experience.
I'm pretty sure that you can download the plugins that jump servers use and do that locally (so you could do /s or /bcheck)
InhakeI think you need to lower height after getting the coordinates from getpos though? Otherwise you'll spawn in midair or get stuck in a ceiling. At least that's in my experience.
i think you can use setpos_exact to get around this
i think you can use setpos_exact to get around this
sv_cheats "1"
sv_allow_wait_command "1"
//Offline Teleports
con_timestamp 0
con_logfile console.log
//Binds
bind F1 gotoPosition1
bind ALT +savePosition
//Code
alias +savePosition "bind F1 savePosition1"
alias -savePosition "bind F1 gotoPosition1"
alias resetLogfile "con_logfile console.log"
alias savePosition1 "con_logfile cfg/position1; getpos; resetLogfile;"
alias gotoPosition1 "impulse 101;setpos 9999 9999;wait 100;exec position1.log"
echo "##### Listen server teleports loaded #####"
echo "# Use <Alt> + <F1> to save a location #"
echo "# Use <F1> to teleport to that location #"
sv_allow_wait_command "1"
//Offline Teleports
con_timestamp 0
con_logfile console.log
//Binds
bind F1 gotoPosition1
bind ALT +savePosition
//Code
alias +savePosition "bind F1 savePosition1"
alias -savePosition "bind F1 gotoPosition1"
alias resetLogfile "con_logfile console.log"
alias savePosition1 "con_logfile cfg/position1; getpos; resetLogfile;"
alias gotoPosition1 "impulse 101;setpos 9999 9999;wait 100;exec position1.log"
echo "##### Listen server teleports loaded #####"
echo "# Use <Alt> + <F1> to save a location #"
echo "# Use <F1> to teleport to that location #"