Gw mw berterima kasih byk kepada. . Quen_Jr yang dah minjemin gw eq buat hunt..
truz nemenin gw hunt dari lv 50 ampe 70..
moga" masih bisa sering nemenin gw hunt..
/gg
skale lage..
Thx buat Quen_Jr
For The Best Future of Ragnarok
Gw mw berterima kasih byk kepada. . Quen_Jr yang dah minjemin gw eq buat hunt..
truz nemenin gw hunt dari lv 50 ampe 70..
moga" masih bisa sering nemenin gw hunt..
/gg
skale lage..
Thx buat Quen_Jr
Sistem equip drop ini sudah berjalan sejak server PVP , Legend , dan FnC d buka ..
akan tetapi setelah Update Chaos of Morocc telah tiba.. sistem ini hilang atau mungkin lupa di implementasikan oleh pihak LYTO..
dan Sistem equip drop ini berjalan kembali sejak tanggal 15 April 2009..
Ada beberapa hal yang perlu diperhatikan :
Equip Non-IM :
Bisa drop sewaktu-waktu... Kalau HQ ya gk drop..
Bisa diambil orang laen..
gk bisa dilaporin..
tunggu orang baek yang mw ambilin buat anda.. ^^
Equip IM :
gk bakalan drop
kalau drop maka equip tersebut akan masuk ke inventory lagi.. sehingga dapat dipakai lagi
berkat adanya sistem ini.. saya telah memperoleh beberapa equip yang tentunya lumayan berkualitas ..
/gg
Thx to LYTO
Jual Char Ninja
Spesifikasi :
Nick : .::Shinjuku'Incident::.
Job : Ninja
Lv : 76
Job Lv : 51
Element : Api ( Flaming Petals 5 , Blaze Shield 7 , Exploding Dragon 5 )
Air ( Freezing Spears 5 )
Sisa Lv : 23
Sisa Job Lv : 19
Harga : Rp 100.000.. --> POLOS.. ( Dah termasuk Kode Pin , dkk )
Minat ?? Tlp Ke 081364267543 ..^^
Thx
Kill Steal sangat berguna dalam RO , gunanya untuk menyampah.. /gg
exp yang didapat dari Kill Steal lebih besar daripada tidak Kill Steal !!
sapa yang gk mw Kill Steal tw.. dimana" ad rules yg gk nge-bolehin bahas Kill Steal ato tny" seputar Kill Steal.. akan tetapi saya telah menemukan Kill Steal yg baru saja saya temukan..
untuk yang berminat bisa hubungi saya, tapi inget Kill Steal "TIDAK GRATIS" !!!
Saya menjual Kill Steal seharga 50k itu dah termasuk 1 set OK 2.0.6 jd dah 1 paket , gk usah repot" ngeset lg ^^.. ( 100% dijamin Bisa KILL STEAL /KS , karena saya sudah coba sndiri )
Daerah Jakarta Utara :
Bisa ktemuan / saya kirim lewat email apabila uang sudah masuk Rekening BCA saya ( NO TIPU ) !!!
Daerah Luar Jakarta Utara :
Via BCA , nanti program nya akan saya kirim ke e-mail anda apabila uang sudah masuk rekening BCA saya ( NO TIPU !! )
Kalo mw bli gmn cara nya ?? gampang.. tinggal sms /hubungi ke 081364267543 , kirim uang ke No Rek saya dan beritahu No Rek serta Nama Rek anda , setelah uang masuk saya akan langsung kirim ke e-mail anda.. ^^
Nama Rek : Roberto Oscar Vialli
No Rek : 1681880777
Nama email anda jangan sampai salah.. apabila salah saya tidak akan kirim 2x.. sebelum saya kirim saya akan konfirmasi ke anda lagi agar tidak terjadi kesalahan.. ^^
INGAT TIDAK GRATIS AND NO TIPU !!!
NO LEECHERRRR !!!
Yang Mw cptan yahhh ^^
Note : i'm not tried it , so idk if its worked well or not...
Most people use Auto-Trade to buy some items they need or want in short time..
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);
# load table file
our %trade_lut;
my $file = "autotrade.txt";
#my $cfID = Settings::addConfigFile($file, \%trade_lut, \&FileParsers::parseDataFile_lc);
my $cfID = Settings::addControlFile($file, loader => [\&FileParsers::parseDataFile_lc, \%trade_lut]);
#Settings::load($cfID);
undef $file;
sub Unload {
Plugins::delHook('AI_pre', $hook1);
Plugins::delHook('parseMsg/pre', $hook2);
Settings::removeFile($cfID);
}
my $dealTrade;
my $dealFinalize;
my $tradeDealAddItem;
my $itemAddTimeout;
# TIMEOUTS: you can change these if you want
# time to wait for them to add items before cancelling?
my $itemWaitTime = 20;
# time to wait before accepting deal request?
my $dealAcceptTime = 2;
# time to wait before adding zeny once they finalize their item choices?
my $zenyAddDelay = 3;
sub packet {
my $hookName = shift;
my $args = shift;
my $switch = $args->{switch};
my $msg = $args->{msg};
if ($switch eq "00E9?") {
my $amount = unpack("L1?", substr($msg, 2,4));
my $ID = unpack("S1?", substr($msg, 6,2));
if ($ID > 0) {
# they added an item, so reset the timeout
$tradeDealAddItem = 1;
}
}
if ($switch eq "01F4?") {
#deal request, wait before accepting
$itemAddTimeout = time;
}
if ($switch eq "00E5?" || $switch eq "01F4?") {
#deal request, wait before accepting
$itemAddTimeout = time;
}
if ($switch eq "00EC") {
my $type = unpack("C1?", substr($msg, 2, 1));
if ($type == 1) {
#they finalize their item selections
$itemAddTimeout = time;
}
}
}
sub call {
AUTOTRADE: {
if (AI::is("","tradeAuto", "deal") && $config{tradeAuto} && $char->{skills}{NV_BASIC}{lv} > 4) {
if (AI::action ne "tradeAuto" && AI::action ne "deal" && $::currentChatRoom ne "") {
message "Begin auto-trade mode.\n", "autoTrade";
if ($config{dealAuto}) {
$config{dealAuto} = 0;
Misc::configModify("dealAuto", $config{dealAuto});
}
AI::queue("tradeAuto");
}
last AUTOTRADE if !AI::is("tradeAuto","deal");
if (Utils::timeOut($itemAddTimeout,$dealAcceptTime) && $::incomingDeal{name} && !$::currentDeal{name}) {
$messageSender->sendDealAccept();
undef $dealFinalize;
undef $dealTrade;
$itemAddTimeout = time;
message "Sent deal accept, begin trading\n", "autoTrade";
}
last AUTOTRADE if (!$::currentDeal{name});
if (!Utils::timeOut($itemAddTimeout,$itemWaitTime) && $tradeDealAddItem) {
$itemAddTimeout = time;
undef $tradeDealAddItem;
}
if (($::currentDeal{other_finalize} && Utils::timeOut($itemAddTimeout,$zenyAddDelay)) || Utils::timeOut($itemAddTimeout,$itemWaitTime)) {
if ($::currentDeal{other} eq ()) {
message "Other person didn’t add any items, cancelling…\n", "autoTrade";
$messageSender->sendCurrentDealCancel();
$itemAddTimeout = time;
} elsif (!$dealFinalize) {
my $sumvalue;
my @currentDealOther;
foreach (keys %{$::currentDeal{other}}) {
push @currentDealOther, $_;
}
my $max = @currentDealOther;
for (my $i = 0;$i < $max;$i++) { my $found = 0; my $ID = $currentDealOther[$i]; my $name = lc main::itemName($::currentDeal{other}{$ID}); if (defined $trade_lut{$name}) { message "Add ".$trade_lut{$name}."z x $::currentDeal{other}{$ID}{amount} to deal\n", "autoTrade"; $sumvalue += ($::currentDeal{other}{$ID}{amount} * $trade_lut{$name}); } else { message "Other person added item which is not in buy list, cancelling…\n", "autoTrade"; $messageSender->sendCurrentDealCancel();
last AUTOTRADE;
}
}
message "Trading $sumvalue zeny and confirming\n", "autoTrade";
$messageSender->sendDealAddItem(0, $sumvalue);
sleep(0.5);
$messageSender->sendDealFinalize();
$dealFinalize = 1;
$itemAddTimeout = time;
}
}
if ($::currentDeal{you_finalize} && Utils::timeOut($itemAddTimeout,$itemWaitTime)) {
message "Other person didn’t accept the final trade, cancelling…\n", "autoTrade";
$messageSender->sendCurrentDealCancel();
$itemAddTimeout = time;
}
if (!$dealTrade && $::currentDeal{you_finalize} && $::currentDeal{other_finalize}) {
message "Accepting final trade\n", "autoTrade";
$messageSender->sendDealTrade();
$dealTrade = 1;
}
}
}
}
return 1;
2. open your config.txt and put tradeAuto to 1 and deal auto to 0, so it'll looked like :
dealAuto 0
tradeAuto 1
dealAuto_names
partyAuto 1
partyAutoShare 1
guildAutoDeny 1
3. create another notepad in your controls folder named autotrade.txt , for example :
# [item name] [price]
Crunch Toast 2500000
2. Open your control folder and Put These into your macros.txt :
automacro openchatroom {
map payon
run-once 1
delay 10
call openchat
}
macro openchat {
do chat create "B: Crunch Toast 2,5 million" 2 0 1111
}
Note : its work properly and very well.. i tried it already in OK 2.0.6 , oh yeah almost forgot. . make sure all your notepads save as all files...
Macro ini digunakan untuk bot di tempat pelatihan novice atau training ground keren na.. ^_^
Di config.txt
lockMap new_1-3 ( ganti dengan yang lain bila ingin ditempat yang lbh gmpg/susah )
lockMap_x
lockMap_y
lockMap_randX
lockMap_randY
Di portals.txt
masukkan list berikut :
new_1-1 148 112 new_1-2 100 9
new_1-2 100 6 new_1-1 148 112
new_2-1 148 112 new_2-2 100 9
new_2-2 38 182 new_1-3 96 21 0 r0
new_2-2 38 182 new_2-3 96 21 0 r0
new_2-2 38 182 new_3-3 96 21 0 r0
new_2-2 38 182 new_4-3 96 21 0 r0
new_2-2 38 182 new_5-3 96 21 0 r0
new_2-2 100 6 new_2-1 148 112
new_3-1 148 112 new_3-2 100 9
new_3-2 38 182 new_1-3 96 21 0 r0
new_3-2 38 182 new_2-3 96 21 0 r0
new_3-2 38 182 new_3-3 96 21 0 r0
new_3-2 38 182 new_4-3 96 21 0 r0
new_3-2 38 182 new_5-3 96 21 0 r0
new_3-2 100 6 new_3-1 148 112
new_4-1 148 112 new_4-2 100 9
new_4-2 38 182 new_1-3 96 21 0 r0
new_4-2 38 182 new_2-3 96 21 0 r0
new_4-2 38 182 new_3-3 96 21 0 r0
new_4-2 38 182 new_4-3 96 21 0 r0
new_4-2 38 182 new_5-3 96 21 0 r0
new_4-2 100 6 new_4-1 148 112
new_4-2 46 172 new_4-2 73 106
new_4-2 73 106 new_4-2 41 172
new_5-1 148 112 new_5-2 100 9
new_5-2 38 182 new_1-3 96 21 0 r0
new_5-2 38 182 new_2-3 96 21 0 r0
new_5-2 38 182 new_3-3 96 21 0 r0
new_5-2 38 182 new_4-3 96 21 0 r0
new_5-2 38 182 new_5-3 96 21 0 r0
new_5-2 100 6 new_5-1 148 112
new_1-2 38 182 new_1-3 96 21 c c r0
new_1-2 38 182 new_2-3 96 21 c c r0
new_1-2 38 182 new_3-3 96 21 c c r0
new_1-2 38 182 new_4-3 96 21 c c r0
new_1-2 38 182 new_5-3 96 21 c c r0
Di macros.txt
masukkan macros berikut :
automacro satu {
location new_1-3
run-once 1
call newSatu
}
macro newSatu {
do conf lockMap new_1-3
stop
release satu
}
automacro dua {
location new_2-3
run-once 1
call newDua
}
macro newDua {
do conf lockMap new_2-3
stop
release dua
}
automacro tiga {
location new_3-3
run-once 1
call newTiga
}
macro newTiga {
do conf lockMap new_3-3
stop
release tiga
}
automacro empat {
location new_4-3
run-once 1
call newEmpat
}
macro newEmpat {
do conf lockMap new_4-3
stop
release empat
}
automacro lima {
location new_5-3
run-once 1
call newLima
}
macro newLima {
do conf lockMap new_5-3
stop
release lima
}
sebelum itu taro char anda di tempat hunt misal nya new_4-3 ,
kemudian jalankan program bot anda dan ketik reload macros maka char anda akan masuk ke lockmap yang telah ditentukan yaitu seperti diatas new_1-3,
Silakan Menikmati ^_^
To everyone who cant access or cant talk to "Npc Santa" in Aldebaran..
plz change the Portal in Tables folder...
Just make a little change..
Edit your portal from
aldebaran 223 222 xmas_fild01 78 68 0 c r1 c c n
to
aldebaran 168 168 xmas_fild01 78 68 0 c r1 c c n
it'll work properly.. if you not change it then your char cant find it..
Enj0y..
Ini macro apabila ada player yang meminta paket maka secara otomatis si bot akan memberikan paket agi dan bless kepada si player tersebut...
automacro paket{
Thx : ~RefLeX!o~ ( FnC Server )
Ini macro untuk priest, jadi apabila ada org yang minta heal , otomatis si bot akan memberikan heal kepada player tersebut
automacro mintaheal{
Thx : ~RefLeX!o~ ( FnC Server )
Gk bisa nyari priest buat temen hunt ?? Mw pake priest sndiri buat temenin hunt ?? Nah Bot Gandeng adalah solusi yang tepat untuk teman-teman RO..
Config Priest Gandeng..
# Please Read the Users Manual
# The Manual is located at http://openkore.sourceforge.net/manual/
# Please Read the Users Manual# The Manual is located at http://openkore.sourceforge.net/manual/
######## Login options and server-specific options ########
master Indonesia - idRO: Sakray
server 0
username
password
loginPinCode
char 0
sex 0
bindIp
# For an overview of all servertypes please go to the following URL:
# http://www.openkore.com/wiki/index.php/ServerType#English
serverType 21
# 1 = hook into RO client, 2 = Act as stand-alone proxy, proxy = act as true proxy
XKore 0
XKore_silent 1
XKore_bypassBotDetection 0
XKore_exeName ragexe.exe
# XKore 2 / Proxy configuration
XKore_listenIp 127.0.0.1
XKore_listenPort 6901
XKore_publicIp 127.0.0.1
# It is not advised to set secureAdminPassword if you're using Xkore 2
secureAdminPassword 0
adminPassword
callSign
commandPrefix ;
pauseCharServer 0
pauseMapServer 0
ignoreInvalidLogin 0
secureLogin_requestCode
message_length_max 80
######## Main configuration ########
alias_heal sp 28
allowedMaps
allowedMaps_reaction 1
attackAuto 2
attackAuto_party 1
attackAuto_onlyWhenSafe 0
attackAuto_followTarget 1
attackAuto_inLockOnly 1
attackDistance 3.5
attackDistanceAuto 0
attackMaxDistance 5
attackMaxRouteDistance 100
attackMaxRouteTime 4
attackMinPlayerDistance 2
attackMinPortalDistance 4
attackUseWeapon 0
attackNoGiveup 0
attackCanSnipe 0
attackCheckLOS
attackLooters 0
attackChangeTarget 1
aggressiveAntiKS 0
autoMoveOnDeath 0
autoMoveOnDeath_x
autoMoveOnDeath_y
autoMoveOnDeath_map
attackEquip_topHead
attackEquip_midHead
attackEquip_lowHead
attackEquip_leftHand
attackEquip_rightHand
attackEquip_leftAccessory
attackEquip_rightAccessory
attackEquip_robe
attackEquip_armor
attackEquip_shoes
attackEquip_arrow
autoBreakTime {
startTime
stopTime
}
autoConfChange {
minTime
varTime
lvl
joblvl
}
autoMakeArrows 0
autoRestart 0
autoRestartMin 10800
autoRestartSeed 3600
autoRestartSleep 1
autoSleepMin 900
autoSleepSeed 900
autoResponse 0
autoSpell
avoidGM_near 0
avoidGM_near_inTown 0
avoidGM_talk 0
avoidGM_reconnect 1800
avoidGM_ignoreList
avoidList 1
avoidList_inLockOnly 0
avoidList_reconnect 1800
cachePlayerNames 1
cachePlayerNames_duration 900
cachePlayerNames_maxSize 100
clientSight 20
dcOnDeath 0
dcOnDualLogin 300
dcOnDisconnect 0
dcOnEmptyArrow 0
dcOnMaxReconnections 0
dcOnMute 0
dcOnPM 0
dcOnZeny 0
dcOnStorageFull 1
dcOnPlayer 0
follow 1
followTarget --- nama yg diikuti
followEmotion 1
followEmotion_distance 4
followFaceDirection 0
followDistanceMax 12 --- jarak maximal
followDistanceMin 6 --- jarak minimal
followLostStep 12 --- jarak kehilangan master
followSitAuto 1
followBot 1
itemsTakeAuto 0
itemsTakeAuto_party 0
itemsGatherAuto 0
itemsMaxWeight 49
itemsMaxWeight_sellOrStore 48
itemsMaxNum_sellOrStore 99
cartMaxWeight 7900
itemsTakeAuto_new 0
lockMap
lockMap_x
lockMap_y
lockMap_randX
lockMap_randY
route_escape_reachedNoPortal 1
route_escape_randomWalk 1
route_escape_shout
route_randomWalk 1
route_randomWalk_inTown 0
route_randomWalk_maxRouteTime 75
route_maxWarpFee
route_maxNpcTries 5
route_teleport 0
route_teleport_minDistance 150
route_teleport_maxTries 8
route_teleport_notInMaps
route_step 15
runFromTarget 0
runFromTarget_dist 6
saveMap Payon
saveMap_warpToBuyOrSell 0
saveMap_warpChatCommand
shopAuto_open 0
shop_random 0
sitAuto_hp_lower 20
sitAuto_hp_upper 40
sitAuto_sp_lower 20
sitAuto_sp_upper 40
sitAuto_over_50 0
sitAuto_idle 1
sitAuto_look
sitAuto_look_from_wall
statsAddAuto 0
statsAddAuto_list
statsAddAuto_dontUseBonus 0
statsAdd_over_99 0
skillsAddAuto 0
skillsAddAuto_list
tankMode 0
tankModeTarget
teleportAuto_hp 0
teleportAuto_sp 0
teleportAuto_idle 0
teleportAuto_portal 0
teleportAuto_search 0
teleportAuto_minAggressives 0
teleportAuto_minAggressivesInLock 0
teleportAuto_onlyWhenSafe 0
teleportAuto_maxDmg 0
teleportAuto_maxDmgInLock 0
teleportAuto_deadly 1
teleportAuto_useSkill 3
teleportAuto_useChatCommand
teleportAuto_allPlayers 0
teleportAuto_atkCount 0
teleportAuto_atkMiss 10
teleportAuto_unstuck 0
teleportAuto_dropTarget 0
teleportAuto_dropTargetKS 0
teleportAuto_attackedWhenSitting 0
teleportAuto_totalDmg 0
teleportAuto_totalDmgInLock 0
teleportAuto_equip_leftAccessory
teleportAuto_equip_rightAccessory
teleportAuto_lostHomunculus
teleportAuto_useItemForRespawn
dealAuto 1
dealAuto_names
partyAuto 1
partyAutoShare 1
guildAutoDeny 1
verbose 1
showDomain 0
squelchDomains
verboseDomains
beepDomains
beepDomains_notInTown
logChat 0
logPrivateChat 1
logPartyChat 1
logGuildChat 1
logSystemChat 1
logEmoticons
logConsole 0
logAppendUsername 1
chatTitleOversize 0
shopTitleOversize 0
sleepTime 50000
ignoreAll 0
itemHistory 0
autoTalkCont 1
noAutoSkill 0
portalRecord 2
missDamage 0
tankersList
removeActorWithDistance
######## Block options ########
# You can copy & paste any block multiple times. So if you want to
# configure two attack skills, just duplicate the attackSkillSlot block.
attackSkillSlot Lex Aeterna {
lvl 10
dist 5
maxCastTime 0
minCastTime 0
hp
sp > 10
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
previousDamage
stopWhenHit 0
inLockOnly 0
notInTown 0
timeout 0
disabled 0
monsters Les, Wood Goblin, Geographer
notMonsters
maxAttempts 0
maxUses 0
target_whenStatusActive
target_whenStatusInactive
target_deltaHp
inInventory
isSelfSkill 0
equip_topHead
equip_midHead
equip_lowHead
equip_leftHand
equip_rightHand
equip_leftAccessory
equip_rightAccessory
equip_robe
equip_armor
equip_shoes
equip_arrow
manualAI 0
}
useSelf_skill Heal {
lvl 10
hp < 70%
sp > 10%
}
useSelf_skill Increase AGI {
lvl 10
whenStatusInactive Increase AGI
sp > 10%
timeout 5
}
useSelf_skill Blessing {
lvl 10
whenStatusInactive Blessing
sp > 10%
timeout 5
}
useSelf_skill Angelus {
lvl 7
whenStatusInactive Angelus
sp > 10%
timeout 5
}
useSelf_skill Kyrie Eleison {
lvl 5
sp > 45
stopWhenHit 1
notWhileSitting 1
notInTown 1
timeout 5
whenStatusInactive Kyrie Eleison
}
useSelf_skill Magnificat {
lvl 3
sp > 45
stopWhenHit 1
notWhileSitting 1
notInTown 1
timeout 5
whenStatusInactive Magnificat
}
useSelf_skill Gloria {
lvl 1
sp > 25
whenStatusInactive Gloria
timeout 28
}
useSelf_skill Ruwach {
lvl 1
whenStatusInactive Ruwach
sp > 10%
timeout 5
}
useSelf_skill_smartHeal 1
partySkill Magnificat {
lvl 3
sp
stopWhenHit 1
timeout 10
whenStatusInactive Magnificat
partyAggressives < 1
isSelfSkill 1
}
partySkill Resurrection {
lvl 4
target_dead 1
}
partySkill Impositio Manus {
lvl 3
sp > 25
notInTown 1
timeout 3
disabled 0
target_whenStatusInactive Impositio Manus
target_timeout 60
}
partySkill Heal {
lvl 10
target_hp < 60%
sp > 10 %
}
partySkill Blessing {
lvl 10
sp > 64
notInTown 1
timeout 3
target_whenStatusInactive Blessing
target_timeout 240
}
partySkill Kyrie Eleison {
lvl 10
sp > 50
notInTown 1
timeout 3
target_whenStatusInactive Kyrie Eleison
target_timeout 240
}
partySkill Increase AGI {
lvl 10
sp > 45
notInTown 0
timeout 3
target_whenStatusInactive Increase AGI
target_timeout 240
}
partySkill Angelus {
lvl 7
sp > 45
notInTown 1
timeout 3
target_whenStatusInactive Angelus
target_timeout 240
isSelfSkill 1
}
partySkill Cure {
lvl 1
target_whenStatusActive Cursed, Blinded, Chaos, Silenced
sp > 10%
timeout 5
}
partySkill Status Recovery {
lvl 1
sp > 25
timeout 2
target_whenStatusActive Frozen, Stone Curse, Stun
}
autoSwitch_default_rightHand
autoSwitch_default_leftHand
autoSwitch_default_arrow
# NOTE: In the case of two handed weapons, or no Shield,
# duplicate the weapon name for 'rightHand'
# To attack with bare hands, specify "[NONE]" (without the quotes) for rightHand
autoSwitch {
rightHand
leftHand
arrow
distance
useWeapon
}
useSelf_item Novice Potion {
hp <= 50
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
monsters
notMonsters
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
timeout
disabled 0
inInventory
manualAI 0
}
######## Autostorage/autosell ########
buyAuto {
npc
standpoint
distance 5
minAmount 2
maxAmount 3
}
sellAuto 0
sellAuto_npc
sellAuto_standpoint
sellAuto_distance 5
storageAuto 0
storageAuto_npc
storageAuto_distance 5
storageAuto_npc_type 1
storageAuto_npc_steps
storageAuto_password
storageAuto_keepOpen 0
storageAuto_useChatCommand
relogAfterStorage 1
minStorageZeny 50
npcTimeResponse
getAuto {
minAmount 0
maxAmount 350
passive 0
}
######## Debugging options; only useful for developers ########
debug 0
debugPacket_unparsed 0
debugPacket_received 0
debugPacket_ro_sent 0
debugPacket_sent 0
debugPacket_exclude
debugPacket_include
debugPacket_include_dumpMethod
debugDomains
storageEncryptKey 0x050B6F79, 0x0202C179, 0x00E20120, 0x04FA43E3, 0x0179B6C8, 0x05973DF2, 0x007D8D6B, 0x08CB9ED9
gameGuard 1
serverEncoding Western
macro_nowarn 1
macro_orphans terminate
macro_debug none
macro_readmanual red/chili
Note :
- tidak memakai lex aeterna ( di mon_Control.txt harus diganti menjadi )
all 0 0 0
- memakai lex aeterna ( di mon_control.txt harus diganti menjadi )
all 0 0 0
Nama monster 2 0 1 --->>> nama monster yang terkena skill lex aeterna saja
- untuk skill priest na bisa di edit" sndiri... hehehe
Sekian...
Thx bgt ya kk .::Yakuza::. alias kk agam.. buat :
Rod[4]
Buckler[1]
Shoes[1]
and sejumlah zeny yang udah dkasih ke aq buat modal hunt n bli BD ^^
hehehe
thx bgt..
Thanks banget ke maydy yang udah kasih gw "Beret" secara cuma"..
hehe
sekali lage..
Thx bgt..
gw disini cuman mw share tentang perasaan gw n pengalaman gw pas mw merubah aco gw jd monk.. hehehe... dikit doank kog crita nya..
setelah 1 minggu bot di Muka teruz.. akhir nya gw mencapai lv 68 dan Job 50.. wah pasti pd gk bs ngebayangin ya.. betapa lama na hunt disana.. ya maklum larr, org equip keg sampah gt.. hahahah
Pas pertama" sih semangat waktu jalan ke tempat Monk, tp jalan nya jauh banget .. dari pront kiri truz ke warp paling atas , ke warp paling atas lagi , warp paling atas lagi.. baru nyampe tempet monk..
pertama ngomong sm NPC yang ad didepen teruz disuruh ke Moohae yang ad di tempet paling kanan bawah.. sampe disana malah disuruh cari item.. jadi balik lagi ke tempat asal mw gk mw.. buat cari item Tooth of Bat 10 , Bear Footskin's 5 , Poison Spore 20.. nah itu dah abizin sekitar 60k kalo boleh dibilang.. /sob"
bis dah ktemu balik lagi.. GRRR dalam hati gw.. nih test bener" ngelatih kesabaran bgt yachh..
/e1 nah setelah itu gw ke tmpt Moohae lage.. setelah dikasih barang nya dia suruh gw ke arah utara.. deket tempet kuburan para monk gt dech kalo gk salah.. nah test yang ini sih gk gt sulit ya,.. soal na cuman lafalin yang dia bilang aj.. jd gampang.. klo mw pake cara goblok yua pake Print Screen ato tulis tangan gt.. wkwkwkwk
setelah itu gw disuruh ke NPC Monk yang ad deket kiri bawah kalo gk slh inget.. /hmm disuruh pilih mw Q apa.. setelah gw pilih Marathon.. nah gw bingung sndiri harus ke mana.. soal na kn gtw yg mana kuil nya.. mana tempet na gt gede lage.. jd tmpt nyut" pala gw.. Grrr.. sampe gw ngomong ke NPC itu berapa kale tw..
abiz itu gw ke dkt tmpt Moohae berada.. dkt sana ternyata ad 1 warp lg dkt sblh kiri nya.. ya msk aj.. eh ternyata bnr.. dasar ksh tw na gk jelas bgt tuh NPC.. /e5 biz masuk kan pilih Q Marathon 10 Lap.. nah gw jalananin ajah.. eh baru lap pertama dah jatoh ke jurang.... /sob" nah tanpa mikir lage gw lanjut ajah lage.. tapi di lap ke 4 gw jatoh lage.. kan harus ulang lage dari awal,, ywdah dech.. say bye" to Marathon.. biz itu gw ambil Q jamur.. eh bingung gw.. kog map na ilank gt.. gtw nya dah mule.. yawda gw batalin ajah.. truz gw balek ke kota buat bli Mushroom nya itu.. total harga nya sekitar 250k kalo gk slh.. /sob".. dah miskin kan.. tmb miskin lagi...
setelah itu.. gw balek ke tmpt NPC yang buat Q jamur itu lage.. setelah lulus gw dsuruh ke tmpt Tomato ya ato apa lah itu.. /heh ... disana ternyata ada Q lage.. nah biz itu dia warp gw ke 1 tmpt buat Quest lage.. buat cari warp yang laen.. tmpt na keg labirin.. cuman gk gt keliatan jd rada sulit gt deng.. truz ad zombie na lg.. bikin kaget aj gt.. /wah... untung slamat sampe tujuan setelah coba kesana sini... hehe..
bis itu balek ke Tomato itu la.. biz ngomong diksh green potion..
nah ke tmpt Moohae lage buat brubah.. tp sblm itu hrs minum green potion na dl.. biar peredaran nya bisa sm keg MONK.. haha.. lucu bgt ya.. kita ajah gk bs liad.. tp ad peredaran nya... wkwkkw... ngakak abiz gt.. setelah itu.. ijab kabul MONK.. hehe.. alias SUMPAH MATI wat jd monk... dan ditny" beberapa pertanyaan gampang gt dech..
setelah itu.. gw jd MONK..MONK..MONK... oh iy gw jd diksh Knuckle Brase [2] sm Moohae /gg
dah itu aj kog pengalaman gw.. sry bgt ya kalo ancur karangan nya.. emank gk bs ngarang seh gw.. =p
Ini adalah tips dan tricks buat para pemain RO yang mw ninja na cpt" lv 70 ato lebih.. "WOW"..
gmn cara nya ???
1-19 - Bot di tempat training di tmpt Drops , dkk berada..
20 - 40 - Hunt di Muka pake Bodyguard.. Minimal harus ad 100k .. alias buat 4 jem ato lbh..
41 - 70 - hunt di Geo.. (Element Api) dan khusus Metaling pake element es aj..
71 - 99 - bisa di coba di Moskov ato tmpt laen na
Note :
- Int harus gede kalo mw hunt di sana.. dan equip dah harus mencukupi kalo mw lebih mantep.. /gg
- 20 - 40 pake bodyguard lv1 aj yang hrg nya 10k buat 30 menit.. ^^
- 41 - 99 gk pake Bodyguard Lagi...
Moga" catatan yang pendek ini bisa berguna dech buat temen-temen yang maen RO ^^
Nah skill ini dibuat untuk support serta bisa kill undead dengan ME alias Magnus Exorcismus
dari aco job 50 hingga Priest job 50 ^^
Acolyte - Job 50
Divine Protection - 5
Ruwach - 1
Warp - 4
Pneuma - 1
Heal - 10
Increase Agi - 10
Blessing - 10
Aqua Benedicta - 1
Angelus - 7
Priest ME - Job 50
Increase SP Recovery - 4
Impositio Magnus - 3
Suffragium - 3
Aspersio - 4
Sanctuary - 3
Status Recovery - 1
Ressurection - 1
Safety Wall - 3
Kyrie Eleison - 4
Magnificat - 3
Gloria - 1
Lex Divina - 5
Turn Undead - 3
Lex Aeterna - 1
Magnus Exorcismus - 10
Note Buat Priest : Only For ME Type.. ^^
I'll share my skill list for mage job 50 to wizard job 50 right now.. i hope this one will be useful to everyone ^^
Mage - 50
Sight - 1
Cold Bolt - 10
Frost Driver - 4
Lightening Bolt - 10
FIre Bolt - 10
Fire Ball - 5
Fire Wall - 4
THunder Storm - 3
Napalm Beat - 1
Stone Curse - 1
Wizard - 50
Sense - 1
Sightrasher - 2
Frost Nova - 1
Meteor Storm - 10
Lord of Vermilion - 10
Storm Gust - 10
Jupiter Thunder - 10
Ice Wall - 4
Water Ball - 1
Note For Wizard - if you dont want to take the "Water Ball" then put the poin in "Fire Pillar"
also the same for "Frost Nova" if you dont want it then put the poin to "Fire Pillar"
and change the "Ice Wall" to 3 so you can get "Fire Pillar" for 3 either..
Thx..