Upvote Upvoted 0 Downvote Downvoted
Saving location in local server
posted in Q/A Help
1
#1
0 Frags +

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?

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?
2
#2
4 Frags +

getpos and setpos, use the info you got from getpos to make a bind for setpos

getpos and setpos, use the info you got from getpos to make a bind for setpos
3
#3
2 Frags +
neon_getpos and setpos, use the info you got from getpos to make a bind for setpos

Thank you very much!

[quote=neon_]getpos and setpos, use the info you got from getpos to make a bind for setpos[/quote]
Thank you very much!
4
#4
0 Frags +

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 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.
5
#5
0 Frags +

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)

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)
6
#6
1 Frags +
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

[quote=Inhake]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.[/quote]

i think you can use setpos_exact to get around this
7
#7
2 Frags +

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_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 #"
Please sign in through STEAM to post a comment.