Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Thu Nov 21, 2024 6:19 pm

All times are UTC




Post new topic Reply to topic  [ 42 posts ]  Go to page 1, 2, 3, 4, 5  Next
Author Message
 Post subject: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:09 pm 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
hi, i'm trying to configure a roullette bot that starts betting either red or black after 5 consecutive reds or blacks, the trouble is though it isn't doing what i want it to...when 5 consecutive reds or blacks appear it carries on with the 1st step which is betting red and black..
Code:
 begin
     Macro.Execute new("", "bet red and black", "yes")
     if  Color.Near coordinate is (RGB)("255", "255", "255", "1066", "157", "5")
          and
          Color.Near coordinate is (RGB)("255", "255", "255", "1066", "140", "5")
          and
          Color.Near coordinate is (RGB)("255", "255", "255", "1066", "123", "5")
          and
          Color.Near coordinate is (RGB)("255", "255", "255", "1066", "104", "5")
          and
          Color.Near coordinate is (RGB)("255", "255", "255", "1066", "85", "5")
          begin
               Macro.Pause macro named("", "bet red and black")
               Macro.Execute new("", "clear bets", "yes")
               Mouse.Click at coordinate("591", "483", "left")
               Macro.Execute new("", "spin", "yes")
               or
               if  Color.Near coordinate is (RGB)("255", "0", "0", "1020", "157", "5")
                    and
                    Color.Near coordinate is (RGB)("255", "0", "0", "1021", "142", "5")
                    and
                    Color.Near coordinate is (RGB)("255", "0", "0", "1021", "124", "5")
                    and
                    Color.Near coordinate is (RGB)("255", "0", "0", "1021", "105", "5")
                    and
                    Color.Near coordinate is (RGB)("255", "0", "0", "1021", "86", "5")
                    begin
                         Macro.Pause macro named("", "bet red and black")
                         Macro.Execute new("", "clear bets", "yes")
                         Mouse.Click at coordinate("638", "526", "left")
                         Macro.Execute new("", "spin", "no")
                         Macro.Pause("8000")
                         Macro.Execute new passing 1 argument("", "check if we won", "yes", "won", "0")
                         Macro.Execute new("", "clear bets", "yes")
                    end
               if  Variable.Is equal to("won", "0")
                    begin
                         Variable.Multiply (Math)("current bet", "2")
                         if  Variable.Is greater than (Math)("current bet", "{max bet}")
                              begin
                                   Variable.Set("current bet", "{starting bet}")
                              end
                    end
               if  Variable.Is equal to("won", "1")
                    begin
                         Variable.Set("current bet", "{starting bet}")
                         Macro.Resume all paused macros()
                    end
          end
 end
i would seriously appreciate a nudge in the right direction


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:21 pm 
VIP Contributor
VIP Contributor
User avatar



Joined: Wed Oct 12, 2011 12:46 am
Posts: 656
Location: Athens
Been thanked: 183 time(s)
Has thanked: 43 time(s)
Contribution Points: 13216
Can you post a link to the game that you are using this for?


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:28 pm 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
this is for hastings casino's...there's several different skins, (Party City Casino, Virtual Casino, Club Player Casino to name a few) you need to download/install onto desktop and register an account...maybe to much messing about for ya... was hoping some errors would stand out to a trained eye..


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:36 pm 
VIP Contributor
VIP Contributor
User avatar



Joined: Wed Oct 12, 2011 12:46 am
Posts: 656
Location: Athens
Been thanked: 183 time(s)
Has thanked: 43 time(s)
Contribution Points: 13216
I will look into it. Mind giving me a link? Couldn't find it with google for some reason.


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:41 pm 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
ok...much appreciated., i'll keep on with it, if i solve my dilemma i'll let ya know..


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Fri May 04, 2012 11:44 pm 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
http://www.thevirtualcasino.com/ ...... it appears they also have online play (whether the layouts the same i don't know)..would of thought so... they offer $100 free aswell...think the Code for that is NDB100...go to cashier..click redeem coupon...enter NDB100 (IF I REMEMBER RIGHTLY)


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Sat May 05, 2012 12:00 am 
VIP Contributor
VIP Contributor
User avatar



Joined: Wed Oct 12, 2011 12:46 am
Posts: 656
Location: Athens
Been thanked: 183 time(s)
Has thanked: 43 time(s)
Contribution Points: 13216
At a glance, I don't think you should be using "and". The way you have it written checks those coordinates for that color all at the same time. You want more of a progressive check. I just recently got back to working with BE so I can't just whip up code for you off the top of my head. Is there a particular reason you chose to switch bets after 5 rounds of the same color?


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Sat May 05, 2012 12:05 am 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
yeah...the reason for switching is...when betting red and black...its basically like a free spin...only the ball landing on 0 would be a loss..


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Sat May 05, 2012 12:14 am 
VIP Contributor
VIP Contributor
User avatar



Joined: Wed Oct 12, 2011 12:46 am
Posts: 656
Location: Athens
Been thanked: 183 time(s)
Has thanked: 43 time(s)
Contribution Points: 13216
I asked because when I was playing just now, I landed on red 9 times in a row. Not sure if I understood you correctly, but if you bet on Red AND Black at the same time, you will lose money no matter what. $100 on Red and $100 on Black, you will win $100 but you bet a total of $200.

If you want the bot to bet on red 5 times, and then bet black 5 times you can just loop some basic click coordinate functions. I have a feeling I am misunderstanding you though; shouldn't be helping while on pain meds :lol:


Top
 Profile  
Reply with quote  
 Post subject: Re: roullette bot needs help
Thanked: 0 time(s)  Unread post Posted: Sat May 05, 2012 12:24 am 
Contributor
Contributor



Joined: Tue May 01, 2012 6:24 pm
Posts: 73
Been thanked: 15 time(s)
Has thanked: 0 time(s)
Contribution Points: 149
lol.. they must be good if your feeling a little drowzy :(
the reason i want to only start a bet after 5 consecutives is for that reason you just stated.... after 10 losing bets..your last bet would be $512.....i regularly see 10 reds or blacks in a row...but not much more....so starting at 5 consecutives already behind you ..with a bankroll of $100 you should have enough to cover the price of doubling up until you get back to where you started..hope you understand me...
and you will only lose if it lands on 0...colours pay 2-1...so you will get back your stake plus winnings..and this will cover your loss on the other colour that you staked.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 42 posts ]  Go to page 1, 2, 3, 4, 5  Next

All times are UTC


You cannot post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  


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