OBB quest macro.

International

Moderator: Moderators

Message
Author
jchristofer
Noob
Noob
Posts: 4
Joined: 01 Jun 2013, 05:18
Noob?: Yes

OBB quest macro.

#1 Post by jchristofer »

K, I decided to ask here since theres no way i can find a solution by myself.

Never used macro before, Ive been looking over the net for a macro for the old OBB quest.

everything seems to work fine using the storage, but after that a messg keeps popping up

"[macro] automacro OBB2-6 triggered."

what i did is removed this senquences and made it manually, having all the needed items with me on the inventory. -so i dont need to use storage and just skil the 20-50 clicks i need to do the quest.

I tried to fix it myself but im messing up things even more. I tried to understand the algorithm following the commands but i just cant find the problem.

thanks in advance.


heres the code.

Code: Select all

######## OBB Quest ########

automacro OBB {
location comodo 73 194
inventory "Cyfar" > 49
inventory "Clam Shell" > 14
inventory "Crab Shell" > 9
inventory "Brigan" > 9
run-once 1
call OBB-1
}

macro OBB-1 {
do talk @npc (68 195)
}

automacro OBB1-1 {
location comodo 73 194
console /Responses/
run-once 1
call OBB-1-1
}

macro OBB-1-1 {
do talk resp 0
release OBB1-1
}

automacro OBB2-0 {
console /with that nugget of wisdom./
run-once 1
call OBB-2-1
}

automacro OBB2-1 {
console /You feel there may be something you missed./
run-once 1
call OBB-2-1
}

automacro OBB2-2 {
console /Come back later./
run-once 1
call OBB-2-1
}

automacro OBB2-3 {
console /Do me this favor, young man./
run-once 1
call OBB-2-1
}

automacro OBB2-4 {
console /much trouble for my own good./
run-once 1
call OBB-2-1
}

automacro OBB2-5 {
console /Calculating lockMap route to:/
run-once 1
call OBB-2-1
}

automacro OBB2-6 {
timeout 60
call OBB-2-1
}

macro OBB-2-1 {
release all
}

automacro quit {
storage "cyfar" < 1000
call quit-1
}

automacro quit1 {
storage "Brigan" < 200
call quit-1
}

automacro quit2 {
storage "Clam Shell" < 300
call quit-1
}

automacro quit3 {
storage "Crab Shell" < 200
call quit-1
}

macro quit-1 {
do quit
}