multihack

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Sasuke
Posts: 503
Joined: Mon May 17, 2010 3:40 pm
Location: Poland

multihack

#1 Post by Sasuke » Tue Aug 01, 2023 5:50 am

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

Drewww
Posts: 10
Joined: Sun Jul 30, 2023 7:06 pm

Re: multihack

#2 Post by Drewww » Tue Aug 01, 2023 8:23 pm

You might be looking for
viewtopic.php?t=4984

Sasuke
Posts: 503
Joined: Mon May 17, 2010 3:40 pm
Location: Poland

Re: multihack

#3 Post by Sasuke » Thu Aug 03, 2023 10:48 am

from 2013...not works for many reasons.....admin can supp our conversation pls ?

User avatar
Administrator
Site Admin
Posts: 5307
Joined: Sat Jan 05, 2008 4:21 pm

Re: multihack

#4 Post by Administrator » Thu Aug 03, 2023 2:52 pm

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.

Sasuke
Posts: 503
Joined: Mon May 17, 2010 3:40 pm
Location: Poland

Re: multihack

#5 Post by Sasuke » Sat Aug 05, 2023 8:52 am

I WILL TRY. TY AS ALWAYS:)

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 14 guests