[Help] @config(<>) in automacro

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

Message
Author
yuriblanke
Noob
Noob
Posts: 1
Joined: 16 Jul 2015, 08:38
Noob?: No

[Help] @config(<>) in automacro

#1 Post by yuriblanke »

Hello.
this is my macro

Code: Select all

#Uses skill Vaporize whenever in saveMap set at config.txt
automacro Vaporize {
	location @config (saveMap)
	run-once 1
	call {
		do ss Vaporize
	}
}

#uses skill Call Homunculus whenever in lockMap set at config.txt
automacro CallHomun {
	location @config (lockMap)
	run-once 1
	call {
		do ss "Call Homunculus"
	}
}
The problem is: @config doesn't seem to work at automacros, only at macros.
Does anybody know any resource I can use to make this work?
My intention is not to need to edit the macro every time I change my hunt spot.


another question if you don't mind
how can I set conditions different than the list in the macro plugin thread? for an example, I would like to add the condition homunculus 1 to the vaporize macro, and homunculus 0 to the call macro.


Thank you very much :)