Mana Stone Bot question

Runes of Magic/Radiant Arcana (http://www.runesofmagic.com)
Post Reply
Message
Author
Nebojsha
Posts: 25
Joined: Sun Nov 15, 2009 10:13 am

Mana Stone Bot question

#1 Post by Nebojsha »

Would it be possible to make something like this: leveler1 levels to 10, goes and takes at quest, completes it, goes to mail and takes all stuff that is inside. Using fusion addon he makes 2t4 and 2t3 mana stones and sends them to offshorechar1 via mail addon. Thanks in advance.
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Mana Stone Bot question

#2 Post by rock5 »

Fusion is great, isn't it. I discovered it recently. Wish I had it way back when I was making tiered stones.

My "T6 making 1-10 script" reaches the Obsidian Stronghold mail box and waits for me to collect my mail, then goes and buys the correct number of belts and fusion stones. I never looked into automating mailbox functions because I don't like scripts that need the window to be active and fusion wasn't available back then.

I have a couple of ideas though.

1. If you have Fusion set up correctly already all you should need to do is call the function that executes when you click the start button. I believe this is Fusion_QueueManastones() so you can try:
sendMacro("Fusion_QueueManastones()"). I don't believe the fusion box needs to be open.

2. My script works out how many belts and fusion stones to buy based on how many mana stones it received from previous characters. If you are interested in this let me know.

3. If you automate the mailbox functions you would probably need a list of character names which would have to be edited for each set of 4 characters. You could then use that list to decide what to send to who. Also if you have this list you could use it to decide how many belts and stones to buy making my second point obsolete.

To make one thing clear, there is no way to open the mailbox except click on it with the mouse so the window needs to be active. The only exception to this are NPC mailboxes but there are none accessible to a 1-10 character.
  • 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
Nebojsha
Posts: 25
Joined: Sun Nov 15, 2009 10:13 am

Re: Mana Stone Bot question

#3 Post by Nebojsha »

Thanks for the reply. Up till now I use default script, without any changes and have decided to experiment a bit, so Im complete newb at scripting.
Thanks for the suggestion, will try this with fusion. If you can, explain me the way how the characters buy belts, it would be great help to me. Thanks alot
User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Mana Stone Bot question

#4 Post by rock5 »

Nebojsha wrote:Thanks for the reply. Up till now I use default script, without any changes and have decided to experiment a bit, so Im complete newb at scripting.
Thanks for the suggestion, will try this with fusion. If you can, explain me the way how the characters buy belts, it would be great help to me. Thanks alot

Code: Select all

player:target_NPC(NPCName) -- start conversation with merchant
sendMacro("ChoiceOption(1);"); yrest(1500); -- choose option open shop
sendMacro("StoreBuyItem(num)"); yrest(1000); -- buy an item
I suggest you do a fair bit of reading here before asking anymore noob questions like that or there would be too much repetition.
  • 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
Post Reply