Our members are dedicated to PASSION and PURPOSE without drama!

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Ralph

#961
It is still suspection of memory leak, as it runs well probably until the memory runs out.  My bot can run for long, but are a bit cpu demanded.
#962
Ralph's Bot / Re: Coded Mj 4 single hot numbers.
November 27, 2012, 08:17:22 PM
Shall I type it, I chose on the menu, but do not get the format.
#963
Ralph's Bot / Re: Coded Mj 4 single hot numbers.
November 27, 2012, 06:37:18 PM

Victor!I try to that,but it use to not work, or be very hard to read.
#964
Ralph's Bot / Coded Mj 4 single hot numbers.
November 27, 2012, 05:27:11 PM
I coded the method by Ken, as it is a 4  single number using  repeaters, it is something I like to use.  I use here 18 numbers tracking, but can easy be changed. The script plays a 0.01 chip on red until 18 numbers are tracked and then bet any betsize we chose on the hottest sector for the last 18 numbers shown. As soon a number is added the oldest is removed. On tie, the oldest  hot group is used.  I have tested it some today, it looks very good.


The script is not displayed correct, I pasted it but some is gone, like the index at betarr the is gone.


The script:

Code (javascript) Select



A = ",5,6,22,32,";
B = ",15,18,24,27,";
C = ",13,16,19,29,";
D = ",4,7,33,36,";
E = ",1,11,21,28,";
H = ",2,12,20,30,";
J = ",8,14,25,35,";
K = ",3,17,23,31,";
L = ",9,10,26,34,";
betarr = new Array();
var sc = new Array("5,6,22,32","15,18,24,27","13,16,19,29","4,7,33,36","1,11,21,28","2,12,20,30","8,14,25,35","3,17,23,31","9,10,26,34");
function extfunc(number,betsize, bet){
  var num = number;
  if(num == 0){ return bet + "/" + betsize;}
   
      if(A.indexOf("," + num + ",")  >-1){ betarr[betarr.length] = "A";}
      else if(B.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "B";}
      else if(C.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "C";}
      else if(D.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "D";}
      else if(E.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "E";}
      else if(H.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "H";}
      else if(J.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "J";}
      else if(K.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "K";}
      else if(L.indexOf("," + num + ",")>-1){ betarr[betarr.length] = "L";}
       var ny = new Array();
      if(betarr.length>18){
     for(i=1;i<betarr.length;i++){
    ny[i-1] = betarr[i];
     }
     
     
     
   } else { return "rr/0";}
   
      betarr = ny;
      var res = betarr.join("");
      temp = new Array();
      var i = 0;
       
      temp[0]  =    res.match(/A/g) ;
          temp[1]  =    res.match(/B/g);
          temp[2]  =    res.match(/C/g);
          temp[3]  =    res.match(/D/g);
          temp[4]  =    res.match(/E/g);
          temp[5]  =    res.match(/H/g);
          temp[6]  =    res.match(/J/g);
          temp[7]  =    res.match(/K/g);
          temp[8]  =    res.match(/L/g);
          tal=0; w=0;
          for(i=0;i<temp.length;i++){
       if(temp[i] == null) temp[i] = "";
          if(tal<temp[i].length){
          tal= temp[i].length;
          w=i;
          }
         
          }
         
         
       
     return sc[w] + "/" + betsize;
}}
#965
General Discussion / Re: Magical Thinking
November 27, 2012, 09:46:21 AM
Here about half the children has an menthal disorder, as the shools get more fundings to solve such problems. The increase is sole to the way they fund the education.


(By the way education is free, even university)
#966
If you find the screen reading cause problem with the memory, you can try an other way. It will however change the returnvalue for all of the numbers.



   Friend Function checksumman(ex, yj)
        Dim ms As New MemoryStream
        Dim bmpBytes() As Byte
       
        Dim BMP As New Drawing.Bitmap(1,1)
        Dim GFX As System.Drawing.Graphics = System.Drawing.Graphics.FromImage(BMP)
        GFX.CopyFromScreen(ex, yj, 0, 0, BMP.Size)


        BMP.Save(ms, ImageFormat.Bmp)
        bmpBytes = ms.GetBuffer()
        BMP.Dispose()
        ms.Close()
        checksumman = bmpBytes
    End Function
#967
Yes you shall dispose the BMP, but it do not seems to be so much memory for a few pixels, but always dispose and try again.
I will check if I may have done some change after I post it.
#968
"ntdll.dll" is very often in problem.  It is not easy to know which of the many problems it may be. The dll is from the older NT. Microsoft has some support pages handling some of the problems, which can be deadlock, malware infections, registery mess and other. You can try to reinstall windows, and if it not helps, it is probably not any damage in your system. The problems looks some different on your friends computer.

If you find the problem is from the casino flash, it should probably give such a problems in the webbrowsers, they had to deal with the problem at Adobe.
have you got any support from Adobe?
A memory leak from flash is not a likley reason. 

Check if any missing in coding can cause the browser to  reload the casino without dispose the former. a "New" in the wrong place in the code can be what it takes.   If you read the screen (as you must do every spin) look so you dispose all Bitmaps you read after theire use, otherwise it can be a lot of memory used which grows after each spins, and the GC not release.

