Senin, 29 Oktober 2012

MACROS MENUKAR R.ORI / R.ELU


automacro initialisasi {
console "You are now in the game"
exclusive 1
call {
set macro_delay 0
do conf storageAuto 0
do conf ambilBarang1.block none
do conf ambilBarang2.block none
do conf relogAfterStorage 0
do conf itemsTakeAuto 0
do conf itemsGatherAuto 0
$mode = kosong
}
}

macro ori {
do conf ambilBarang1.block Rough Oridecon
do conf ambilBarang1.maxAmount 261
$mode = ori
do autostorage
}

macro elu {
do conf ambilBarang1.block Rough Elunium
do conf ambilBarang1.maxAmount 100
$mode = elu
do autostorage
}

automacro selesaiStorage {
console "Storage logged"
#exclusive 1
call {
if ($modeSetoran == 1) goto oke1
if ($modeSetoran == 2) goto oke
do talknpc 154 232 r0
do move 141 187
stop
}
}

automacro startTalk {
location payon 141 187
exclusive 1
call {
if ($mode == "ori") goto nukerOri
if ($mode == "elu") goto nukerElu
stop
:nukerOri
if (@invamount(Rough Oridecon) > 5) goto lanjutOri
do north
stop
:lanjutOri
do talknpc 137 178 r0
if (@invamount(Rough Oridecon) > 5) goto lanjutOri
do autostorage
stop
:nukerElu
if (@invamount(Rough Elunium) > 5) goto lanjutElu
do north
stop
:lanjutElu
do talknpc 137 178 r1
if (@invamount(Rough Elunium) > 5) goto lanjutElu
do autostorage
stop
}
}

Minggu, 28 Oktober 2012

 Macros Autorelog Ketika terkena Strip !


Jika teman" suka terkena strip bot di metaling, dan males nungguin selesainy, mending pake macros ini Relog trus auto pake,


automacro relog {
status Strip Weapon
call {
do relog 20
}
}
 Macros Pharamacy .


automacro create {
location geffen_in < Lokasi
sp > 5%
inventory "Medicine Bowl" > 0
call wsp
run-once 1
}

macro acidbottle {
do ss 228 10
pause 0.1
do send 8E 01 E0 1B 00 00 00 00 00 00
call release
}
macro plantbottle {
do ss 228 10
pause 0.1
do send 8E 01 E1 1B 00 00 00 00 00 00
call release
}
macro minebottle {
do ss 228 10
pause 0.1
do send 8E 01 E2 1B 00 00 00 00 00 00
call release
}
macro cw {
do ss 228 10
pause 0.1
do send 8E 01 E3 1B 00 00 00 00 00 00
call release
}

Cara Menggunakan Autotrade di Ragnarok Online.

1. Make a notepad named autotrade.pl and copy paste this and then put it in plugins folder :
  package autoTrade;
  #ported from messykorexp by Joseph
  #original code by systeman

  use strict;
  use Plugins;
  use Globals;
  use Log qw(message warning error debug);
  use AI;
  use Misc;
  use Network::Send;
  use Utils;

  Plugins::register('autoTrade', 'automated chat room dealing', \&Unload);
  my $hook1 = Plugins::addHook('AI_pre', \&call);
  my $hook2 = Plugins::addHook('parseMsg/pre', \&packet);