Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Thu Nov 21, 2024 2:40 pm

All times are UTC




Post new topic Reply to topic  [ 8 posts ] 
Author Message
 Post subject: Another roulette macro that needs help please dont delete :)
Thanked: 0 time(s)  Unread post Posted: Fri Nov 09, 2012 4:55 am 
Contributor
Contributor



Joined: Thu Nov 08, 2012 6:25 am
Posts: 59
Been thanked: 22 time(s)
Has thanked: 45 time(s)
Contribution Points: 14
Hi all,
Well my first account and posts were deleted by mistake so this time i will keep my post shorter and give information as needed.
Well as im very new to this and never programmed anything in my life i decided to give this a go and started writing a macro for a roulette strategy which is not the usual red black martingale which is what is mostly on here.
This one uses each of the line bets eg.(1-3) (4-6) etc but leaving out the last line result using betvoyagers no zero table.
I have got as far as getting the bets placed and now i just need help to read the results and hook it into placing the bets in the right place and also increasing if same line hit in the next spin.
I hope this explains a little i will add the code ive written so far and hope someone can help tidy it up and finish it cheers.
Code:
 begin
     Window.Set location("BetVoyager.com Online Casino", "yes", "0", "0")
     Macro.Pause("555")
 end
 begin
     Function.Execute("Initial spin")
 end
 begin loop()
     Function.Execute("Line Bets")
 end

function("Initial spin")
     begin
          Mouse.Click at coordinate("323", "479", "left")
     end
     begin
          Mouse.Click at coordinate("376", "234", "left")
     end
     begin
          Mouse.Click at coordinate("422", "255", "left")
          Mouse.Double click at coordinate("394", "345", "left")
          Mouse.Double click at coordinate("504", "401", "left")
          Mouse.Click at coordinate("661", "482", "left")
     end
     begin
          Macro.Pause("6000")
     end
function

function("Line Bets")
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("365", "226", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("388", "237", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("412", "248", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("434", "258", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("458", "269", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("482", "280", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("508", "292", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("531", "303", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("558", "315", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("586", "328", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("616", "342", "left")
     end
     begin
          Macro.Pause("500")
     end
     begin
          Mouse.Click at coordinate("663", "481", "left")
     end
     begin
          Macro.Pause("6000")
     end
function

This is for the downloaded version of bet voyager.
oh and the first bet is just for a spin since you have to bet to be able to spin.
look forward to some help if more info needed please ask.
Cheers
Lambchops


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 0 time(s)  Unread post Posted: Sun Nov 11, 2012 11:15 pm 
Contributor
Contributor



Joined: Sun Nov 11, 2012 10:57 pm
Posts: 69
Location: uk
Been thanked: 20 time(s)
Has thanked: 49 time(s)
Contribution Points: 302
Hi there, can i ask how did you learn to do all that?Is there a book or somewhere i can go to do the same as you are doing? Also are you using the free trial or have you paid for you download version?

cheers

Winner


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 0 time(s)  Unread post Posted: Sun Nov 11, 2012 11:28 pm 
Partner / Developer
Partner / Developer
User avatar



Joined: Mon Jan 18, 2010 11:51 am
Posts: 4525
Been thanked: 1346 time(s)
Has thanked: 133 time(s)
Contribution Points: 33209
Just to be clear - there is no difference between the paid and the free version of BE Macro.
The free trial will just expire after a month.

_________________
Blue Eye - Developer / Moderator
Code:
Gigus


Please read the rules about contribution points - click here

Do you know everything about BE, the forum, licenses and contribution points?
Please take a minute to read this introduction & guidelines.


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 1 time(s)  Unread post Posted: Mon Nov 12, 2012 12:55 am 
Contributor
Contributor



Joined: Thu Nov 08, 2012 6:25 am
Posts: 59
Been thanked: 22 time(s)
Has thanked: 45 time(s)
Contribution Points: 14
Well i just used a few other macros to learn this much and i have never programmed anything in my life, which is why i posted here what i have managed so far hoping someone that knows more could help with the finishing touches although there has been no replys so i may never finish this.


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 2 time(s)  Unread post Posted: Mon Nov 12, 2012 1:56 am 
Lifetime VIP Contributor
Lifetime VIP Contributor
User avatar



Joined: Tue Nov 23, 2010 10:51 am
Posts: 213
Location: Pandora
Been thanked: 101 time(s)
Has thanked: 66 time(s)
Contribution Points: 8650
lambchops, i don't play the game so i can't improve your macro that much, but i can help clean things up for you. the following should run almost exactly like what you posted (i removed a short pause following a long pause at the start of line bet function) but the code is easier to modify - you can speed the whole thing up just by changing the pause variables. also i took out unnecessary begins and ends
Code:
 begin
     Window.Set location("BetVoyager.com Online Casino", "yes", "0", "0")
     Variable.Set("short pause", "500")
     Variable.Set("long pause", "6000")
     Macro.Pause("{short pause}")
     Function.Execute("Initial spin")
     begin loop()
          Function.Execute("Line Bets")
     end
 end

function("Initial spin")
     begin
          Mouse.Click at coordinate("323", "479", "left")
          Mouse.Click at coordinate("376", "234", "left")
          Mouse.Click at coordinate("422", "255", "left")
          Mouse.Double click at coordinate("394", "345", "left")
          Mouse.Double click at coordinate("504", "401", "left")
          Mouse.Click at coordinate("661", "482", "left")
          Macro.Pause("{long pause}")
     end
function

function("Line Bets")
     begin
          Mouse.Click at coordinate("365", "226", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("388", "237", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("412", "248", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("434", "258", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("458", "269", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("482", "280", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("508", "292", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("531", "303", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("558", "315", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("586", "328", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("616", "342", "left")
          Macro.Pause("{short pause}")
          Mouse.Click at coordinate("663", "481", "left")
          Macro.Pause("{long pause}")
     end
function
 
if you want to detect something you will want either pixel detection, pixel pattern detection, image detection, or memory pointers - pixel detection is easiest. if you haven't watched Gigus' video you're missing out - that goes for you too, winner


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 0 time(s)  Unread post Posted: Mon Nov 12, 2012 2:12 am 
Contributor
Contributor



Joined: Thu Nov 08, 2012 6:25 am
Posts: 59
Been thanked: 22 time(s)
Has thanked: 45 time(s)
Contribution Points: 14
Thanks for the help.
This code isnt finished yet cause i got lost on the reading results and changing bets etc is there an easish way to do that cause at the moment this just repeats the same bets over and over which isnt much good.


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 1 time(s)  Unread post Posted: Mon Nov 12, 2012 2:19 am 
Lifetime VIP Contributor
Lifetime VIP Contributor
User avatar



Joined: Tue Nov 23, 2010 10:51 am
Posts: 213
Location: Pandora
Been thanked: 101 time(s)
Has thanked: 66 time(s)
Contribution Points: 8650
if you want to detect something you will want either pixel detection, pixel pattern detection, image detection, or memory pointers - pixel detection is easiest. have you watched Gigus' video? the process would be the same for any program of this type


Top
 Profile  
Reply with quote  
 Post subject: Re: Another roulette macro that needs help please dont delet
Thanked: 0 time(s)  Unread post Posted: Mon Nov 12, 2012 2:25 am 
Contributor
Contributor



Joined: Thu Nov 08, 2012 6:25 am
Posts: 59
Been thanked: 22 time(s)
Has thanked: 45 time(s)
Contribution Points: 14
Hi yeah i have watched that video thats what bought me here in the first place.
I will have another go at it but i think its still bit complicated for me yet.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 8 posts ] 

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