App for Android phone
Budget: $30 – $250 USD
This phone app tracks numbers from a single zero game of Roulette, I need the code written and given to me to put on my android phone.
The aim of the Roulette app for my andriod phone
Is to be able to enter 1 number at a time into the app, there will be a maximum of the last 37 numbers displayed, but more entered.
if number 5 was the 1st number entered, when we reach 37 numbers the number 5 is deleted just that number 5 at the start of the 37 numbers,
not any other number 5's in the list.
We will call this list "Last 37 Numbers". NOTE: what ever number I enter goes in to the list, if I enter the number 5, 5 times they are all counted
as individal numbers.
The next list is called "All Possible Numbers that can come out" these are the numbers from 0,1,2,3..up to..34,35,36
(37 different numbers)(NO 00 Double Zero's are needed in this app)
#..............
There are 2 other lists I care about:
The 1st one is called 1X Numbers, this just means any number in the "Last 37 Numbers" list, that have come out only 1 time.
The only numbers that can be inputted into the app are the numbers from number 0 up to number 36, nothing else goes in, no other numbers no words.
If you check those last 37 numbers that came out and have been inputted into the app,
check those numbers against these numbers number from 0 up to number 36 which ever numbers are not in there are called the "Cold Numbers".
Now those 2 groups of numbers, play an important role in the app, first thing to do is check which list is smaller, the "Cold Numbers" or the "1X Numbers"
list, in this case we will say the "Cold Numbers" are the smallest Lenght list.
Now check it the "Cold Numbers" lenght is between 2 and 15, NEXT CHECK the numbers in the number_pairs (Explained Below) and if both of the 2 numbers
are in the "Cold Numbers" list, EXAMPLE (1,4) then print under Heading "Pairs" (1,4) and every other pairs that are in the "Cold Numbers" list.
When the 1x list becomes smaller you now CHANGE from checking the "Cold Numbers" to checking the "1X Numbers" List,
Do the same thing you were doing to the cold number list but now to the 1X list, you will keep changing between the 2 lists.
NOTE: You are only ever checking one list the smallest one.
If both list are the same lenght, Dont Check Either of Them, if the lenght is not between 2 and 15 Dont Check Either of Them.
Those numbers will be printed at the bottom of the screen, every new number entered you start checking again.
# The number pairs:
number_pairs = [
(1, 4), (2, 5), (3, 6), (7, 10), (8, 11), (9, 12), (1, 2),
(4, 5), (7, 8), (8, 9), (3, 12), (5, 6), (10, 11), (11, 12),
(1, 10), (3, 10), (2, 11), (13, 16), (14, 17), (15, 18), (6, 9),
(20, 23), (21, 24), (13, 14), (16, 17), (19, 20), (22, 23),
(14, 15), (15, 22), (17, 18), (20, 21), (23, 24), (13, 22),
(14, 23), (15, 24), (13, 24), (25, 28), (26, 29), (19, 22),
(31, 34), (32, 35), (33, 36), (25, 26), (28, 29), (31, 32),
(34, 35), (26, 27), (27, 36), (29, 30), (32, 33), (35, 36),
(25, 34), (27, 34), (26, 35), (27, 30)]
#..................
# All the Sixlines:
all sixlines = [
Sixline 1 = (1,2,3,4,5,6)
Sixline 2 = (7,8,9,10,11,12)
Sixline 3 = (13,14,15,16,17,18)
Sixline 4 = (19,20,21,22,23,24)
Sixline 5 = (25,26,27,28,29,30)
Sixline 6 = (31,32,33,34,35,360]
NEXT thing to Check, which ever list either the "Cold Numbers" or the 1X List that has the BIGGEST LENGHT this time we DON'T care about (lenght 2 to 15).
We check each of the Sixlines from Sixline 1 to Sixline 6 and see if there are 4 or more numbers in the BIGGEST LENGHT list.
If 4 of the 6 numbers in any Sixline, EXAMPLE Sixline 1 = (1,2,3,4,5,6) has 4 of its numbers in the BIGGEST LENGHT list, we then print that Sixline
like this, at the bottom of the screen, Sixline 1: (1,2,3,4,5,6).
Print them below where we printed the "Pairs", but a couple of lines up, from the bottom of the screen, so I can see them clearly.
NOTE: There may be more that 1 lot of PAIRS and more than 1 lot of Sixlines.
NOTE: You dont count a number in the Sixlines twice, it has to be 4 differet numbers from that Sixline you are checking.
You will check all of the 6 Sixlines.
From Sixline 1 numbers to Sixline 6 numbers, all the Sixlines that have 4 different numbers that are in the BIGGEST LENGHT list also,
Are printed out at the bottom of the page.
#..................
I have a photo of how the app looks, I will load it later, I did get one version made and put on my phone, it's just a guide.
It can be displayed a little different, but I dont want any bright colours I like it plain.
The most important information is which pairs are in the cold or 1x lists and which Sixlines are in the other BIGGEST LENGHT list.
In the photo you will see a large dark area at the top, I dont want that, I would like a few lines gap from the bottom of the phone screen,
and where the sixline results are displayed.
You will also notice "Last 20 numbers" this is so I can leave the table and come back and know which is the next number to enter into the app.
I also need a delete last number button and a delete all numbers button.
#........
Below are the Streets and Zero (0), I want a counter for each street and Zero, every time a new number is entered, you check which street it is from
EXAMPLE: If the last number out was a 1 or 2 or 3, they are from Street 1, if it was a 4 or 5 or 6, they are from Street 2.
Work out which Street it is from & that street or zero ONLY gets it's counter reset back to 0, all other streets/zero counters have a count of 1
added to there counter total.
# All the Streets:
Zero = (0)
Street 1 = (1,2,3)
Street 2 = (4,5,6)
Street 3 = (7,8,9)
Street 4 = (10,11,12)
Street 5 = (13,14,15)
Street 6 = (16,17,18)
Street 7 = (19,20,21)
Street 8 = (22,23,24)
Street 9 = (25,26,27)
Street 10 = (28,29,30)
Street 11 = (31,32,33)
Street 12 = (34,35,36)
This is how I want it displayed
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 # These are the streets numbers on the same line across the screen
x, x, x, x, x, x, x, x, x, x, x, x, x, # These are the counts, keep them all the same distance apart from each other.
NOTE: When a street becomes double digits it can effect the display distance, keep them all the same distance apart from each other.
where the "last 20 results" are displayed. to the left of them, if not eought room on the next line
I want the lenght of the cold numbers list and the lenght of the 1X list, to be displayed like this Cold x 1X x NOTE: x = lenght of cold or 1X lists
I would like the Streets displayed under them.
I need this made asap
The app must run with out internet connection
The aim of the Roulette app for my andriod phone
Is to be able to enter 1 number at a time into the app, there will be a maximum of the last 37 numbers displayed, but more entered.
if number 5 was the 1st number entered, when we reach 37 numbers the number 5 is deleted just that number 5 at the start of the 37 numbers,
not any other number 5's in the list.
We will call this list "Last 37 Numbers". NOTE: what ever number I enter goes in to the list, if I enter the number 5, 5 times they are all counted
as individal numbers.
The next list is called "All Possible Numbers that can come out" these are the numbers from 0,1,2,3..up to..34,35,36
(37 different numbers)(NO 00 Double Zero's are needed in this app)
#..............
There are 2 other lists I care about:
The 1st one is called 1X Numbers, this just means any number in the "Last 37 Numbers" list, that have come out only 1 time.
The only numbers that can be inputted into the app are the numbers from number 0 up to number 36, nothing else goes in, no other numbers no words.
If you check those last 37 numbers that came out and have been inputted into the app,
check those numbers against these numbers number from 0 up to number 36 which ever numbers are not in there are called the "Cold Numbers".
Now those 2 groups of numbers, play an important role in the app, first thing to do is check which list is smaller, the "Cold Numbers" or the "1X Numbers"
list, in this case we will say the "Cold Numbers" are the smallest Lenght list.
Now check it the "Cold Numbers" lenght is between 2 and 15, NEXT CHECK the numbers in the number_pairs (Explained Below) and if both of the 2 numbers
are in the "Cold Numbers" list, EXAMPLE (1,4) then print under Heading "Pairs" (1,4) and every other pairs that are in the "Cold Numbers" list.
When the 1x list becomes smaller you now CHANGE from checking the "Cold Numbers" to checking the "1X Numbers" List,
Do the same thing you were doing to the cold number list but now to the 1X list, you will keep changing between the 2 lists.
NOTE: You are only ever checking one list the smallest one.
If both list are the same lenght, Dont Check Either of Them, if the lenght is not between 2 and 15 Dont Check Either of Them.
Those numbers will be printed at the bottom of the screen, every new number entered you start checking again.
# The number pairs:
number_pairs = [
(1, 4), (2, 5), (3, 6), (7, 10), (8, 11), (9, 12), (1, 2),
(4, 5), (7, 8), (8, 9), (3, 12), (5, 6), (10, 11), (11, 12),
(1, 10), (3, 10), (2, 11), (13, 16), (14, 17), (15, 18), (6, 9),
(20, 23), (21, 24), (13, 14), (16, 17), (19, 20), (22, 23),
(14, 15), (15, 22), (17, 18), (20, 21), (23, 24), (13, 22),
(14, 23), (15, 24), (13, 24), (25, 28), (26, 29), (19, 22),
(31, 34), (32, 35), (33, 36), (25, 26), (28, 29), (31, 32),
(34, 35), (26, 27), (27, 36), (29, 30), (32, 33), (35, 36),
(25, 34), (27, 34), (26, 35), (27, 30)]
#..................
# All the Sixlines:
all sixlines = [
Sixline 1 = (1,2,3,4,5,6)
Sixline 2 = (7,8,9,10,11,12)
Sixline 3 = (13,14,15,16,17,18)
Sixline 4 = (19,20,21,22,23,24)
Sixline 5 = (25,26,27,28,29,30)
Sixline 6 = (31,32,33,34,35,360]
NEXT thing to Check, which ever list either the "Cold Numbers" or the 1X List that has the BIGGEST LENGHT this time we DON'T care about (lenght 2 to 15).
We check each of the Sixlines from Sixline 1 to Sixline 6 and see if there are 4 or more numbers in the BIGGEST LENGHT list.
If 4 of the 6 numbers in any Sixline, EXAMPLE Sixline 1 = (1,2,3,4,5,6) has 4 of its numbers in the BIGGEST LENGHT list, we then print that Sixline
like this, at the bottom of the screen, Sixline 1: (1,2,3,4,5,6).
Print them below where we printed the "Pairs", but a couple of lines up, from the bottom of the screen, so I can see them clearly.
NOTE: There may be more that 1 lot of PAIRS and more than 1 lot of Sixlines.
NOTE: You dont count a number in the Sixlines twice, it has to be 4 differet numbers from that Sixline you are checking.
You will check all of the 6 Sixlines.
From Sixline 1 numbers to Sixline 6 numbers, all the Sixlines that have 4 different numbers that are in the BIGGEST LENGHT list also,
Are printed out at the bottom of the page.
#..................
I have a photo of how the app looks, I will load it later, I did get one version made and put on my phone, it's just a guide.
It can be displayed a little different, but I dont want any bright colours I like it plain.
The most important information is which pairs are in the cold or 1x lists and which Sixlines are in the other BIGGEST LENGHT list.
In the photo you will see a large dark area at the top, I dont want that, I would like a few lines gap from the bottom of the phone screen,
and where the sixline results are displayed.
You will also notice "Last 20 numbers" this is so I can leave the table and come back and know which is the next number to enter into the app.
I also need a delete last number button and a delete all numbers button.
#........
Below are the Streets and Zero (0), I want a counter for each street and Zero, every time a new number is entered, you check which street it is from
EXAMPLE: If the last number out was a 1 or 2 or 3, they are from Street 1, if it was a 4 or 5 or 6, they are from Street 2.
Work out which Street it is from & that street or zero ONLY gets it's counter reset back to 0, all other streets/zero counters have a count of 1
added to there counter total.
# All the Streets:
Zero = (0)
Street 1 = (1,2,3)
Street 2 = (4,5,6)
Street 3 = (7,8,9)
Street 4 = (10,11,12)
Street 5 = (13,14,15)
Street 6 = (16,17,18)
Street 7 = (19,20,21)
Street 8 = (22,23,24)
Street 9 = (25,26,27)
Street 10 = (28,29,30)
Street 11 = (31,32,33)
Street 12 = (34,35,36)
This is how I want it displayed
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 # These are the streets numbers on the same line across the screen
x, x, x, x, x, x, x, x, x, x, x, x, x, # These are the counts, keep them all the same distance apart from each other.
NOTE: When a street becomes double digits it can effect the display distance, keep them all the same distance apart from each other.
where the "last 20 results" are displayed. to the left of them, if not eought room on the next line
I want the lenght of the cold numbers list and the lenght of the 1X list, to be displayed like this Cold x 1X x NOTE: x = lenght of cold or 1X lists
I would like the Streets displayed under them.
I need this made asap
The app must run with out internet connection
Related categories:
Python
Mobile App Development
Mobile App Testing
Flutter
Android App Development