[HELP]Putting adding to 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]Putting adding to cart

#1 Post by PepsiCoke »

How can I do this in LOOP?

Code: Select all

automacro adding {
	console /Item added to inventory: Elite/i
	exclusive 1
	call addd
}
macro addd {
		pause 3
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
		pause 0.1
		do cart add @inventory (Elite Siege Supply Box) @invamount (Elite Siege Supply Box)
}
this is the output... i am having an eye sore everytime im seeing a red chat in my console...
i want my bot to stop adding ESB in my cart when theres no more ESB in my inventory
i hope someone can help me with this.. thnx in advance openkore :)
Image
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: [HELP]Putting adding to cart

#2 Post by EternalHarvest »

Use "while".
PepsiCoke
Human
Human
Posts: 46
Joined: 21 Apr 2012, 22:41
Noob?: Yes

Re: [HELP]Putting adding to cart

#3 Post by PepsiCoke »

EternalHarvest wrote:Use "while".
ah thnx for the reply... im going to experiment it first... if i make it work ill post it here ASAP :P
PepsiCoke
Human
Human
Posts: 46
Joined: 21 Apr 2012, 22:41
Noob?: Yes

Re: [HELP]Putting adding to cart

#4 Post by PepsiCoke »

lmao 10 hours of working with this.. still i cant make it... ahahahaha
PepsiCoke
Human
Human
Posts: 46
Joined: 21 Apr 2012, 22:41
Noob?: Yes

Re: [HELP]Putting adding to cart

#5 Post by PepsiCoke »

finally i make it work.... thnx to my auto refill macro xD
code

Code: Select all

automacro ItemAddedtoCart {
    inventory "Elite Siege Supply Box" >= 1
    exclusive 1
    call {
        do doridori
        do cart add Elite Siege Supply Box
}
}


Output:
Image