N>help PRO zeny gurl macro

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

Moderator: Moderators

Message
Author
rpichay
Human
Human
Posts: 20
Joined: 02 Sep 2009, 02:49
Noob?: Yes

Re: N>help PRO zeny gurl macro

#11 Post by rpichay »

no help from those knowledgeable :)

c4c1n6kr3m1
The Way Of Human
The Way Of Human
Posts: 150
Joined: 24 Mar 2012, 04:13
Noob?: Yes

Re: N>help PRO zeny gurl macro

#12 Post by c4c1n6kr3m1 »

try redownload your macro plugin
i used not the newest but work with zeny

rocknroll
Been there done that!
Been there done that!
Posts: 118
Joined: 19 Sep 2011, 07:30
Noob?: Yes

Re: N>help PRO zeny gurl macro

#13 Post by rocknroll »

Sorry, my english is very bad !

pzykill
Noob
Noob
Posts: 6
Joined: 23 Oct 2010, 16:21
Noob?: Yes

Re: N>help PRO zeny gurl macro

#14 Post by pzykill »

pa post naman ng macro zeny gurl idon.. ty

User avatar
SkylorD
Moderators
Moderators
Posts: 1166
Joined: 16 Dec 2011, 02:53
Noob?: No
Location: Brazil
Contact:

Re: N>help PRO zeny gurl macro

#15 Post by SkylorD »

automacro wew {
zeny > 50000000
map malaya
call {
do macro zenystart
}
}

macro zenystart {


do talk 5
pause 1
do talk resp 0
pause 4


}
Almost.

do macro zenystart is wrong.

Try :

call zenystart
call <macroname> [<n>]
Calls macro <macroname> [<n> times]. When <macroname> is finished the current macro continues.
automacro wew {
if Zeny >= 50000000
map malaya
call {
do macro zenystart
}
}
zeny >= 50000000

Remove this "if" and the first length must be lowercase (Z - zeny).
Learn rules

matindi
Noob
Noob
Posts: 3
Joined: 09 Oct 2014, 01:59
Noob?: No

Re: N>help PRO zeny gurl macro

#16 Post by matindi »

rpichay 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 zeny

Code: 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
               

}
lacking in your automacro is the timeout n seconds or run-once

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.

Post Reply