Please verify you are human

Bot Skills
  Register for your free account! | Forgot your password?

You last visited: Today at 13:45

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Bot Skills

Discussion on Bot Skills within the Ragnarok Online forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Hab ma im Opencore forum bissl gestöbert und ein paar skill eintragungen gefunden:

Acolyte

[CODE]

useSelf_skill Heal {
lvl 10
hp < 50
sp > 10
}


Use Heal if your HP is less than 50% and your SP is more than 10%.

Code:

useSelf_skill Increase AGI {
lvl 10
whenStatusInactive Increase AGI
sp > 10
timeout 5
}


Use Increase AGI when you aren't in Increase AGI status.

Code:

useSelf_skill Blessing {
lvl 10
whenStatusInactive Blessing
sp > 10
timeout 5
}


Use Blessing when you aren't in Blessing status.

Code:

partySkill Blessing {
lvl 10
target_whenStatusInactive Blessing
target_timeout 100
sp > 10
timeout 5
}


Use Blessing on party members. Timeout is better in partySkill than whenStatusInactive.

Code:

partySkill Heal {
lvl 10
target_hp < 40
sp > 10
}


Heal party members.

Code:

partySkill Pneuma {
lvl 1
target_defendMonsters
target_timeout 10
sp > 10
}


Use pneuma on a party member. Specify names of ranged monsters in the defendMonsters attribute.


Priest


Code:

partySkill Resurrection {
lvl 4
target_dead 1
}


Resurrect dead party members.

use magnificat
Code:

useSelf_skill Magnificat {
lvl 5
sp < 50%
whenStatusInactive Magnificat
stopWhenHit 1
inLockOnly 1
notWhileSitting 0
notInTown 1
}

An alternative block for Magnificat if you are following a party would be:
Code:

partySkill Magnificat {
lvl 5
sp > 40
isSelfSkill 1
whenStatusInactive Magnificat
notOnAction move
stopWhenHit 1
aggressives
timeout 3
disabled 0
}


use angelus
Code:

useSelf_skill Angelus {
lvl 10
sp > 20%
whenStatusInactive Angelus
stopWhenHit 1
inLockOnly 1
notWhileSitting 1
notInTown 1
}


An alternative block for Angelusif you are following a party would be:
Code:

partySkill Angelus {
lvl 10
sp > 50
isSelfSkill 1
whenStatusInactive Angelus
stopWhenHit 1
aggressives
notWhileSitting 1
timeout 3
disabled 0
}


impositio manus
Code:

partySkill Impositio Manus {
lvl 10
maxCastTime 0.1
sp > 25
stopWhenHit 0
inLockOnly 1
notWhileSitting 0
notInTown 0
timeout 3
disabled 0
target_whenStatusInactive Impositio Manus
target_timeout 60
}


blessing
Code:

partySkill Blessing {
lvl 10
maxCastTime 0.1
sp > 64
stopWhenHit 0
inLockOnly 1
notWhileSitting 0
notInTown 0
timeout 3
disabled 0
target_whenStatusInactive Blessing
target_timeout 240
}


increase agi
Code:

partySkill Increase AGI {
lvl 10
maxCastTime
sp > 45
stopWhenHit 0
inLockOnly 1
notWhileSitting 1
notInTown 0
timeout 0
disabled 0
target_whenStatusInactive Increase AGI
target_timeout 240
}


Assumptio

Code:

useSelf_skill Assumptio {
lvl 5
sp > 20%
whenStatusInactive Assumptio
stopWhenHit 1
disabled 0
notInTown 1
}

partySkill Assumptio {
lvl 5
sp > 20%
target
target_whenStatusInactive Assumptio
target_timeout 100
disabled 0
stopWhenHit 1
notInTown 1
}


Code:

useSelf_skill Pneuma {
defendMonsters Raydric Archer, Gargoyle
lvl 1
whenNotGround Pneuma
timeout 1
}


Monk

Monk's Attack Skills
Code:

attackSkillSlot Infiltration {
lvl 10
dist 2
maxCastTime 0
minCastTime 0
hp
sp
spirit >0
timeout 0
disabled 0
monsters
notMonsters
maxAttempts 0
maxUses 0
}

