Created
May 29, 2016 06:47
-
-
Save cydh/d84c13552382c454258503c820435e71 to your computer and use it in GitHub Desktop.
Simple macro to convert Rough Oridecon to Oridecon by talking with NPC Dietrich inside the Prontera's refinery building | (c) Cydh/PServeRO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simple macro to convert Rough Oridecon to Oridecon | |
# by talking with NPC Dietrich inside the Prontera's refinery building | |
# | |
# HOW TO USE: | |
# 1. Manually move Rough Oridecon to inventory | |
# 2. Walk into Dietrich location | |
# 3. Call teh macro in console: macro doConvOri | |
# | |
# (c) Cydh/PServeRO | |
macro doConvOri { | |
$npc = @npc(63 69) | |
if ($npc != -1) { | |
$amt = @invamount(Rough Oridecon) | |
if ($amt > 4) { | |
do talk $npc | |
} | |
} | |
} | |
automacro doConvOri_ { | |
delay 1 | |
console /Dietrich : Ini Oridecon yang kujanjikan. Datanglah lagi kapan-kapan./ | |
call doConvOri | |
} | |
automacro doConvOri__ { | |
delay 1 | |
console /-------- Responses \(Dietrich \) ---------/ | |
call { | |
do talk resp 0 | |
pause 0.5 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment