number of arcane charges

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

number of arcane charges

#1 Post by lisa »

figured I would find the address for number of arcane charges

looks like this

Code: Select all

arcane = memoryReadUInt(getProc(), 0x9DFE7C)
So you can do

Code: Select all

if arcane > 0 then 
--do some transmuting
end
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: number of arcane charges

#2 Post by rock5 »

To tell you the truth, I don't think it's necessary. I think we need to think about when we need to get something from memory. Information that's needed infrequently could just as easily be gotten from an in game function and will still work if the addresses change. The real benefit of getting info from memory is when you need to check it many times and quickly, like in a loop. If it's something you are going to get in just one place in a waypoint file, your better off using an in game function.

What do you think?
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
User avatar
lisa
Posts: 8332
Joined: Tue Nov 09, 2010 11:46 pm
Location: Australia

Re: number of arcane charges

#3 Post by lisa »

Yeah I've just got around 4000 charges to use up, so I figure memory would be better then in game function in my case.
Remember no matter you do in life to always have a little fun while you are at it ;)

wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: number of arcane charges

#4 Post by rock5 »

Well, you get what I mean anyway.

But actually, my "Fusion_MakeMaxStones" function uses in game functions for transmutor energy, in a loop. But seeing as it uses the in game "Fusion" addon to do the actual fusing, I don't think it would go faster to use the memory value.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
User avatar
OneofMany
Posts: 119
Joined: Mon May 09, 2011 2:30 am

Re: number of arcane charges

#5 Post by OneofMany »

Bringing an old topic up. In my new project i would need this too as i want to check if i got enough charges still. Else buy some with the function Rock wrote.
Its not about cheating. Its about being smarter than the game...
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: number of arcane charges

#6 Post by rock5 »

charges = RoMScript("GetMagicBoxEnergy()")
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan
User avatar
OneofMany
Posts: 119
Joined: Mon May 09, 2011 2:30 am

Re: number of arcane charges

#7 Post by OneofMany »

Thnx m8
Its not about cheating. Its about being smarter than the game...
Post Reply