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

NWRScripter : Free automated roulette program. Create any system you want

Started by Tiago2, November 28, 2008, 03:07:41 AM

0 Members and 2 Guests are viewing this topic.

FakeNick


MXkid77

FakeNick,

Set your PC clock back to before February 09 and it will work.

Later

MX

Diarmaid

When I right click asign chip position and then click the chip nothing happens, anyone else have this problem?

Tiago2

Are u running MacOS or linux with a windows emulation? If you're running Vista, try running NWRS as an administrator.

Diarmaid

Have it working now, except when I run a code in virtual mode it works perfectly and very fast reading all the numbers and virtually betting and then when I run it in Real mode to try make money it is very slow and the numbers dont appear in the Script studio window and therefore no betting happens.

Its like as if the program crashes in real play mode, I have tried it on my laptop and desktop computers and the same thing happens. :(

Any ideas??

Thanks in advance.
Diarmaid

Tiago2

Try moving the speed slider at the top right corner of NWRS to the very right.

Diarmaid


Tiago2

Not quite sure what the problem could be. What casino are you using?

Diarmaid

I have tried with both William Hill and bet365.

Maybe its the script but I doubt it.

Tiago2

It works on  playtech casinos. I know Bet365 is playtech so it should work on that. Try a simple script... something like



Uses
  ScriptUtils;   
Begin       
  for Spin := 0 to 10 do                             
    Click_Spin; 
End;


That script will spin the casino wheel 10 times.

Diarmaid

Hi Tiago,

I tried your simple script on William hill.

In virtual mode it works fine and the 10 numbers appear in the NWRS window.

However in real mode it is very slow and the numbers do NOT appear in the NWRS window, its actually crashing because the spins dont stop after 10.
At the bottom on the NWRS it just says clearing bets and it never says spinning.

I tried downloading a new NWRS but that didn't work either. Same happens on both my computers. One is running XP and the other is running Vista.


Thanks in advance
Diarmaid

Diarmaid

I also have now tried Indio casino and the same happens. :(

I have RouletteBot Pro working and I presume this works very similar to the NWRS...

Tiago2

NWRS shouldn't say clearing bets unless you have the rebet button visible in the casino window. If it stalls there then the config isn't being made right for some  reason. Any chance you could make a video of the entire process of creating a config and trying to run NRWS. I may be able to get a better  idea of whats happening and why NWRS isn't working on your computer


FakeNick

Tiago2 has released an undated version! ( total free! ) Thanx! :D
Quote from: Tiago2RNG Fixed.
Chip values fixed aswell. U can now use decimal values and it should place the correct amount down
there also a Balance graph under Tools

functions added

Function GetBalance : Float;
Function GetWinLoss:  Float;
Function CatWon(Cat: Integer) : Boolean
Function CatLost(Cat: Integer): Boolean
function CalcProgr(ProgressionStep, CatGroup, CatCount: Integer) : Integer;

Link: nolinks://nolinks.neverwinterroulette.com/releases/NWRScripter.zip

Lizard911 you seem to be a very knowledgeable coder. If you would like any procedures or functions added to NWRS just let me know and I'll try to code it in.

Enjoy!
Quote from: Tiago2Heres and  example with CalcProgr.


Uses
  ScriptUtils;
Begin
  Str := 'Progressions for Dozens if you''re only betting at one dozen at a time ';
  for i := 1 to 10 do                         
    Str := Str+' '+IntToStr(CalcProgr(i,Dozens,1))+', ';
  Print(Str);
 
  Str := 'Progressions for Dozens if you''re only betting at 2 dozen at a time ';
  for i := 1 to 5 do                                       
    Str := Str+' '+IntToStr(CalcProgr(i,Dozens,2))+', ';
  Print(Str);     
                         
  Str := 'Progressions for Singles if you''re only betting at 1 Singles at a time ';
  for i := 1 to 36 do                                           
    Str := Str+' '+IntToStr(CalcProgr(i,Singles,1))+', ';             
  Print(Str);                                                 
                                 
  Str := 'Progressions for Singles if you''re only betting at 17 Singles at a time ';
  for i := 1 to 10 do                                           
    Str := Str+' '+IntToStr(CalcProgr(i,Singles,17))+', ';             
  Print(Str);           
End;   
Quote from: Tiago2heres and example using CalcProgr, CatWon and CatLost all together. To run it u'll need the new ScriptUtils.psc thats included in the download as this script uses the "mStart" function which was added to ScriptUtils


Uses
  ScriptUtils; 
Begin
  ProgrStep := [1,1];
 
  for i := 0 to 500 do
  Begin
    Click_Spin;                 
    Str := IntToStr(NumberSpun)+': ';
    for Maj := Dozens to Columns do
    Begin                         
      if CatWon(mStart(Maj)) then
        ProgrStep[Maj] := 1
      else if CatLost(mStart(Maj)) then                 
        ProgrStep[Maj] := ProgrStep[Maj] + 1;
      if ProgrStep[Maj] > 10 then
        Exit;
      BetAmt := CalcProgr(ProgrStep[Maj],Maj,1);
      PlaceBet(mStart(Maj),BetAmt);
      Str := Str+'Betting '+IntToStr(BetAmt)+' units on'+CatToStr(mStart(Maj))+'     ';
    End;
    Print(Str);
  End; 
end;
Original post


Stepydan

Hello all

I would like to give NWRS a try. I have searched Tiago 2 site for info on how to configure it, but all links to explanatory videos seem to be dead. Same for the rapidshare link.

I have also tried to follow some tips from here to set it up, but I am stuck with "get rebet" : the mouse pointer zig zags a little, but does not find/click the right button.

Any help would be gladly appreciated.

Cheers,  :)

Stepydan

-