Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Sun Nov 24, 2024 8:12 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
Fish can swim
Dogs have 4 legs
Elephants can fly
Chickens can talk
   

Topic review - roullette bot needs help
Author Message
  Post subject:  Re: roullette bot needs help  Reply with quote
when you open up blue eye macro, there's an option to view local macro's (created by yourself) or repository, which other people have submitted, if you have a look under the roulette tab in repository you'll see a few scripts that were fully working, they may not be now as sites often update and change their software but you should be able to get an idea of what you may need to do by looking through what others have submitted. If you need help send me a PM and i'll help where i can
Post Posted: Sun Oct 21, 2012 3:35 am
  Post subject:  Re: roullette bot needs help  Reply with quote
yes, problems solved,.. i've submitted a few maco's to repository since and there should be a couple more appearing in the next few days :D
Post Posted: Sun Jul 15, 2012 2:52 am
  Post subject:  Re: roullette bot needs help  Reply with quote
did you evr fix this? we need more info to help

maybe in function check wins this is triggering too much?
Code:
if  Color.At coordinate is (RGB)("89", "89", "89", "89", "312")
               begin
                    Variable.Set("red won", "0")
                    Variable.Set("black won", "0")
               end
do you need it to bet more on one thing? if so use begin loop("{bets to place}") function.execute("place bet")end
Post Posted: Sat Jul 14, 2012 12:18 am
  Post subject:  Re: roullette bot needs help  Reply with quote
i'm well stuck...again. i know its not hard but its got me stumped... if anyone out there knows what i need to do,. please sort me out

i'll be forever greatful...
Post Posted: Fri May 11, 2012 8:07 pm
  Post subject:  Re: roullette bot needs help  Reply with quote
ok...so after bashing my head against the double bets wall for to long... i've realised i'm stuck again,.. could anyone advise me on how to repeat the bets after a loss when not betting on red AND black...

i know i either need to associate mouse clicks with a variable...
or a variable with a function.... i've tried both ways but messed it up..

i've even tried using the 1 gigus provided... which bets on red and then doubles the bet for a loss.. so i tried :
when variable "black won" is greater than 5,.. macro.execute( what gigus did )..and still no joy...,..

i'm desperate for help,...it's the final piece of the puzzle... well almost :oops: :oops: :oops:
Post Posted: Fri May 11, 2012 5:24 pm
  Post subject:  Re: roullette bot needs help  Reply with quote
just need the double up bets when its lost,.. it's now betting odds/evens ,...dozens..collumns and colours and 1-18/19-36 after my chosen variables... am almost as happy as a pig in sh**.... :lol: :lol: :lol:
Post Posted: Thu May 10, 2012 8:45 pm
  Post subject:  Re: roullette bot needs help  Reply with quote
i've now captured all number locations on the table so i can add dozens/odds/evens and 1-18/19-36 if i want....thanks damagex for your nudge ,..its betting collumns as i want it to aswell,.still not right sure how to implement the martingale to kick in after i've betted on either red or black or the collumns or any other bet when not betting on red and black and lost...here's the code this far
Code:
function("spin")
     begin
          Mouse.Click at coordinate("632", "598", "left")
          Macro.Pause("9000")
          // Set the amount of time the roulette table needs before it shows which color won
     end
function

function("clear")
     begin
          Mouse.Click at coordinate("466", "596", "left")
          Macro.Pause("100")
          // You might have to adjust this wait time, I don't know if the game has any movement detection
     end
function

function("bet on red")
     begin
          Mouse.Click at coordinate("593", "485", "left")
          Macro.Pause("100")
     end
function

function("bet on black")
     begin
          Mouse.Click at coordinate("640", "529", "left")
          Macro.Pause("100")
     end
function

function("check wins")
     begin
          if  Color.At coordinate is (RGB)("208", "208", "208", "643", "526")
               and
               Color.At coordinate is (RGB)("255", "252", "245", "511", "406")
               begin
                    Variable.Increment (Math)("black won")
                    Variable.Set("red won", "0")
               end
          if  Color.At coordinate is (RGB)("207", "207", "207", "597", "483")
               and
               Color.At coordinate is (RGB)("235", "209", "149", "512", "410")
               begin
                    Variable.Increment (Math)("red won")
                    Variable.Set("black won", "0")
               end
          if  Color.At coordinate is (RGB)("89", "89", "89", "89", "312")
               begin
                    Variable.Set("red won", "0")
                    Variable.Set("black won", "0")
               end
     end
function
 begin
     Variable.Set("red won", "0")
     Variable.Set("black won", "0")
     Variable.Set("collumn 1 won", "0")
     Variable.Set("collumn 2 won", "0")
     Variable.Set("collumn 3 won", "0")
     begin loop("")
          if  Variable.Is less than (Math)("red won", "5")
               begin
                    Function.Execute("bet on red")
               end
          if  Variable.Is less than (Math)("black won", "5")
               begin
                    Function.Execute("bet on black")
               end
          if  Variable.Is equal to("collumn 1 won", "3")
               begin
                    Function.Execute("bet on collumn 2")
                    Function.Execute("bet on collumn 3")
               end
          if  Variable.Is equal to("collumn 2 won", "3")
               begin
                    Function.Execute("bet on collumn 1")
                    Function.Execute("bet on collumn 3")
               end
          if  Variable.Is equal to("collumn 3 won", "3")
               begin
                    Function.Execute("bet on collumn 1")
                    Function.Execute("bet on collumn 2")
               end
          Function.Execute("spin")
          Function.Execute("check wins")
          Function.Execute("check collumn wins")
          Function.Execute("clear")
     end
 end

function("bet on collumn 1")
     begin
          Mouse.Click at coordinate("853", "607", "left")
          Macro.Pause("100")
     end
function

function("bet on collumn 2")
     begin
          Mouse.Click at coordinate("902", "557", "left")
          Macro.Pause("100")
     end
function

function("bet on collumn 3")
     begin
          Mouse.Click at coordinate("948", "513", "left")
          Macro.Pause("100")
     end
function

function("check collumn wins")
     // COLLUMN 1
     if  Color.At coordinate is (RGB)("61", "61", "61", "819", "581")
          // 34 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "789", "558")
          // 31 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "762", "534")
          // 28 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "734", "510")
          // 25 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "707", "488")
          // 22 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "684", "470")
          // 19 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "659", "447")
          // 16 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "638", "433")
          // 13 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "613", "410")
          // 10 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "591", "391")
          //  7 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "571", "376")
          // 4 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "550", "358")
          // 1 RED ODD
          begin
               Variable.Increment (Math)("collumn 1 won")
               Variable.Set("collumn 2 won", "0")
               Variable.Set("collumn 3 won", "0")
          end
     // COLLUMN 2
     if  Color.At coordinate is (RGB)("61", "61", "61", "868", "535")
          // 35 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "839", "511")
          // 32 RED EVEN
          or
          Color.At coordinate is (RGB)("75", "75", "75", "814", "490")
          // 29 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "783", "469")
          // 26 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "759", "448")
          // 23 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "733", "428")
          // 20 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "710", "410")
          // 17 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "686", "391")
          // 14 RED EVEN
          or
          Color.At coordinate is (RGB)("89", "89", "89", "665", "373")
          // 11 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "641", "356")
          // 8 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "619", "341")
          // 5 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "600", "324")
          // 2 BLACK EVEN
          begin
               Variable.Increment (Math)("collumn 2 won")
               Variable.Set("collumn 1 won", "0")
               Variable.Set("collumn 3 won", "0")
          end
     // COLLUMN 3
     if  Color.At coordinate is (RGB)("61", "61", "61", "913", "492")
          // 36 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "885", "470")
          // 33 BLACK ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "857", "453")
          // 30 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "829", "430")
          // 27 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "803", "411")
          // 24 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "779", "392")
          // 21 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "755", "376")
          // 18 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "731", "357")
          // 15 RED ODD
          or
          Color.At coordinate is (RGB)("61", "61", "61", "706", "342")
          // 12 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "859", "451")
          // 30 RED EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "665", "308")
          // 6 BLACK EVEN
          or
          Color.At coordinate is (RGB)("61", "61", "61", "646", "294")
          // 3 RED ODD
          begin
               Variable.Increment (Math)("collumn 3 won")
               Variable.Set("collumn 1 won", "0")
               Variable.Set("collumn 2 won", "0")
          end
function
Post Posted: Thu May 10, 2012 1:30 pm
  Post subject:  Re: roullette bot needs help  Reply with quote
yeah... was killing me.. :D . before you dash off though to rescue some other poor soul...how would you reccomend me add the martingale into it...i've added the collumn bets...nearly working fine...just needs a tweak
Post Posted: Thu May 10, 2012 1:20 am
  Post subject:  Re: roullette bot needs help  Reply with quote
roulettewizard wrote:
your a legend sir,..... i put it in almost identical to you have it...that script didnt work at the very start so i just went through with my old coordinates to trial and it does exactly what it says on the tin....
i take my hat of...thankyou very much,... :D :D :D

Ah well, since you were already trying since last friday. Good luck!
Post Posted: Wed May 09, 2012 11:38 pm
  Post subject:  Re: roullette bot needs help  Reply with quote
your a legend sir,..... i put it in almost identical to you have it...that script didnt work at the very start so i just went through with my old coordinates to trial and it does exactly what it says on the tin....
i take my hat of...thankyou very much,... :D :D :D
Post Posted: Wed May 09, 2012 11:09 pm

All times are UTC


Jump to:  


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