1. Welcome to the #1 Gambling Community with the best minds across the entire gambling spectrum. REGISTER NOW!
  2. Have a gambling question?

    Post it here and our gambling experts will answer it!
    Dismiss Notice
  3. Discussions in this section are assumed to be EV- as they are outside of the Advantage Play section. For EV+ discussions, please visit the Advantage Play section.
    Dismiss Notice

Software My Hot Number Sim, as requested.

Discussion in 'Gambling Software Forum' started by gizmotron, May 6, 2020.

  1. gizmotron

    gizmotron Well-Known Member Founding Member

    Joined:
    Jan 1, 2015
    Likes:
    3,040
    Occupation:
    Retired
    Location:
    The West Coast of USA, RV'ing
    This has a couple of changes now. You select the amount bet for the next continuation. It still has user definable intervals. There is no automatic progression. So this should work for those hunting a single hottest number. Let's hope that you can teach yourself how to use it.
     

    Attached Files:

    Smitridel likes this.
  2. Nathan Detroit

    Nathan Detroit Well-Known Member Founding Member

    Joined:
    Dec 25, 2014
    Likes:
    2,080
    But those cats out there won't teach themselves. They want it on a Silver Platter.
     
    Punkcity and mr j like this.
  3. gizmotron

    gizmotron Well-Known Member Founding Member

    Joined:
    Jan 1, 2015
    Likes:
    3,040
    Occupation:
    Retired
    Location:
    The West Coast of USA, RV'ing
    I wrote this thing just to easily see the gaps between hits for each number. Then it evolved to allowing the user to let it run free until it taps out on an interval setting for that number selected. I mean this thing teaches all about hot numbers. Clue: Press Start first. Next check intervals desired, number to bet on, and the amount bet for each spin tested. Then click Continue. If you can do that then you are a genius.
     
    mr j likes this.
  4. Punkcity

    Punkcity Well-Known Member

    Joined:
    Mar 31, 2020
    Likes:
    1,287
    Occupation:
    CEO, manager of sublease my account name.inc
    Location:
    Troll tag team one accounts head , Skipptophia.
    Meow meow purr purr meow
     
  5. SERGIO

    SERGIO Active Member

    Joined:
    Feb 6, 2018
    Likes:
    74
    Location:
    ESPAÑA
    Hello, I would like you to send me this software, but that I can manually enter the numbers one by one, would it be possible?

    Thank you
     
  6. gizmotron

    gizmotron Well-Known Member Founding Member

    Joined:
    Jan 1, 2015
    Likes:
    3,040
    Occupation:
    Retired
    Location:
    The West Coast of USA, RV'ing
    Nope, sorry. Someone could then turn it into a bot for gambling online. You might have noticed or not that I'm not going to get dragged into the chance or liability of that. None of my software has entry possibilities. It's all for study, research, practice, or for making points.
     
    Last edited: May 7, 2020
    Mako likes this.
  7. SERGIO

    SERGIO Active Member

    Joined:
    Feb 6, 2018
    Likes:
    74
    Location:
    ESPAÑA
    Of course I want it to practice, but I need to enter the numbers that come out and not the ones that this program takes out.
    I'm not asking you for any system or anything, just that I can enter the numbers that I want.
    only as a tracker not to do it by hand.
    I am not interested in its forms, nor its indications, only that I enter a number and say how many turns it takes, nothing more.
    the rest is my work.

    Thank you
     

  8. gizmotron

    gizmotron Well-Known Member Founding Member

    Joined:
    Jan 1, 2015
    Likes:
    3,040
    Occupation:
    Retired
    Location:
    The West Coast of USA, RV'ing
    Great idea. Get somebody to program it for you or even better learn how to write your own. I'll even give the source code for the continue button.

    Here is the LIveCode algorithm for the Continue Button mouseUp handler:

    Code:
    on mouseUp
       global dBlok, numItemsZing
       global totalSpins, hTelemetry
       
       lock screen
       put "true" into ming
       put 0 into  holdNotHit
       put the text of field "fldTotalSpins" into totalSpinsBefore
       put the text of field "fldLineNum" into hTotalNow
       put the text of field "fldNum" into zing
       put the text of field "fldNum" into zing3
       put the number of items in line zing3 of field "mainText" into numItemsZing3
       put the text of field "fldNumSpins" into zong2
       if zing = 0 then
          put 37 into field "fldNum"
          put 37 into zing
       end if
       if zing > 37 then
          put "" into field "fldNum"
          answer "Please select a number that exists on the Roulette wheel."
       end if
       if zong2 = 0 then
          put 37 into field "fldNumSpins"
          put 37 into zong
       end if
       if zong2 = "" then
          put 37 into field "fldNumSpins"
          put 37 into zong
       end if
       if zong2 > 100 then
          put "100" into field "fldNumSpins"
          answer "Please select a number of spins lower than 101."
       end if
       
       if zing = "" then
          repeat with i = 1 to 37
             add 1 to totalSpins
             put random(37) into tHit
             repeat with k = 1 to 37
                put "X" after line K of dBlok
             end repeat
             put " " after line tHit of dBlok
          end repeat
          put "" into field "maintext"
          repeat with c = 1 to 37
             put line c of dBlok into zong
             put the number of words in zong into zim
             repeat with hh = 1 to (zim - 1)
                put word hh of zong into ding
                put the number of chars in ding into dong
                if dong < 10 then 
                   put "00" & dong into dong2
                   put dong2 & ", " after line c of field "mainText"
                end if
                if dong > 9 then 
                   if dong < 100 then 
                      put "0" & dong into dong2
                      put dong2 & ", " after line c of field "mainText"
                   end if
                end if
                if dong > 99 then 
                   put dong & ", " after line c of field "mainText"
                end if
             end repeat
          end repeat
          put totalSpins into field "fldTotalSpins" 
       else
          repeat while ming = "true"
             add 1 to totalSpins
             put random(37) into tHit
             repeat with k = 1 to 37
                put "X" after line K of dBlok
             end repeat
             put " " after line tHit of dBlok
             if  tHit = zing then
                put 1 into holdNotHit
             else
                add 1 to holdNotHit
             end if
             if holdNotHit >= zong2 then
                put "false" into ming ------------------- holdNotHit
                exit repeat
             end if
          end repeat
          put the text of field "mainText" into zogg
          put "" into field "maintext"
          repeat with c = 1 to 37
             put line c of dBlok into zong
             put the number of words in zong into zim
             repeat with hh = 1 to (zim - 1)
                put word hh of zong into ding
                put the number of chars in ding into dong
                if dong < 10 then 
                   put "00" & dong into dong2
                   put dong2 & ", " after line c of field "mainText"
                end if
                if dong > 9 then 
                   if dong < 100 then 
                      put "0" & dong into dong2
                      put dong2 & ", " after line c of field "mainText"
                   end if
                end if
                if dong > 99 then 
                   put dong & ", " after line c of field "mainText"
                end if
             end repeat
          end repeat
       end if
       put totalSpins into field "fldTotalSpins" 
       unlock screen
       if zing = "" then
       else
          put 36 into tTimes
          put the text of field "timesAmount" into tTimes2
          --put 1 into tTimes2
          put the text of field "fldLineNum" into numChanger -- amount before Continue
          --      if numChanger > 1 then
          --         put 36 into tTimes -- times 1
          --         put 1 into tTimes2
          --      end if
          --      if numChanger > 23 then
          --         put 72 into tTimes -- times 2
          --         put 2 into tTimes2
          --      end if
          --      if numChanger >47 then
          --         put 108 into tTimes -- times 3
          --         put 3 into tTimes2
          --      end if
          --      if numChanger > 100 then
          --         put 144 into tTimes -- times 4
          --         put 4 into tTimes2
          --      end if
          --      if numChanger < -23 then
          --         put 108 into tTimes -- times 2
          --         put 3 into tTimes2
          --      end if
          --      if numChanger < -107 then
          --         put 324 into tTimes -- times 4
          --         put 9 into tTimes2
          --      end if
          --      if numChanger < -323 then
          --         put 180 into tTimes -- times 5
          --         put 27 into tTimes2
          --      end if
          --      if numChanger < -160 then
          --         put 252 into tTimes -- times 7
          --         put 7 into tTimes2
          --      end if
          --      if numChanger < -240 then
          --         put 360 into tTimes -- times 10
          --         put 10 into tTimes2
          --      end if
          --      if numChanger < -300 then
          --         put 540 into tTimes -- times 16
          --         put 16 into tTimes2
          --      end if
          put the number of words in line zing of zogg into xxt
          put line zing of field "mainText" into yyt
          put the number of words in yyt into vvt
          put "" into zChanger
          put word (xxt + 1) to vvt of line zing of field "mainText" into zChanger
          put totalSpins - totalSpinsBefore into hNowSpins
          if zChanger = "" then 
             put numChanger - (hNowSpins * tTimes2) into field "fldLineNum"
          else
             put the number of words in zChanger into zChanger2
             put ((zChanger2 *  tTimes) - (hNowSpins * tTimes2)) + numChanger into field "fldLineNum"
          end if
          put tTimes2 into field "timesAmount"
          
          set the backgroundcolor of word (xxt + 1) to vvt of line zing of field "mainText" to "light blue"
          focus on field "mainText"
       end if
    end mouseUp
    
    
    I commented out the auto progression with " -- " and hard coded the value with whatever is entered in the text field created for that.  You can get a free version of this I think and copy my stuff from the app itself. It'll be good for you to learn how to program.
    
     
  9. SERGIO

    SERGIO Active Member

    Joined:
    Feb 6, 2018
    Likes:
    74
    Location:
    ESPAÑA
    ok thanks for sharing! especially sharing the software!
    I could help you win with the Turbo shape, but due to your generosity, I will do the same for you!
     
    Joey Torres likes this.
  10. gizmotron

    gizmotron Well-Known Member Founding Member

    Joined:
    Jan 1, 2015
    Likes:
    3,040
    Occupation:
    Retired
    Location:
    The West Coast of USA, RV'ing
    Oh, that one hurt. What is it with you anyway? You flip as fast as failing to persuade me. Now I don't get your secret. But if you do have a secret then what the heck are you doing here asking me for development work when I said clearly that I don't expose myself to international or national gambling violations. I'll bet you don't even know what laws I'm referring to. Did you know that there are scam artists out there that take other people's gambling sims and turn them into robots that play online casinos. They just put a controller that does button clicks over the top of a running sim and away it goes. And all of sudden an app of mine becomes someone else's system for sale.
     
    Nathan Detroit likes this.
  11. Joey Torres

    Joey Torres Active Member

    Joined:
    Jun 16, 2018
    Likes:
    32
    Location:
    Canada
    • Violation of Rule #4: No Posting of Contact Details
    Hi Sergio,

    I cannot send you PM. I'm interested to learn Turbo repeaters method. I will appreciate if you can share it to me
    at [removed]

    Thanks in advance.
     
    Last edited by a moderator: May 17, 2020

Share This Page