taultunleashed logoKO Bots - Multiple Classes Hunting Bots : KO Submissions
newtopic  postreply
 [ 1 post ] 
blue large dot

KO Bots - Multiple Classes Hunting Bots : KO Submissions

Posted: January 14th, 2009, 5:29 pm
 
megagame

Total Posts: 13
Joined: January 14th, 2009, 5:10 pm
megagame's Reps: 0
User avatar
C+P

Go to your spot and paste the appropriate codes for your character.


ARCHER CODE
SetActiveWindow Knight OnLine Client


ObjVar 10
CommandDelay 300
KeyRate 90
Constants
//========== your skill slots =================//
//Key 1 mannes of fire
//Key 2 mannes of fire (or other archery skills)
//Key 3 minor heal
//Key 4 archery (when you run out of mana pots)
//Key 5 safety
//Key 6 mana pot
//Key 7 hp pot
//Key 8 wolf
//=============== Arrange your skillbar =======//
WolfKey = 8
BackupHpPot = 7
//=============== 1 = evet , 0 = no ============//
wolff = 1
repairr =0
UseTown = 0
UseChicken = 0
safetyy = 1
//======== 1 = Right slot, 2 = Left slot ======//
bow = 1
//=============================================//

End

//======AC===========//
procedure safety Every 20 sec
if $safetyy = 1
delay 200
keydown 5 100 | 100
delay 200
end
end

//======Wolf===========//
procedure wolf Every 126 sec
if $wolff = 1
delay 1300
keydown 8 100 | 100
delay 900
end
end

//======Town===========//
Procedure CheckTown
If $UseTown = 0
Exit
End
IsRed 190, 10
Else
Delay 200
Keys $BackupHpPot
Delay 1500
Keys $BackupHpPot
Delay 300
say /town
Delay 3 sec
keydown c 0.5
stop
End
End

//===ONLY IF YOU HAVE KOHACK ENABLED!===//
Procedure ChickenTown
If $UseChicken = 0
Exit
End
IsRed 1200, 10
Else
Delay 200
Keys $BackupHpPot
Delay 300
keydown {F12} 0.5
delay 50
keydown {F12} 100
Delay 3 sec
keydown c 0.5
stop
End
End

//======Attack=========//
Procedure attack
// use b for aiming npc only
// use z for aiming everything
IsBlack 158,27
keys 4z4 100 | 100
else
Keys 1z2
Keys 12
Keydown z 100 | 100
Keydown 1 100 | 100
Keydown 2 100 | 100
End
End

//======Heal===========//
Procedure heal
IsBlack 244,10
keys 3333
End
IsBlack 220,10
keys 3333
End
End

//======Mana===========//
Procedure mana
IsBlack 500, 27
Keys 6
End
End
//======Repair=========//
procedure RepairRightSide every 10 min
if $repairr = 1
if $bow = 1

delay 100
MousePos 993, 192
delay 100
leftclick
leftmousedown
delay 800
leftmouseup
delay 100
leftmousedown
delay 800
leftmouseup
end
end
end

procedure RepairLeftSide every 10 min
if $repairr = 1
if $bow = 2

delay 100
MousePos 880, 188
delay 100
leftclick
leftmousedown
delay 800
leftmouseup
delay 100
leftmousedown
delay 800
leftmouseup
end
end
end

while 1 = 1
ProcessMessages
Call CheckTown
//Call ChickenTown //=== Only if KoHack enabled!
Call attack
Call heal
Call mana
Call attack
Call heal
End


ASSASINS CODE

SetActiveWindow Knight Online Client
Commanddelay 10
ObjVar 10

// Put first skill in first slot and //
// second on second slot, etc... //

// Note: This macro is for Assassins only //

Procedure ComboItUP
keys 7
delay 50
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 8
delay 1
keys 7
delay 50
end

while 1=1
call ComboItUP
end


Buffer's Code

SetActiveWindow Knight OnLine Client
CommandDelay 500
KeyRate 120

Constants
///////// Shortcut/Skills Keys /////////

HealKey = 1 // The healing shortcut
Malice = 2 // The malice shortcut
HPBuffKey = 3 // The HP buff shortcut
ACBuffKey = 4 // The AC buff shortcut
StrenghtKey = 5 // The Strenght Buff shortcut

HealthPotKey = 7 // The shortcut where health pots are!! (just in case u're being attacked and castfails)
BackupHPPotKey = 7 // Save one different hp pot here, enough to get u at least more than half hp to town
ManaPotKey = 8 // The shortcut where mana pots are

////////// Macro Settings //////////

