Page 1 of 1

Mana Stone Bot question

Posted: Sat May 01, 2010 6:19 pm
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.

Re: Mana Stone Bot question

Posted: Sun May 02, 2010 12:13 am
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.

Re: Mana Stone Bot question

Posted: Mon May 03, 2010 11:09 am
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

Re: Mana Stone Bot question

Posted: Mon May 03, 2010 12:46 pm
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.