
N>help PRO zeny gurl macro
Moderator: Moderators
-
- Human
- Posts: 20
- Joined: 02 Sep 2009, 02:49
- Noob?: Yes
Re: N>help PRO zeny gurl macro
no help from those knowledgeable 

-
- The Way Of Human
- Posts: 150
- Joined: 24 Mar 2012, 04:13
- Noob?: Yes
Re: N>help PRO zeny gurl macro
try redownload your macro plugin
i used not the newest but work with zeny
i used not the newest but work with zeny
-
- Been there done that!
- Posts: 118
- Joined: 19 Sep 2011, 07:30
- Noob?: Yes
Re: N>help PRO zeny gurl macro
Sorry, my english is very bad !
-
- Noob
- Posts: 6
- Joined: 23 Oct 2010, 16:21
- Noob?: Yes
Re: N>help PRO zeny gurl macro
pa post naman ng macro zeny gurl idon.. ty
-
- Moderators
- Posts: 1196
- Joined: 16 Dec 2011, 02:53
- Noob?: No
- Location: Brazil
Re: N>help PRO zeny gurl macro
Almost.automacro wew {
zeny > 50000000
map malaya
call {
do macro zenystart
}
}
macro zenystart {
do talk 5
pause 1
do talk resp 0
pause 4
}
do macro zenystart is wrong.
Try :
call zenystart
call <macroname> [<n>]
Calls macro <macroname> [<n> times]. When <macroname> is finished the current macro continues.
zeny >= 50000000automacro wew {
if Zeny >= 50000000
map malaya
call {
do macro zenystart
}
}
Remove this "if" and the first length must be lowercase (Z - zeny).
Learn rules
-
- Noob
- Posts: 3
- Joined: 09 Oct 2014, 01:59
- Noob?: No
Re: N>help PRO zeny gurl macro
lacking in your automacro is the timeout n seconds or run-oncerpichay wrote:i did it already but now my problem , is there a way for my automacro to trigger with zeny? it doesnt seem to trigger with zenyCode: Select all
automacro wew { zeny > 50000000 map malaya call { do macro zenystart } } macro zenystart { do talk 5 pause 1 do talk resp 0 pause 4 }
try this
automacro wew {
zeny > 50000000
timeout 8
location malaya 228 170
call {
do move malaya 228 170
pause 2
do talknpc 229 171 c r0 n
pause 3
}
}
also always read the manual and understand it. almost all you want to do with your bot has answers there.