Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

help please

Started by The Spiders Kiss, May 12, 2009, 09:42:17 AM

0 Members and 1 Guest are viewing this topic.

The Spiders Kiss

Hi
Would like to ask someones help please to code this for roulette xtreme as I cant  :(
If numbers 6,15,24,33 hit then bet 5 on column 3 and 10 on black
If numbers 5,14,23,32 hit bet 5 on column 2 and 10 on red.
Thats all.Thanks in advance if someone can help
regards
TSK

RXGuru

Hello

Here is your system.

Regards

RXGuru

System "Spider Kiss System"
{
If numbers 6,15,24,33 hit then bet 5 on column 3 and 10 on black
If numbers 5,14,23,32 hit bet 5 on column 2 and 10 on red.

}
Method "main"
Begin
    While on Each Spin
    Begin
        Call "Place Bets"
    End
End

//routine to place bets on layouts
Method "Place Bets"
Begin
    if Number 6 has hit each time
    or Number 15 has hit each time
    or Number 24 has hit each time
    or Number 33 has hit each time
    Begin
        Put 5 units on Column C
        Put 10 units on Black
    end
   
    if Number 5 has hit each time
    or Number 14 has hit each time
    or Number 23 has hit each time
    or Number 32 has hit each time
    Begin
        Put 5 units on Column B
        Put 10 units on Red
    end

End



The Spiders Kiss

Hi RxGuru
Thank you very much.
I have a trial version that I am trying to get to grips with.
I thought if I saw "my" little system coded I may be able to pick it up easier.
I am indebted to you.
regards
TSK

The Spiders Kiss

-