Advance Party Search Macro REVISED : MAY 10, 2010

Moderator: Moderators

Message
Author
Mortimal
Developers
Developers
Posts: 389
Joined: 01 Nov 2008, 15:31
Noob?: No

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#41 Post by Mortimal »

x)

add a condition:

Code: Select all

automacro weight {
overrideAI 1
exclusive 1
run-once 1
priority 1
mapchange any
call {
        $mymap = $.map
        if ($mymap != $town) goto nostore
        do autostorage
        :nostore
        release weight
    }
}
Please use pin function for uploading your file contents!

bakamro
Noob
Noob
Posts: 10
Joined: 19 Dec 2010, 16:46
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#42 Post by bakamro »

hmm still doesnt work... it triggers on change map but still doesnt autostorage... i try to edit the slave party search ... thx 4 ur time

bakamro
Noob
Noob
Posts: 10
Joined: 19 Dec 2010, 16:46
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#43 Post by bakamro »

I somehow managed to get it to sell and storage but it does double storage and the findMaster macro stops... how do i reactivate it ?

Code: Select all

automacro weight {
	overrideAI 1
	exclusive 1
	run-once 1
	priority 1
	mapchange any
	call {
		$mymap = $.map
		$town = @config (saveMap)
		if ($mymap != $town) goto nostore
			lock all
			do autostorage
			do autosell
			stop
		:nostore
		release all	
	}
}

bakamro
Noob
Noob
Posts: 10
Joined: 19 Dec 2010, 16:46
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#44 Post by bakamro »

Ok, i managed to get the condition rite.. its working when im at geffen.. but its not working at yuno. Why is that ?

Problem solved

gmslave
Noob
Noob
Posts: 9
Joined: 16 Feb 2009, 03:48
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#45 Post by gmslave »

thanks for this macro.

the Master walk-away too far because the Slave was buffing magni/kyrie/assump

how to resolve?

chuechue
Noob
Noob
Posts: 2
Joined: 25 Feb 2011, 09:13
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#46 Post by chuechue »

is it i put those code into /control/macro.txt ?

rebagay23
Noob
Noob
Posts: 1
Joined: 01 Mar 2011, 01:14
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#47 Post by rebagay23 »

@madshark sir i found 1 bug in your wait macro. The Master also wait for other Slaves or priest that are not in the party that is casting the said skills. any solution?

jbron
Noob
Noob
Posts: 16
Joined: 18 Oct 2010, 08:42
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#48 Post by jbron »

Hi,

I got some problem with this macro....the slave (the priest) goes to the other maps, it did not follow the master...any idea? I already put the name of the master in followTarget, I also put the same lockmap....please help me...this happens when the master and the slave died..thanks!

madshark
Noob
Noob
Posts: 10
Joined: 02 Jan 2009, 12:48
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#49 Post by madshark »

rebagay23 wrote:@madshark sir i found 1 bug in your wait macro. The Master also wait for other Slaves or priest that are not in the party that is casting the said skills. any solution?

i'll try my best to improve the code when i got the time..cheers..long time not botting..i guess i forgot how to code right now..haha :lol:

loveu8
Noob
Noob
Posts: 2
Joined: 19 Oct 2010, 21:08
Noob?: Yes

Re: Advance Party Search Macro REVISED : MAY 10, 2010

#50 Post by loveu8 »

Thank All share!!!~
---
I try rewrite gamenikko's Macro.
This Macro's Master will not move to slave's position.
It always let Slave go to find Master.
If you like it,maybe you can test it and rewrite.
---

Code: Select all

#Master Macro
#######################################
########FIND SLAVE#####################
#######################################
#slave is lost
automacro findSlave {
   pm /Where are you?/
   call {
   	$slavemap = $.lastMatch1
   	$slavemapx = $.lastMatch2
   	$slavemapy = $.lastMatch3

   	$mymap = $.map
   	if ($slavemap == $mymap) goto findslave
   	do pm "$.lastpm" at $.map $.pos
   	stop
:findslave
   do pm "$.lastpm" at $.map $.pos
   }
}
#when slave is found
automacro clear {
   pm /I found/
   call {
   do eval AI::clear("move", "route");
   }
}
---

Code: Select all

#Slave Macro
################################
######FIND MASTER###############
################################
#find master
automacro findMaster {
   timeout 4
   console /I lost my master/
   call {
   $master = @config (followTarget)
   do pm "$master" Where are you?
   }
}
automacro findMaster2 {
   timeout 4
   console /Calculating route to find master/
   call {
   $master = @config (followTarget)
   do pm "$master" Where are you?
   }
}

#goto master
automacro gotoMaster {
   pm /at (.*) (.*) (.*)/
   call {
   $pm = $.lastpm
   if ($pm != $master) stop
   do move $.lastMatch1 $.lastMatch2 $.lastMatch3
   }
}

#when master is found
automacro foundMaster {
   console /Found my master/
   call {
   do pm "$master" I found
   }
}
PS
1.at "config.txt" the option followBot please set to 0
"followBot 0"
2.overallAuth.txt also not to set

Post Reply