Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Thu Nov 21, 2024 8:15 pm

All times are UTC




Post a reply
Username:
Subject:
Message body:
Enter your message here, it may contain no more than 60000 characters. 

Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:
Font size:
Font colour
Options:
BBCode is ON
[img] is OFF
[flash] is OFF
[url] is ON
Smilies are ON
Disable BBCode
Disable smilies
Do not automatically parse URLs
Please click and drag the 2 correct statements to the right hand side.
Please click and drag the 2 correct statements to the right hand side.
Please select the options below to the correct list to avoid automated registrations.
Statements
2 correct statements
Chickens can talk
Elephants can fly
Dogs have 4 legs
Fish can swim
   

Topic review - potion macro ( from memory)
Author Message
  Post subject:  Re: potion macro ( from memory)  Reply with quote
Works perfect for me, Thanks :D
Post Posted: Tue Sep 15, 2015 10:13 pm
  Post subject:  Re: potion macro ( from memory)  Reply with quote
where do I paste this on?
Post Posted: Tue May 01, 2012 5:18 pm
  Post subject:  Re: potion macro ( from memory)  Reply with quote
Separating them in to two macros will also check for both mp and hp at the same time, so yea, that will probably be the best solution.

I'm glad you found the video useful!

And thank you for submitting them to the repository, it does make it a lot easier for others to benefit from them as well :)
Post Posted: Thu Nov 25, 2010 10:03 pm
  Post subject:  Re: potion macro ( from memory)  Reply with quote
I've submitted the macro's to the repository I did try have mp and hp monitored in 1 macro but it seemed to lag for me so I separated them into 2 macro's and added pauses which made the macro’s much smoother, also your video on how to find base pointers was very helpful and now I understand cheat engine I will start attempting more macro’s for soma.
Post Posted: Thu Nov 25, 2010 9:06 pm
  Post subject:  Re: potion macro ( from memory)  Reply with quote
Well done :)

This is way better than using pixel analysis to determine when to use a pot!

Any chance you could also submit this macro to the repository please?
Post Posted: Thu Nov 25, 2010 5:13 pm
  Post subject:  potion macro ( from memory)  Reply with quote
Here’s an alternative pot macro that will work in windowed mode as well as full screen although I have only tried it on one server( soma dev test server) so the base pointers may be different on other servers in which case you would have to find them using cheat engine. If you want full screen replace “somawindow” with “SomaFull”

Also remember you need to add the variable names to the variables box in the bottom left hand corner of create a macro.

Code:
Hp bot script

begin loop()
     Macro.Pause("300")
     Memory.Get value("SomaWindow", "SomaWindow.exe+2E6710,278,240", "4", "currentHP")
     Memory.Get value("SomaWindow", "SomaWindow.exe+2E6710,278,244", "4", "maxHP")
     Variable.Evaluate (Math)("({currentHP} / {maxHP}) * 100", "HPpercentage")
     if  Variable.Is less than (Math)("HPpercentage", "60")
          begin
               Keyboard.Press key("{<f1>}")
          end
 end


Mp bot script

begin loop()
     Macro.Pause("300")
     Memory.Get value("SomaWindow", "SomaWindow.exe+2E6710,278,248", "4", "currentMP")
     Memory.Get value("SomaWindow", "SomaWindow.exe+2E6710,278,24c", "4", "maxMP")
     Variable.Evaluate (Math)("({currentMP} / {maxMP}) * 100", "MPpercentage")
     if  Variable.Is less than (Math)("MPpercentage", "50")
          begin
               Macro.Pause("300")
               Keyboard.Press key("{<f2>}")
          end
 end
Post Posted: Thu Nov 25, 2010 4:37 pm

All times are UTC


Jump to:  


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group