There can be other reasons as well, in fact hard to advice.





#969
Thanks to ND reminding me of this method, and gave it a name as Lazy24. I coded it in a version which suits on line and lower stakes, as on line you can accept longer sessions and use lower stakes. The script bet 1-1 until two winnings and then add one on each col every winning spin up to 5 chips, then it reset to one each, as it do on a loss. I expect about two weeks until the bot can be for public download.

The script:

Code (javascript) Select
var lose = ",0,1,4,7,10,13,16,19,22,25,28,31,34,";
var result = new Array();
function extfunc(number, betsize, bet){
var num = parseInt(number);
if(lose.indexOf("," + num + ",") >-1){
   result[result.length] = "L";
   return "co2,co3/" + betsize;
} else {
   result[result.length] = "W";
   temp = bet.split(",");
   if(result.length>1){
      if(temp.length<10){
         if(result[result.length-1] ==  "W" && result[result.length-2] ==  "W"){
            return  "co2,co3," + bet + "/" + betsize;
         }
         
      }
   }
}
return  "co2,co3/" + betsize;     
}
#970
Dozen/Column / Re: Second and Third Column
November 27, 2012, 05:04:26 AM
It is normally not so I play 2/3 bets, but this sometimes at a BM casino using SEK 50 chips (the lowest you can use and about 7 dollars). The game can win good, but rapid lose as well. So stop if three losses may be right.


On line things differ, spins goes fast, and you can ride out a bad start using lower stakes and wait for a  winning streak. All positive progressions methods are waiting for a longer hit streak and then make good.


If a robot is used a couple of 100 spins is not that much. I coded the method, and change some to suit low stake online and longer sessions( if needed).


I set a win target to 10, the first col and zero start hit very frequent and it went down 62 units rather fast ( at a BM casino I should not let it go so far using 50 SEK chips, it should have been a loss)  It slowly climbed up and down and ended at 11 plus after  296 spins.
All sessions differ, but count with it can  go rapid up and down even as a 2/3 bet.
#971
Even chance / Re: *PATTERN BREAKER*
November 26, 2012, 05:14:53 PM
Quote from: JohnLegend on November 26, 2012, 04:26:18 PM
My concern isn't whether the RNG is fair or not. But does it remain fair when you are risking serious money.

Even going from pennies to euros. Something feels a bit different. Im prepared to put my 200 euro on the line to find out once and for all.

There is a certain win to loss ratio that should be maintained. My experience tells me what to expect. If I don't see those things over a couple of hundred games. I know something is wrong.

While playing fot pennies everything has been as it should be. The occasional 12 plus

streak followed by two or three closer losses.


Since I moved up im running at 19/3. With the longest winning streak 6 games. that's quite alright. I get periods like that LIVE too.


But it can't or shouldnt stay like that. At some point soon I expect at least 10 wins in a


row. Amazingly when I was playing pennies. I had winning streaks of 32 and 47. So if I don't see at least a 12 or 15. in the next 100 games. Ill know something is definately wrong.


I have heard that before, the casino is fair as long I am winning!
#972
Tutorials & Snippets / Re: [VB.NET] Clicker
November 26, 2012, 05:08:45 PM
At Steve's forum it was the start for the bot. A bot I did, before but could of course not go further without a way to know the cords, so we always start here.


The cords are different, do you want the screen or the form?  The clicker should capture the pixel color as well, as it is often wanted.


It can be used so it stores it, can work as clicker, but can as well make users in a position they think it is not working. Best is to use the forms coordinates.


You can fix it from global using  calculating the  "left" and "top" from the global from the form window, and if not margin is zero take it in, then it works even for a window which is moved.. The API way is normally to get the global coordinates, which can click outside the program form or windows

#973
Even chance / Re: *PATTERN BREAKER*
November 26, 2012, 03:47:49 PM
I can understand that, in the sense of we have different feelings, no logic here, we do that we feel comfortabele with, and like.Game is ambient as well.
#974
Even chance / Re: *PATTERN BREAKER*
November 26, 2012, 03:39:30 PM
Quote from: malcop on November 26, 2012, 03:02:23 PM
You will get a lot of people that says there is no difference between RNG and Live play, and they will be able to back up their claims with lots of stats and figures, but I believe there is more to gambling than just statistics, if it was as simple as that we would have quite a few very rich number crunchers gamblers about.


There  are more to gambling than statistic, probably rigth, but a fair wheel live or RNG is not at all different.
Nobody have given a decent proof, nobody can after seen a serie of number can point out which is RNG or live.
#975
Actuals/Hands / Re: Automated fresh numbers?
November 26, 2012, 06:08:19 AM
Every bot can do it, but snipnets of number may not be of use. The bot which I soon publish will save the numbers in memory, but not save it to disk,as I do want to have the bot safe in a sandbox. However you can manually move it to notepad.


Anybody want to save numbers can do it just lettin the bot run. In may case it is up to now just one casino.


A reader of a live wheel wich monitor 24/7 is possible to make, and send the numbers to a server.