attackSkillSlot Finger Offensive {
lvl 10
dist 10
maxCastTime 0
minCastTime 0
hp
sp
spirit 5
#you can adjust how many spirit you need to have before using this skill
timeout 2
disabled 0
monsters
notMonsters
maxAttempts 0
maxUses 0
}

attackSkillSlot Extremity Fist {
lvl 10
dist 2
maxCastTime 0
minCastTime 0
whenStatusActive Vigor Explosion
hp
sp
spirit 5
timeout 0
disabled 0
monsters
notMonsters
maxAttempts 3
maxUses 1
}





Combos With Monks
Code:

attackComboSlot Chain Combo {
lvl 5
afterSkill Triple Attack
waitBeforeUse
autoCombo 1
#NOTE: autoCombo will only work with The CVS version!
dist 1.5
isSelfSkill 1
}

attackComboSlot Combo Finish {
lvl 5
afterSkill Chain Combo
waitBeforeUse
autoCombo 1
#NOTE: autoCombo will only work with The CVS version!
dist 1.5
isSelfSkill 1
}


adjust your waitBeforeUse acording to your monk's agi and dex
Tip: the value is usually under 0.1 in some case 0.005

Self skills
Code:

useSelf_skill Vigor Condensation {
lvl 10
maxCastTime 0
minCastTime 0
hp
sp
spirit <5
aggressives <1
#remove aggressives if you want to cast it when it's attacking
stopWhenHit 1
inLockOnly 0
notWhileSitting 0
notInTown 0
disabled 0
}

useSelf_skill Steel Body {
lvl 10
maxCastTime 0
minCastTime 0
whenStatusInactive Steel Body
hp
sp
spirit 5
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
disabled 0
}

useSelf_skill Vigor Explosion {
lvl 10
maxCastTime 0
minCastTime 0
whenStatusInactive Vigor Explosion
hp
sp
spirit 5
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
disabled 0
}



Champion

Additional Combos
Code:

attackComboSlot Tiger Knuckle Fist {
lvl 5
afterSkill Combo Finish
waitBeforeUse
autoCombo 1
#NOTE: autoCombo will only work with The CVS version!
dist 1.5
isSelfSkill 1
}

attackComboSlot Chain Crush Combo {
lvl 5
afterSkill Tiger Knuckle Fist
waitBeforeUse
autoCombo 1
#NOTE: autoCombo will only work with The CVS version!
dist 1.5
isSelfSkill 1
}


NOTE: only the cvs version will be able to execute the forth combo due to a minor bug.

Self skills
Code:

useSelf_skill Dangerous Soul Collect {
lvl 10
hp
sp
maxCastTime 0
minCastTime 0
spirit <1
aggressives
stopWhenHit 0
inLockOnly 0
notWhileSitting 1
notInTown 0
disabled 0
}




Attack Skills
Code:

attackSkillSlot Palm Push Strike {
lvl 10
dist 2
maxCastTime 0
minCastTime 0
whenStatusActive Vigor Explosion
hp
sp
timeout 0
disabled 0
monsters
notMonsters
maxAttempts 0
maxUses 0
}
Dete86 is offline  
Old 05/13/2006, 15:00   #2
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Swordman / Knight


Use Bowling Bash when there are more than 3 monsters attacking you:
Code:

attackSkillSlot Bowling Bash {
lvl 10
sp > 22
aggressives >= 3
maxUses 2
}



Use Twohand Quicken whenever it runs out:
Code:

useSelf_skill Twohand Quicken {
lvl 10
sp > 50
whenStatusInactive Twohand Quicken
onAction attack
}

#Bash
Code:

attackSkillSlot Bash {
lvl 10
dist 1.5
sp > 30
aggressives > 1 #change the number here
inLockOnly 1
monsters
notMonsters
notInTown 0
}


#Magnum Break
Code:

attackSkillSlot Magnum Break {
lvl 10
dist 1.5
sp > 30
aggressives > 4 #change it
inLockOnly 1
notInTown 0
}


#Endure
Code:

useSelf_skill Endure {
lvl 10
sp > 10
whenStatusInactive Endure
inLockOnly 1
notWhileSitting 1
}


Pierce

Code:

attackSkillSlot Pierce {
lvl 10
dist 1..3
sp > 10
previousDamage
inLockOnly 1
timeout 5
monsters
notMonsters
maxAttempts
maxUses
}




Brandish Spear

Code:

attackSkillSlot Brandish Spear {
lvl 10
dist 1..3
sp >10
aggressives >= 2
inLockOnly
timeout 5
monsters
notMonsters
maxAttempts
maxUses
}


Parrying
Code:

useSelf_skill Parrying {
lvl 10
whenStatusInactive Parrying
inLockOnly 1
notWhileSitting 1
notInTown 1
}


Aura Blade
Code:

useSelf_skill Aura Blade {
lvl 5
sp > 80%
whenStatusInactive Aura Blade
inLockOnly 1
disabled 0
}


Spiral Pierce
Code:

attackSkillSlot Spiral Pierce {
lvl 5
sp > 25%
disabled 0
monsters
maxUses
inLockOnly 1
}


Code:

attackSkillSlot Provoke{
lvl 10
sp >10
monsters
notMonsters
maxUses 1
inLockOnly 1
timeout 10
}


Crusader / Pala


Code:

useSelf_skill Auto Guard {
lvl 1
whenStatusInactive Auto Guard
stopWhenHit 1
inLockOnly 0
notWhileSitting 1
notInTown 1
}




Keep Guard on all the time.

Code:

useSelf_skill Cure {
lvl 1
whenStatusActive Blinded
maxUses 1
}




Cure yourself when blinded.

Code:

attackSkillSlot Sacrifice {
maxUses 1
monsters *
hp > 80
sp > 20
}


Auto Guard
Code:

useSelf_skill Auto Guard {
lvl 10
whenStatusInactive Auto Guard
notWhileSitting 1
inLockOnly 1
}


Grand Cross
Code:

attackSkillSlot Grand Cross {
lvl 10
inLockOnly 1
disabled 0
monsters
isSelfSkill 1
hp > 45%
sp > 20%
}

attackSkillSlot Grand Cross {
lvl 10
inLockOnly 1
disabled 0
monsters
aggressives >= 4
isSelfSkill 1
hp > 45%
sp > 20%
}
Dete86 is offline  
Old 05/13/2006, 15:05   #3
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Archer / Hunter

This one's for Arrow Shower.. in-case of mobs..
Code:

attackSkillSlot Arrow Shower {
lvl 10
dist 7
sp > 5
aggressives >3
inLockOnly 1
monsters
notMonsters
notInTown 0
}


Activate Improve Concentration when it's not active.
Code:

useSelf_skill Improve Concentration {
lvl 10
whenStatusInactive Improve Concentration
onAction attack
}



Use Double Strafe. This can also be used with Blitz Beat, Arrow Shower and other ranged Archer/Hunter Skills.
Code:

attackSkillSlot Double Strafe {
lvl 10
dist 10
sp > 5
aggressives
inLockOnly 1
monsters
notMonsters
notInTown 0
}



Others are free to share their skill configs not yet included here.


useSelf_skill True Sight {
lvl 10
sp > 20
whenStatusInactive True Sight
stopWhenHit 0
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 0
}

useSelf_skill Wind Walk {
lvl 10
sp > 95
whenStatusInactive Wind Walk
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
timeout 0
}
Dete86 is offline  
Old 05/13/2006, 15:07   #4
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Thief, Assa & Rogue

Code:

#This will also work with Sonic Blow, Back Stab.
attackSkillSlot Envenom {
lvl 10
dist 1.5
sp > 20
aggressives 5
inLockOnly 1
monsters
maxUses
target_whenStatusInactive Poisoned
}

#This will also work with Steal Coin, Intimidation, Strip Weapon/Shield/Armor/Helm.
attackSkillSlot Steal {
lvl 10
dist 1.5
sp > 20
maxUses 1
maxAttempts 10
monsters
}

#This will also work for Cloaking.
useSelf_skill Hiding {
lvl 10
hp
sp > 20
aggressives
monsters
inLockOnly 1
notWhileSitting 1
notInTown 1
}

useSelf_skill Enchant Poison {
lvl 10
sp > 20
whenStatusInactive Enchant Poison
monsters
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 165
disabled 0
}

