Page 1 of 1

multihack

Posted: Tue Aug 01, 2023 5:50 am
by Sasuke
a few years ago there was a file called "romeo's multihack" that allowed you to fly and use other functions in the game. I need to know how to fly to do some things in the game, and that's the only thing. Thank you

Re: multihack

Posted: Tue Aug 01, 2023 8:23 pm
by Drewww
You might be looking for
viewtopic.php?t=4984

Re: multihack

Posted: Thu Aug 03, 2023 10:48 am
by Sasuke
from 2013...not works for many reasons.....admin can supp our conversation pls ?

Re: multihack

Posted: Thu Aug 03, 2023 2:52 pm
by Administrator
If all you need is to fly, it's included by default. The function
fly()
will enable flying, and
flyoff()
will disable flying.

So you can just create a waypoint like this:

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
fly();
</onLoad>
</waypoints>
Running that waypoint would enable flying.

Something like this should also work:

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
<onLoad>
proc = getProc()
print("Press PAGEUP to fly. Press PAGEDOWN to stop flying")

while (true) do
    if( keyPressed(key.VK_PAGEUP) ) then
        fly()
        print("Enabled flying")
    end
    
    if( keyPressed(key.VK_PAGEDOWN) ) then
        flyoff()
        print("Disabled flying")
    end
end

</onLoad>
</waypoints>
Untested, but should work.

Re: multihack

Posted: Sat Aug 05, 2023 8:52 am
by Sasuke
I WILL TRY. TY AS ALWAYS:)