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

N>help PRO zeny gurl macro

#1 Post by rpichay »

talknpc cannot be done because there are 2 npc .. can anyone please post a working macro?

Image

Cloud
Plain Yogurt
Plain Yogurt
Posts: 86
Joined: 09 Apr 2008, 13:39

Re: N>help PRO zeny gurl macro

#2 Post by Cloud »

attempt it yourself first then people can help

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

Re: N>help PRO zeny gurl macro

#3 Post by rpichay »

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
               

}

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

Re: N>help PRO zeny gurl macro

#4 Post by rpichay »

my problem is now it says wrong number of arguments > 5000000 in red

Cloud
Plain Yogurt
Plain Yogurt
Posts: 86
Joined: 09 Apr 2008, 13:39

Re: N>help PRO zeny gurl macro

#5 Post by Cloud »

im not an expert in perl macros but try this

Code: Select all

automacro wew {
   if Zeny >= 50000000
   map malaya
   call {
     do macro zenystart
}
}

macro zenystart {
       
     
               do talk 5
               pause 1
               do talk resp 0
          pause 4
               

}

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

Re: N>help PRO zeny gurl macro

#6 Post by rpichay »

Cloud wrote:im not an expert in perl macros but try this

Code: Select all

automacro wew {
   if Zeny >= 50000000
   map malaya
   call {
     do macro zenystart
}
}

macro zenystart {
       
     
               do talk 5
               pause 1
               do talk resp 0
          pause 4
               

}

doesnt work.. ive tried it,, im really wondering why zeny cannot trigger the automacro ive also done zeny small z. stiill no chance :(

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

Re: N>help PRO zeny gurl macro

#7 Post by rpichay »

here is what i did so far

Code: Select all


i tried to make it trigger on my location still no luck it wont trigger
Last edited by rpichay on 09 Sep 2014, 23:29, edited 1 time in total.

Cloud
Plain Yogurt
Plain Yogurt
Posts: 86
Joined: 09 Apr 2008, 13:39

Re: N>help PRO zeny gurl macro

#8 Post by Cloud »

maybe try assigning Zeny as an variable (as $something)

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

Re: N>help PRO zeny gurl macro

#9 Post by rpichay »

afaik, you cannot use $ in automacro because i tried it it says error

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

Re: N>help PRO zeny gurl macro

#10 Post by rpichay »

Mods please check on this one because macro is not triggering on zeny, i tried it even with normal automacro


automacro test {
zeny >= 1
exclusive 1
map prontera
run-once 1
call {
do quit
}
}

Post Reply