Here is the Dawn of War hack
autoexec.lua
you have to put the -dev after the program run command
+++++++++under+++++++here
bind( "shift+F1", "vslow()" )
bind( "shift+F2", "slow()" )
bind( "shift+F3", "standard()" )
bind( "shift+F4", "fast()" )
bind( "shift+F5", "vfast()" )
function vslow()
setsimrate( 2.5 );
end
function slow()
setsimrate( 3.5 );
end
function standard()
setsimrate( 4.5 );
end
function fast()
setsimrate( 5.5 );
end
function vfast()
setsimrate( 10 );
end
screenmode = 0
function toggle_screenmode()
if screenmode == 0 then
taskbar_hide()
message_hide()
screenmode = 1
else
taskbar_show()
message_show()
screenmode = 0
end
end
bind("shift+tab", "toggle_screenmode()")
+++++++++above+++++++here
Best Wishes
Mitch
mitchtanz
Member Since 19 Apr 2007Offline Last Active May 03 2007 01:09 AM