im using
automacro loot {
call {
do c @alootid +jellopy
do c @alootid +apple
}
}
automacro wax {
exclusive 1
call {
do c @warp prt_fild01
release wax
}
}
[Idle/Solved]Help macro doesn't work
Moderator: Moderators
-
- Noob
- Posts: 1
- Joined: 14 Jul 2014, 12:00
- Noob?: Yes
-
- Moderators
- Posts: 1197
- Joined: 16 Dec 2011, 02:53
- Noob?: No
- Location: Brazil
Re: Help macro doesn't work
Add any event. run-once for example :
In your automacro wax, you're using "release".
Code: Select all
automacro loot {
run-once 1
call {
do c @alootid +jellopy
do c @alootid +apple
}
}
automacro wax {
exclusive 1
call {
do c @warp prt_fild01
release wax
}
}
Your macro is not locked. Remove the release or add a run-once 1 or any other event. ^^release (<name> | all)
Reenables a locked automacro ("run-once" keyword or locked by "lock") or reenables all automacros when using release all.
Learn rules
-
- Developers
- Posts: 627
- Joined: 30 Apr 2008, 14:17
- Noob?: No
- Discord: ya4ept#8494
- Location: Moskow (Russia)
Re: Help macro doesn't work
this is nonsense:

Code: Select all
automacro wax {
exclusive 1
call {
do c @warp prt_fild01
release wax
}
}
-
- Moderators
- Posts: 1197
- Joined: 16 Dec 2011, 02:53
- Noob?: No
- Location: Brazil
Re: Help macro doesn't work
4epT wrote:this is nonsense:![]()
Code: Select all
automacro wax { exclusive 1 call { do c @warp prt_fild01 release wax } }

Please, Establish a better condition.
Learn rules