Toggleable Speedhack

Posts 115 of 17 · Page 1 of 2
Toggleable Speedhack
I'm looking for a speedhack that i can toggle on and off in-game. Cheat engine is too hard to come back to, hera's speedhack doesn't work for me. And I also came across a speed hack where you make autoexec.cfg... That doesn't work either. If someone can get me one, it'd be greatly appreciated. Thanks.
alias "toggle_speedhack1" "host_timescale 7;alias toggle_speedhack toggle_speedhack2"
alias "toggle_speedhack2" "host_timescale 1;alias toggle_speedhack toggle_speedhack1"
alias "toggle_speedhack" "toggle_speedhack1"
bind "key" "toggle_speedhack"
Quote Originally Posted by Blue Kirby View Post
alias "toggle_speedhack1" "host_timescale 7;alias toggle_speedhack toggle_speedhack2"
alias "toggle_speedhack2" "host_timescale 1;alias toggle_speedhack toggle_speedhack1"
alias "toggle_speedhack" "toggle_speedhack1"
bind "key" "toggle_speedhack"
Hmmm... so is this lua? or concommand?
Here ya go man:
Code:
alias +sh "host_framerate 12"; alias -sh "host_framerate 0"; bind g +sh
Put that in console... hold g to enable, press g and shift to speedsprint
Simple.
Thanks man
Quote Originally Posted by bezer123 View Post
Thanks man
No probs I use this all the time actually, on DarkRP it's kinda slow because there is some AntiCheat stopping it, it still works, just not as good. If you look at the ground when using it, for some reason it is faster O.o
Also, on stronghold it works amazingly.
Should've checked through the threads though.
It's been posted before in several variations.
Quote Originally Posted by Gray View Post
Should've checked through the threads though.
It's been posted before in several variations.
true lawwwwlllllllll <--- 10 CHARACTERS WHAT NOW !??!? lol

---------- Post added at 04:31 PM ---------- Previous post was at 04:29 PM ----------

Btw you need a bypass like Abyss or Gnome's multibypass I use gnome cuz it haz that one extra feature that countz
Quote Originally Posted by bezer123 View Post
Thanks man
Im a noob sorry XD, but would i bind it like this "bind g "+speed; -speed""?
Have a lua version that is a bit better because you can easily change the speed with a ConVar, you need cvar3:

Code:
require("cvar3")

function Speed()
	local cheats = GetConVar("sv_cheats")
	local timescale = GetConVar("host_timescale")

	cheats:SetValue(1)
	timescale:SetValue(GetConVarNumber("speed_num"))
end

function OffSpeed()
        local cheats = GetConVar("sv_cheats")
	local timescale = GetConVar("host_timescale")

	cheats:SetValue(0)
	timescale:SetValue(1)
end

concommand.Add("+speed", Speed)
concommand.Add("-speed", OffSpeed)
CreateClientConVar("speed_num", "5")
None of these work for me now.
Quote Originally Posted by Forlornblade View Post
None of these work for me now.
You need a bypass with sv_cheats.
Host_framerate/timescale require sv_cheats to be on clientside.
Quote Originally Posted by wuat View Post
You need a bypass with sv_cheats.
Host_framerate/timescale require sv_cheats to be on clientside.
Oh okay thanks for the info.
alias "toggle_speedhack1" "host_timescale 7;alias toggle_speedhack toggle_speedhack2"
alias "toggle_speedhack2" "host_timescale 1;alias toggle_speedhack toggle_speedhack1"
alias "toggle_speedhack" "toggle_speedhack1"
bind "key" "toggle_speedhack"
alias "+speedhack" "host_timescale 7;"
alias "-speedhack" "host_timescale 1;"
bind "key" "+speedhack"

Sorry, I couldn't stand to see bad code- even for console aliasing.
Posts 115 of 17 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?