partySkill Enchant Poison {
lvl 10
sp > 20
inLockOnly 1
notWhileSitting 1
notInTown 1
disabled 0
target
target_whenStatusInactive Enchant Poison
target_aggressives
target_monsters
target_timeout 165
}


Soul Breaker
Code:

attackSkillSlot Soul Breaker {
lvl 10
sp > 10%
stopWhenHit 0
inLockOnly 0
notInTown 1
disabled 0
monsters
notMonsters
maxAttempts 0
maxUses
}



Meteor Assault
Code:

attackSkillSlot Meteor Assault {
lvl 10
sp > 10%
previousDamage
stopWhenHit 0
inLockOnly 0
notInTown 1
timeout 0
disabled 0
aggressives >= 5
monsters
notMonsters
maxUses
isSelfSkill 1
}



Enchant Deadly Poison
Code:

useSelf_skill Enchant Deadly Poison {
lvl 5
whenStatusInactive Enchant Deadly Poison
notInTown 1
inLockOnly 1
notWhileSitting 1
disabled 0
inInventory Deadly Poison Bottle > 0
}



Detoxify
Code:

useSelf_skill Detoxify {
lvl 1
whenStatusActive Poisoned
disabled 0
}



Reject Sword
Code:

useSelf_skill Reject Sword {
lvl 10
whenStatusInactive Reject Sword
inLockOnly 1
disabled 0
}
Dete86 is offline  
Old 05/13/2006, 15:12   #5
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Merchant & Blacki

Merchant skills
Activate Crazy Uproar when it's not active.
Code:

useSelf_skill Crazy Uproar {
lvl 1
whenStatusInactive Crazy Uproar
onAction attack
}



Blacksmith skills
Activate Adrenaline Rush and Power-Thrust whenever they're not active:
Code:

useSelf_skill Adrenaline Rush {
lvl 5
whenStatusInactive Adrenaline Rush
onAction attack
}

useSelf_skill Power-Thrust {
lvl 5
whenStatusInactive Power-Thrust
onAction attack
}


#Weapon Perfection
Code:

useSelf_skill Weapon Perfection {
lvl 5
whenStatusInactive Weapon Perfection
onAction attack
}



#Maximum Power Thrust
Code:

useSelf_skill Maximum Power Thrust {
lvl 5
whenStatusInactive Maximum Power Thrust
onAction attack
}



#Meltdown
Code:

useSelf_skill Meltdown {
lvl 10
whenStatusInactive Meltdown
onAction attack

}

Code:

attackSkillSlot Hammer Fall {
lvl 5
onAction attack
maxUses 1
maxAttempts 5
target_WhenStatusInactive Stunned
}



Cart Revolution
Code:

attackSkillSlot Cart Revolution {
lvl 1
dist 1
maxCastTime 0
minCastTime 0
hp
sp > 10% # this limit or enables the use of cart revo.
onAction
aggressives >= 3 # it's up to you how many agrresive before he will use cart revo
stopWhenHit 0
inLockOnly 0
notInTown 1
monsters
notMonsters
maxUses 5 # limits the use of cart revo. But it's not really required
}



Cart Boost
Code:

useSelf_skill Cart Boost {
lvl 1
whenStatusInactive Cart Boost
sp >= 10%
}
Dete86 is offline  
Old 05/13/2006, 15:14   #6
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
Mage / Wizz / Sage

Code:

#This will also work with Fire Ball, Fire Bolt, Lightning Bolt,
# Napalm Beat, Soul Strike, Stone Curse, Thunder Storm,
# Earth Spike, Frost Nova, Heaven's Drive, Water Ball.
attackSkillSlot Cold Bolt {
lvl 10
dist 8
maxCastTime 0.1
minCastTime 0
sp > 10
stopWhenHit 1
inLockOnly 1
notInTown 1
monsters
maxUses
}

#This will also work with Storm Gust, Meteor Storm, Lord of Vermillion.
attackSkillSlot Thunderstorm {
lvl 10
maxCastTime 0.1
minCastTime 0
dist 7
aggressives > 2
}

