Skip to content

Instantly share code, notes, and snippets.

@cydh
Created May 29, 2016 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cydh/d84c13552382c454258503c820435e71 to your computer and use it in GitHub Desktop.
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
# 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