Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Bots & Macros
You last visited: Today at 11:59

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

Advertisement



auto use of meditation&spirit healing&dc&fc

Discussion on auto use of meditation&spirit healing&dc&fc within the CO2 Bots & Macros forum part of the Conquer Online 2 category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 1
Hi,

what it does is:

i) check if you have stamina (no: iv / yes: ii)
ii) check if you need hp/mana (no: iv / yes: iii)
iii) press medi_key ... in script F1 ... put medi or spirit healing there
iv) sleep for a while
repeat
-----------------
Code:
(*
AC tool script by GiYo from epvpers.de - for Conquer online
*)

SetActiveWindow [Conquer]
delay 1000

Constants
 medi_key = {F1}  // put medi or spirit healing or pots here
 hp_pot_key = {F9} // not used at all
(*
 this is intentionally incorrect so it sometimes sends F1 even if low mana ... this way
 it's error prone thus more human like
*)
 stam_coord_x = 44 
 stam_coord_y = 689
 
(*
- adjust y to fit your needs (it defines how soon F1 is sent)
- if you want to use hp pots for tao you should set x to 40 or so
- to use both hp and sp for tao you need to duplicate the inner load rgb with hp coords
- to use pots instead of stamina skill you need to remove the first load/if part
*)
 stam_mana_coord_x = 55
 stam_mana_coord_y = 698
End

while 1 = 1
IsWindow [Conquer] 
 LoadRGB $stam_mana_coord_x, $stam_mana_coord_y
 if {RGBBlue}> 130 // do we need a bit of mana to maximixe medi use
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}< 120 // we have stamina   
   Keys $medi_key
   delay 1 sec   
  end
 end 
 End

 delay 5 sec
end
this is a snipset of code. the more "advanced" (as if) version checks if you have stamina and uses skill, if you don't it uses potion.

you can extract it from my firecircle macro (posting shortly after this post)

here is a snipset that will dc you on low hp. it's made for non-tao use who uses coloader
Code:
   LoadRGB $hp_x_dc, $hp_y_dc
  if {RGBBlue}> 99
   Keys $dc_key
  end
where dc_key = ^T and x and y coords are similar to the earlyer example. just increase y

i intentionally posted only one working example with lots of space (and tips) for improvements. if you merge this with my fc macro (or better strip down fc macro and add dc option, but scroll before dc) you get nice GW helper

@mods: someone could grammar check / proof this, i don't have spellcheck handy. otherwise i will edit this post later
GiYo is offline  
Old 09/07/2005, 10:44   #2
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 1
the fc script:

you will need to change a thing or two to optimize this for your tao. thisone works nicely for tao that's just got to the point where baz does 1 dam

Code:
SetActiveWindow [Conquer]
delay 1000

Constants
 sit_down = 0 // gets set to 1 when no mana pots
 sit_key = {F10}
 medi_key = {F1}
 mana_pot_key = {F4}
 hp_pot_key = {F9}
 spell_key = {F9}
 // coords
 hp_coord_x = 37
 hp_coord_y = 738
 
 stam_coord_x = 44
 stam_coord_y = 689
 
 stam_mana_coord_x = 55
 stam_mana_coord_y = 698

 
 mana_coord_x = 55
 mana_coord_y = 738
End

loop 1000

 LoadRGB $stam_mana_coord_x, $stam_mana_coord_y
 if {RGBBlue}> 130 // do we need a bit of mana to maximixe medi use
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}< 120 // we have stamina
   Keys $medi_key
   delay 1 sec   
  end
 end 

 LoadRGB $hp_coord_x, $hp_coord_y
 if {RGBRed}< 140 // we need healing
  Keys $hp_pot_key
 end
 
 LoadRGB $mana_coord_x, $mana_coord_y
 if {RGBBlue}> 130 // we need mana
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}> 120 // we need stamina too, we're screwed  
   if $sit_down = 1 // only sit if you were told to sit or if we figure that we run out of pots
    delay 20 sec
    Keys $medi_key
   else
    Keys $mana_pot_key
   end
  else
   Keys $medi_key
  end    
  delay 1 sec
 end 
 
// Keys $spell_key
 RightClick
 delay 3000 
end
remove the blasting part, adjust delay, add teleport and dc part from first post in thread and you have gw potter

most comments from 1st post in the thread are applicable
GiYo is offline  
Old 09/07/2005, 10:51   #3
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 1
This will stand still and level about any spell you can think of.

I DO NOT RECOMEND THIS SCRIPT since it does not work very fast. Try Lowfyr's first. If you want flexibility work on this