Strenghts = 1 // Strenght Buff 0 = Off, 1 = On.
GroupBuff = 1 // Use Group buff or single buff (1 for Group, 0 for Single)
DoHeal = 1 // Heals the party - usefull for healers only, turn buff off = 0. (0 = Off, 1 = On).
DoBuff = 1 // Buffs the party - buffers, if healer in party, turn doheal off = 0. (0 = Off, 1 = On).
DoDebuff = 0 // Debuff's mob. Only for malice. (0 = Off, 1 = On).
HPBuffDelay = 2000 // Delay between HP buffing skill.
ACBuffDelay = 2000 // Delay Between AC buffing skill.
HealLevel = 1260 // Level where you want priest to heal 1000 is high
IsDead = 1158 // Level where a person is dead so it wont heal dead people

////////// Dont edit //////////

PartyMembers = 0 // The script automatically calculates this, so DON'T TOUCH
isBuffing = 0 // DON'T TOUCH!
Rest = 0
End

////////// Strenght Buff /////////

procedure Strenght Every 10 min
if $Strenghts = 1
delay 1300
keydown $Strenghtkey 100 | 100
delay 900
end
end

////////// Heal Checker //////////

Procedure CheckPartyHealth
If $DoHeal = 0
Exit
End
SetConst $Rest = 0
Call CheckPartyNumber

// Are there any party members?
If $PartyMembers <1>= 3
// Check 3rd party member
IsBlack $HealLevel, 160
IsBlack $IsDead, 160
else
MousePos 1244, 180
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

Call CheckPartyNumber

If $PartyMembers >= 4
// Check 4th party member
IsBlack $HealLevel, 205
IsBlack $IsDead, 205
else
MousePos 1244, 225
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

Call CheckPartyNumber

If $PartyMembers >= 5
// Check 5th party member
IsBlack $HealLevel, 250
IsBlack $IsDead, 250
else
MousePos 1244, 270
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

Call CheckPartyNumber

If $PartyMembers >= 6
// Check 6th party member
IsBlack $HealLevel, 295
IsBlack $IsDead, 295
else
MousePos 1244, 315
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

Call CheckPartyNumber

If $PartyMembers >= 7
// Check 7th party member
IsBlack $HealLevel, 340
IsBlack $IsDead, 340
else
MousePos 1244, 360
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

Call CheckPartyNumber

If $PartyMembers >= 8
// Check 8th party member
IsBlack $HealLevel, 385
IsBlack $IsDead, 385
else
MousePos 1244, 405
LeftMouseDown 100
Delay 200
LeftMouseUp 100
KeyDown $HealKey 100
Delay 2600
KeyDown c 100
Delay 300
End
End
End

SetConst $Rest = 1
Call CheckPartyNumber
End

////////// Buff checker //////////

Procedure Buff every 610 sec
If $DoBuff = 0
Exit
End

Delay 2 sec
SetConst $Rest = 0
Call CheckPartyNumber
// Are there any party members?
If $PartyMembers <1>= 3
// 3rd Party member
MousePos 1244, 180
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay $HPBuffDelay
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

If $PartyMembers >= 4
// 4th Party member
MousePos 1244, 225
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay $HPBuffDelay
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

If $PartyMembers >= 5
// 5th Party member
MousePos 1244, 270
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay $HPBuffDelay
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

If $PartyMembers >= 6
// 6th Party member
MousePos 1244, 315
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay $HPBuffDelay
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

If $PartyMembers >= 7
// 7th Party member
MousePos 1244, 360
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay $HPBuffDelay
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

If $PartyMembers = 8
// 8th Party member
MousePos 1244, 405
LeftMouseDown
Delay 200
LeftMouseUp
If $GroupBuff = 0
KeyDown $HPBuffKey 100
Delay 1700
End
KeyDown $ACBuffKey 100
Delay $ACBuffDelay
End

Call CheckPartyNumber

KeyDown c 100
SetConst $Rest = 1
Set isBuffing = 0
End


Reply with quote
Want Advertisements After The Last Post Removed? Create A Free Account!

blue large dot Who is online
Users browsing this forum: No registered users and 47 guests

Popular Sections
SWTOR Cheats
Guild Wars 2 Cheats
Guild Wars 2 Hacks
Guild Wars 2 Bots
Diablo 3 Cheats
Guild Wars 2 Mods

Popular Sections
WoW Cataclysm Cheats & Exploits
WoW Cataclysm Hacks & Bots
Star Wars The Old Republic Cheats
SWTOR Mods
Torchlight 2 Cheats
SWTOR Space Mission Bots
Site Nav and RSS
RSS Feed of KO Submissions RSS Feed 
Sitemap of KO Submissions Sitemap 
SitemapIndex SitemapIndex
RSS Feed RSS Feed
Channel list Channel list
left bottom corner Site and Contents Copyright 2001-2012 All Rights Reserved TaultUnleashed.com bottom corner
top left
top right
createaccount
Username:   Password:   Remember Me?