All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.
Moderator: Moderators
TormenT
Human
Posts: 33 Joined: 13 Nov 2012, 07:57
Noob?: No
#1
Post
by TormenT » 24 Nov 2012, 12:43
Hello, I read the manual about reregister but did not quite understand
I have two automacros
Code: Select all
automacro BuffsMe {
location xxx
call {
do ss xxx
pause 1
do ss xxxx
.....
.....
.....
.....
.....
}
}
automacro GiveBuff {
pubm /buff.../..../.../
call {
sp xxx
pause 1
sp xxx
.......
.......
......
}
}
1 -How PAUSE automacro BuffMe and start GiveMeBuff and later GiveMebuff done continues BUffMe from where it was paused
2 - First done BuffMe and add to queued GiveMebuff
Thanks for all
ever_boy_
Developers
Posts: 308 Joined: 06 Jul 2012, 13:44
Noob?: No
#2
Post
by ever_boy_ » 24 Nov 2012, 16:31
Code: Select all
automacro one {
start
...
call macro two 1
...
end
}
macro two {
...
}
TormenT
Human
Posts: 33 Joined: 13 Nov 2012, 07:57
Noob?: No
#3
Post
by TormenT » 24 Nov 2012, 18:25
and condition automacro 2?
now u posted i remember i used this a 7 years ago,but dont remember nothing else
why dont have this in manual?
START and END
ever_boy_
Developers
Posts: 308 Joined: 06 Jul 2012, 13:44
Noob?: No
#4
Post
by ever_boy_ » 24 Nov 2012, 19:00
these are not COMMANDS, just symbolic names for whatever comes before and after the macro call.
call <macroname> [<n>]
Calls macro <macroname> [<n> times]. When <macroname> is finished the current macro continues.
just set your automacro to call a macro.
TormenT
Human
Posts: 33 Joined: 13 Nov 2012, 07:57
Noob?: No
#5
Post
by TormenT » 25 Nov 2012, 05:42
dont work, this spam in console, macro buff 1 not found
Code: Select all
automacro BuffOutros {
location xxxxxxx
console /xxxxxxxxl/
call buff 1
}
macro buff {
pause
do sp 34 0
pause 1
do sp 29 0
pause 1
do sp 34 1
pause 1
do sp 29 1
pause 1
do sp 34 2
}
automacro kyrie {
pubm /ky|kyrie|Kyrie|kirie|kyare|kyere/
location xxxxx
run-once 1
call {
pause 3
do ss 73 @player ($.lastpub)
release kyrie
}
}
i want this man, automafro ,kyrie pause BuffOutros user kyrie in player, and continue buffoutros
EternalHarvest
Developers
Posts: 1798 Joined: 05 Dec 2008, 05:42
Noob?: Yes
#6
Post
by EternalHarvest » 26 Nov 2012, 04:17
Currently, when automacro triggers, it completely throws away already running macro.
GotMilk25
Noob
Posts: 7 Joined: 04 Dec 2012, 17:47
Noob?: No
#7
Post
by GotMilk25 » 05 Dec 2012, 02:06
TormenT wrote: dont work, this spam in console, macro buff 1 not found
Code: Select all
automacro BuffOutros {
location xxxxxxx
console /xxxxxxxxl/
call buff 1 <----Check this part. it should be buff not buff<space>1
}
macro buff {
pause
do sp 34 0 <-- are you sure with this? using fixed player ID
pause 1
do sp 29 0 <--
pause 1
do sp 34 1 <--
pause 1
do sp 29 1 <--
pause 1
do sp 34 2 <--
}
automacro kyrie {
pubm /ky|kyrie|Kyrie|kirie|kyare|kyere/
location xxxxx
run-once 1
call {
pause 3
do ss 73 @player ($.lastpub) <-- this should be 'do sp' not do ss
release kyrie
}
}
i want this man, automafro ,kyrie pause BuffOutros user kyrie in player, and continue buffoutros
TormenT
Human
Posts: 33 Joined: 13 Nov 2012, 07:57
Noob?: No
#8
Post
by TormenT » 05 Dec 2012, 23:08
what this?