[HELP]on how Read the items left in my shop or cart

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

Moderator: Moderators

PepsiCoke
Human
Human
Posts: 46
Joined: 21 Apr 2012, 22:41
Noob?: Yes

[HELP]on how Read the items left in my shop or cart

#1 Post by PepsiCoke »

can someone help me to fix this :( as the topic says..

Code: Select all

automacro ttyy {
	console /You gained/i
	call {
		$item = $aaaa
		$aaaa = @cart
		do c [ $item ] pcs ESB LEFT!
		do @random ("e thx","e gg","e heh")
		pause 2
		do @random ("c Thank You sa bumili c:","c Maraming Salamat Sayo!!! c:")
}
}
Image
KoreGhost
Developers
Developers
Posts: 124
Joined: 28 Mar 2011, 12:48
Noob?: No
Location: Brazil

Re: [HELP]on how Read the items left in my shop or cart

#2 Post by KoreGhost »

change:

Code: Select all

do @random ("c Thank You sa bumili c:","c Maraming Salamat Sayo!!! c:")
to:

Code: Select all

do c @random ("Thank You sa bumili","Maraming Salamat Sayo!!!")
good1
Human
Human
Posts: 24
Joined: 18 Jul 2012, 11:48
Noob?: No

Re: [HELP]on how Read the items left in my shop or cart

#3 Post by good1 »

automacro ttyy {
console /You gained/i
call {
$item = @shopamount (Elite Siege Box)
do c [ $item ] pcs ESB LEFT!
do @random ("e thx","e gg","e heh")
pause 2
do @random ("c Thank You sa bumili c:","c Maraming Salamat Sayo!!! c:")
}
}