attackSkillSlot Frost Diver {
lvl 10
dist 6
maxCastTime 0.1
minCastTime 0.1
sp > 10
monsters
target_whenStatusInactive Frozen
}

attackSkillSlot Jupitel Thunder {
lvl 10
dist 6
maxCastTime 0.1
minCastTime 0.1
sp > 10
monsters
target_whenStatusActive Frozen
}

attackSkillSlot Sight {
lvl 1
target_whenStatusActive Hide,Cloaking
isSelfSkill 1
dist 1.5
timeout 30
}

useSelf_skill Energy Coat {
lvl 1
whenStatusInactive Energy Coat
stopWhenHit 1
inLockOnly 0
notWhileSitting 1
notInTown 1
}
Dete86 is offline  
Old 05/14/2006, 01:00   #7
 
ChibiEbil's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 1,738
Received Thanks: 74
wüsste nicht warum wir das hier noch brauchen wenns im OK forum unter FAQs schön ordentlich und sauber steht
Naja vllt verringern sich dann ma die fragestellungen...
ChibiEbil is offline  
Old 05/14/2006, 10:04   #8
 
elite*gold: 0
Join Date: Dec 2005
Posts: 143
Received Thanks: 0
genau deswegen hab ichs gemacht^^

naja und sauber ist es da nicht gemacht.
Dete86 is offline  
Old 05/14/2006, 13:10   #9
 
elite*gold: 0
Join Date: Apr 2005
Posts: 1,621
Received Thanks: 256
ja denke auch das es für einige brauchbar ist. so haben ePvP user die open kore nutzen und fragen gleich hier die chance nachzusehn

bequem ist der mensch^^
killyou is offline  
Old 05/14/2006, 18:30   #10
 
elite*gold: 0
Join Date: May 2005
Posts: 4,620
Received Thanks: 104
OMGWTFBBQ Das ist geklaut von Ragnarok Bot 2006 lmao XD
Maybe It's Maybelline is offline  
Old 05/15/2006, 20:30   #11
 
ChibiEbil's Avatar
 
elite*gold: 0
Join Date: Aug 2005
Posts: 1,738
Received Thanks: 74
na super noch nichma von OK forum rofl xD
ChibiEbil is offline  
Reply


Similar Threads Similar Threads
Cabal Files, Sword Skills, Magic Skills, Buffs, and Weapons
01/31/2016 - Cabal Guides & Templates - 65 Replies
New Discovered Files ^_^ These Files which i discovered came from other people but sword skill files are my works cause im a melee type character Sword skills ^_^ For Force Bladders And Force Shileders FB /FS skil_1h_001.efx - FlashDraw skil_1h_002.efx - Impact Stab skil_1h_005.efx - Force Stab (FB, FS)
[HOW TO] Alte P-skills Skills (mit screens,video's und download)
04/08/2010 - Metin2 PServer Guides & Strategies - 6 Replies
Hi Leute, Heute möchte ich euch zeigen wie ihr die alten Skills ins Client bekommt : Hier ist der Download Also als erstes tut ihr die dateien entpacken, dann fügt ihr die PC.eix und Pc.epk datei ein. Achtung es sind bereits die PC eix und epk datein für die derzeitigen Skills da allerdings könnt ihr die einfach ersetzen, wenn ihr sie doch nicht wollt könnt ihr ein sicherheits backup machen. Metin2 starten und freuen ;)
Lv. 77 Mentalo Server 5, 4 G-Skills, tausche gg. Körper mit G-Skills
01/26/2010 - Metin2 Trading - 6 Replies
Hey E-Pvp Com, Ich biete euch hier meinen Lv. 77 Mentalkrieger auf dem Deutschen Server Antharos an. Der Account enthält kein Equip, 5 Drachenmünzen und 419 Drachenmarken. Der Charakter ist Perfekt geskillt und hat einen guten Ruf. Er befindet sich im Jinno-Reich. Der Charakter hat einen neutralen Rang. Zudem befindet sich auf dem Account ein Lv. 57 Körperkrieger auf dem Server Lechas: Skills: Aura M2, Kr M3, SW M3, Rang: Grausam Screenshots: http://666kb.com/i/bg3y1pjgpf67k4fsm.jpg ...



All times are GMT +1. The time now is 13:45.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.