Page 1 of 1

Party stuff, need some advice

Posted: Wed Nov 30, 2011 3:55 am
by sfrattini
Hi guys,

I have been running my DoD Mad Mallen Bot it for a while so far and I am quite happy about the results, however I would like to optimize meme collection by including a party of Alts in the bot.
Here is my question, is it possible from a script to start another char? Let me explain what I would like to do:

Step 1. Make party with alt - No problem
Step 2. Enter DoD, kill mobs, walk in front of Mad Mallen and stop there - No problem
Step 3. here is the difficult part -> switch to alt who is waiting outside, enter DoD and stop in the middle of corridor.
Step 4. Repeat step 3 for rest of the Alts
Step 5. Switch back to main, Kill Mad mallen, loot - No problem
Step 6. Switch to alts and go looting meme
Step 7. one by one go back to portal

So basically it would be great if somehow with 1 bot window I am able to switch from one char to another and load the proper paths....possible?

Thanks in advance!

Re: Party stuff, need some advice

Posted: Wed Nov 30, 2011 4:33 am
by lisa
Untested but you can try using this

Code: Select all

selectGame("charactername")
player:update()
Obviously change charactername to the characters name.
Then load path you want to use to move char.

Keep in mind this isn't reloading any profile information so if you want to use any skills you will need to do a load profile aswell.


--=== Added ===--
Actually that won't do what you want on it's own, I'll need to spend more time on this.
I might look into it later tonight but yes it is possible.

Re: Party stuff, need some advice

Posted: Wed Nov 30, 2011 4:40 am
by sfrattini
lisa wrote:Untested but you can try using this

Code: Select all

selectGame("charactername")
player:update()
Obviously change charactername to the characters name.
Then load path you want to use to move char.

Keep in mind this isn't reloading any profile information so if you want to use any skills you will need to do a load profile aswell.
Thanks Lisa, will give it a try definitely.
The Idea is just to use just loot function, no skills.

Re: Party stuff, need some advice

Posted: Wed Nov 30, 2011 4:43 am
by lisa
I edited while you were posting, it won't work on it's own.
I'll look into it later tonight.
At very least you will need

Code: Select all

detach();
yrest(500)
attach(getWin("charactername"));
player:update()
but pretty sure more will be needed to do it.