However, if you want to level nado let's say on basi and want greater customization then you have in boss's bot this will work. even better when you remove the precise seeks (first few) and only leave broadscan.

Again, do not bother commenting too much on this (flaming that is). If you feel like commenting, tell me how to find mobs efficiently. (yes i'll have a look at scar and autoit soon. autoit more then scar, i think)

Code:
(*
AC tool script for taos by GiYo from epvpers.de
*)
SetActiveWindow [Conquer]
delay 1000

Constants
 sit_down = 1 // gets set to 1 when no mana pots
 sit_key = {F10}
 medi_key = {F1}
 mana_pot_key = {F9}
 hp_pot_key = {F9}
 spell_key = {F2}
 // coords
 hp_coord_x = 37
 hp_coord_y = 738
 
 stam_coord_x = 44
 stam_coord_y = 689
 
 mana_coord_x = 55
 mana_coord_y = 738
 
 stam_mana_coord_x = 55
 stam_mana_coord_y = 698
 
 
 // obj seeking
 x_os = 0
 y_os = 0
 found_one = 0
 my_xy = 0,0
 
 // "around me"
 top_x = 320
 top_y = 210
 bottom_x = 680
 bottom_y = 340
 
 //test
 i = 0
End

loop 10000
 
 LoadRGB $stam_mana_coord_x, $stam_mana_coord_y
 if {RGBBlue}> 130 // do we need a bit of mana to maximixe medi use
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}< 120 // we have stamina
   Keys $medi_key
   delay 1 sec
   Keys $spell_key
   MousePos $x_os,$y_os
   RightClick
   
  end
 end
 
 LoadRGB $hp_coord_x, $hp_coord_y
 if {RGBRed}< 140 // we need healing
  Keys $hp_pot_key
 end
 
 LoadRGB $mana_coord_x, $mana_coord_y
 if {RGBBlue}> 130 // we need mana
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}> 120 // we need stamina too, we're screwed
   if $sit_down = 1 // only sit if you were told to sit or if we figure that we run out of pots
    delay 5 sec
    Keys $medi_key
   else
    Keys $mana_pot_key
   end
  else
   Keys $medi_key
  end
  delay 1 sec
 end
 
 setconst $found_one = 0
 Call SeekMob $top_x, $top_y, $bottom_x, $bottom_y, 15, 3, 0, 3
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob $top_x, $top_y, $bottom_x, $bottom_y, 10, 4, 0, 3
 end   
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob $top_x, $top_y, $bottom_x, $bottom_y, 5, 4, 0, 3
 end  
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob 10, 10, 1020, 620, 10, 10, 0, 3
 end  
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob 5, 5, 1020, 620, 10, 10, 0, 3
 end  
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob 2, 2, 1020, 620, 40, 4, 1, 3
 end  
 if $found_one < 5 // we didn't do anything last scan - do broad scan
  Call SeekMob 350, 190, 620, 320, 3, 3, 1, 3
 end  

end

Procedure SeekMob using min_x, min_y, max_x, max_y, x_res, y_res, show_mouse, sleep_time
 setconst $found_one = 0
 setconst $y_os = $min_y
 SetConst found_one=0
 while $y_os< $max_y and $found_one <4
  Compute y_os = $y_os+$y_res
  setconst $x_os = $min_y
  while $x_os<$max_x and $found_one <4
   Compute x_os = $x_os+$x_res
   if $show_mouse = 1
    MousePos $x_os,$y_os
   end
   LoadRGB $x_os, $y_os
   if {RGBRED} = 184 and {RGBGreen} = 3 and {RGBBlue} = 3 // this is hp bar
    SetConst found_one= 5
    Keys $spell_key
    MousePos $x_os,$y_os
    RightClick
    delay $sleep_time sec
   end
  end
 end // while $y_os< $bottom_y and $found_one <4
End
feel free to nodify this. please don't credit yourself for this. Keep in mind, I'm new to all this See the comments from first 2 posts in this thread.
GiYo is offline  
Old 09/10/2005, 09:42   #4
 
elite*gold: 0
Join Date: Aug 2005
Posts: 102
Received Thanks: 5
hey giyo nice work but i have a question the script for fc which is the sit command doesn't seem to work.. i have the sit action on f10 and i have no more mana.. and no pots and it doesn't wanna sit at all. that's all i wanna ask btw +karma for u
korniks is offline  
Old 09/12/2005, 13:42   #5
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 1
true, i disabled the sit key as it seemed to do more bad then good. i guess it depends no how you use it.

i'm at work now so i can't fully change this but let's see:

change from:
Code:
loop 1000

 LoadRGB $stam_mana_coord_x, $stam_mana_coord_y
 if {RGBBlue}> 130 // do we need a bit of mana to maximixe medi use
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}< 120 // we have stamina
   Keys $medi_key
   delay 1 sec   
  end
 end
to:
Code:
loop 1000

 LoadRGB $stam_mana_coord_x, $stam_mana_coord_y
 if {RGBBlue}> 130 // do we need a bit of mana to maximixe medi use
  LoadRGB $stam_coord_x, $stam_coord_y
  if {RGBGreen}< 120 // we have stamina
   Keys $medi_key
   delay 1 sec   
  else
   Keys $sit_key
   delay 10 sec     
  end
 end
this way it will sit for 10 sec. if it has no mana. this is not optimal but it does the trick. i think full mana regen is 20 sec so you have reasonable good chance that you won't wait too long.

on a side-note, fc filled by medi is slllllooowww - use pots as base and medi when stamina recharges.

hth. i'll get back to you on this later

edit:
the actual solution is:
Code:
   if $sit_down = 1 // only sit if you were told to sit or if we figure that we run out of pots
    Keys $sit_key  // <---------------------------- this line was added. ignore the other fix.
    delay 20 sec
    Keys $medi_key
   else
Means you need to add "Keys $sit_key" before 20 sec delay. again, if you get hit by monster while sitting stamina will drop. i do nto recomend sitting in the middle of the mobs, unless you're under stack. to use this you need to change
Code:
sit_down = 0 // gets set to 1 when no mana pots
to 1 too (means sit_down = 1)

i'll be releasing multi clients miner soon, after that i'll release "better" (tho same functionality?) fc macro, in autoit 3. but this should do for now. let me know if you need any other change.

take care
GiYo is offline  
Old 09/12/2005, 14:17   #6
 
elite*gold: 0
Join Date: Jul 2005
Posts: 3,528
Received Thanks: 52
Hmm triple post..-.-
ultimatedestroyer is offline  
Old 09/12/2005, 20:52   #7
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 1
basically those are 3 differnt scripts but i figured they could all be put into one thread since they are related (AC Tool) and one can complement another. so i could also put each in each thread. i'm not hunting post-count, if i would i would say "oh nice <insert here>" in every other post

//me
GiYo is offline  
Thanks
1 User
Old 11/14/2009, 20:31   #8
 
elite*gold: 0
Join Date: Oct 2006
Posts: 14
Received Thanks: 1
Woah works Perfectly
§uperfreak is offline  
Old 11/19/2009, 10:57   #9

 
elite*gold: 146
Join Date: Apr 2008
Posts: 14,686
Received Thanks: 9,968
do not bump up old threads!
Die Schnittstelle is offline  
Closed Thread


Similar Threads Similar Threads
Spirit Healing bot
11/10/2009 - CO2 Bots & Macros - 20 Replies
Using a +1 horse to level spirit healing. Requirments: one +1 steed and one normal steed & Macro Express which can be found here Method: 1. Extract macro somewhere. 2. Place sit on F4. 3. Empty All inventory. 4. Equip normal Steed. 5. Open Inventory. 6. Place Spirit heal in the skills box.
Spirit Healing Help.
05/04/2009 - Conquer Online 2 - 6 Replies
I wanna level my Spirit Healing and it goes so SLOW! I have been thinking and why not make a Bot Like the Toxic Fog Leveler for Tro and then make a Tao or something that Just attacks one Spot (every like 15 seconds or whatever.) with while sitting and using the Meditation. If it exists could i get a point to it cause i want to Fix Spirit Heal lol.
AC Tool Tao meditation and healing rain lvler
07/26/2007 - CO2 Bots & Macros - 1 Replies
I've customized a script to run without problem and lvls ur Meditate and Healing Rain at the same time! Now im only a lvl 54 tao so it might not work for those under or above my lvl. But it works for me. The good thing is though is that the script is very easy to understand and can be configured pretty much by anyone. AC Tool=Download Script to Run= SetActiveWindow &#91;Conquer2.0&#93; Constants sit={F3}
Spirit Healing
12/13/2006 - Conquer Online 2 - 0 Replies
is there a quick way to lvl spirit healing without 2 love forever rings? i still have the basic lvl spirit heal.. and im L93...
BJX not using spirit healing
08/18/2005 - Conquer Online 2 - 1 Replies
Is there a command in the scripts to use it? im lost AND KEEP DYING...LOL



All times are GMT +1. The time now is 11:59.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

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