Lighthalzen Speed Potion Quest Macro

Moderator: Moderators

Message
Author
openkore129
Human
Human
Posts: 44
Joined: 28 Apr 2008, 10:41
Noob?: No

Lighthalzen Speed Potion Quest Macro

#1 Post by openkore129 »

Here is a macro for the speed pot quest. You need 3 characters to do it. Also, change your autostorage weight to 90% or edit the macro to whatever weight you want.

1. Take a novice, put him in Lighthalzen and copy this into the macros.txt

Code: Select all

    automacro move {
    location lighthalzen
    timeout 0.5
    call {
    $px = @arg ("$.pos", 1)
    if ($px == 239) goto next1
    do move 239 216
    goto end
    :next1
    do move 238 216
    :end
    }
    } 


2. Take a novice, put him in Lighthalzen and copy this into the macros.txt

Code: Select all

    automacro move {
    location lighthalzen
    timeout 0.5
    call {
    $px = @arg ("$.pos", 1)
    if ($px == 219) goto next1
    do move 219 169
    goto end
    :next1
    do move 218 169
    :end
    }
    } 

3. Take the char with which you wanna buy the speed pots, put enough zeny in the char, and put this macro in macros.txt

Code: Select all

    automacro talk {
       console /SHHHH/
       status not Owg 90%
       location lighthalzen
       call {
          do ai manual
          pause 15
          do talk resp 2
          pause 4
          do ai on
       }
    }

    automacro buy {
       console /----------Responses-----------/
       status not Owg 90%
       call {
          do talk resp 2
       }
    }

    automacro aion {
       console /Done talking/
       status not Owg 90%
       call {
          do ai on
       }
    }

    automacro move {
       location lighthalzen
       status not Owg 90%
       timeout 1
       call {
          $px = @arg ("$.pos", 1)
          if ($px == 162) goto next1
          do move 162 127
          goto end
          :next1
          do move 161 127
          :end
       }
    } 
Lemme know if there are any problems with this.
Last edited by openkore129 on 09 May 2008, 06:16, edited 1 time in total.

pranavrules2006
Noob
Noob
Posts: 12
Joined: 23 Apr 2008, 23:51

Re: Lighthalzen Speed Potion Quest Macro

#2 Post by pranavrules2006 »

how much zeny is required per pot? and, what are the chances of getting the pot? is it high?

openkore129
Human
Human
Posts: 44
Joined: 28 Apr 2008, 10:41
Noob?: No

Re: Lighthalzen Speed Potion Quest Macro

#3 Post by openkore129 »

Cost per pot is 15000z but they sell for a significant profit so thats ok =) The chance of getting the pot is random, so just leave the macro running and forget about it. You get an option to buy 0-3 pots...this macro chooses the 3 pots option which means you pay 15000*3=45000 zeny each time.

Roxas
Noob
Noob
Posts: 13
Joined: 06 May 2008, 02:53
Noob?: No
Location: No man's land

Re: Lighthalzen Speed Potion Quest Macro

#4 Post by Roxas »

I have a simple macro which checks the weight and triggers the macros. Its useful cuz often when it gets 90% overweight, the config tells it to go n store while the move macro tells it to walk around the NPC. There is a conflict.
Hope you find this useful.

Code: Select all

automacro response {
   weight < 90%
   exclusive 1
   console /----------Responses-----------/
   timeout 10
   call {
      do talk resp 2
   }
}

automacro move {
   location lighthalzen
   weight < 90%
   timeout 3
   call {
      $px = @arg ("$.pos", 1)
      if ($px == 162) goto next1
      do move 162 127
      goto end
      :next1
      do move 158 127
      :end
   }
}
Image

openkore129
Human
Human
Posts: 44
Joined: 28 Apr 2008, 10:41
Noob?: No

Re: Lighthalzen Speed Potion Quest Macro

#5 Post by openkore129 »

Good idea! I've incorporated the weight check in the macros using Status not Owg 90%.

decipher1006
Noob
Noob
Posts: 1
Joined: 05 May 2008, 08:31
Noob?: Yes

Re: Lighthalzen Speed Potion Quest Macro

#6 Post by decipher1006 »

boss how can do manul macro >> cuz every tym my macro buy i always type "talk num 3: /sob how can i fix dat??? ty boss
Attachments
th red box boss thats da prob. &gt;.&lt; i always type &quot;talk num 3&quot;
th red box boss thats da prob. >.< i always type "talk num 3"
macro error.JPG (72.44 KiB) Viewed 31449 times

lacunacoil
Noob
Noob
Posts: 13
Joined: 14 Apr 2008, 12:18

Re: Lighthalzen Speed Potion Quest Macro

#7 Post by lacunacoil »

Should I have "auto talk cont" or not ?
when you say novice do you mean I can just create a new character and take it to Lhz ?

openkore129
Human
Human
Posts: 44
Joined: 28 Apr 2008, 10:41
Noob?: No

Re: Lighthalzen Speed Potion Quest Macro

#8 Post by openkore129 »

@decipher1006, umm...in my server the conversation with the NPC is different which is why it is not working on your server. You need to change the macro buy. Replace it with the following code....

Code: Select all

automacro buy {
       console /Type 'talk num <number #>'/
       status not Owg 90%
       call {
          do talk num 3
       }
    }
It should work now :)

@lacunacoil, err yeah, unless you like risking high level chars while botting....

krazen
Noob
Noob
Posts: 3
Joined: 06 May 2008, 09:12
Noob?: Yes

Re: Lighthalzen Speed Potion Quest Macro

#9 Post by krazen »

I tried both, its not working. Read the manual too, but nothing works ._.

Mine is the same as yours. It uses Responses and talk resp 2.

openkore129
Human
Human
Posts: 44
Joined: 28 Apr 2008, 10:41
Noob?: No

Re: Lighthalzen Speed Potion Quest Macro

#10 Post by openkore129 »

At what point does it get stuck? Are all three not working, or is just the guy who buys the stuff not working. If you've copied it properly, the console trigger should work.

Post Reply