Results 1 to 21 of 21

Thread: Wizzups? Ess Miner 1.5 Help

  1. #1
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Wizzups? Ess Miner 1.5 Help

    Hi all, Ive set up SRL and Scar 2.3 because this script needs this.

    When running the script my char dose not move. i just get this error.

    Any help would be much welcome

    [Runtime Error] : Out Of Range in line 58 in script C:\Program Files\SCAR 2.03\Scripts\SRL Essence Miner 1[1].15.scar

    Line 58 = Players[1].Name :='IdidputmyRSnamehere';

  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    1. Stop leeching
    2. Post the DeclarePlayers procedure

  3. #3
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Procedure DeclarePlayers;

    Begin
    HowManyPlayers:= NumberOfUsers;
    NumberOfPlayers( HowManyPlayers );
    CurrentPlayer := StartPlayer;
    Players[0].Name :='ispam07';
    Players[0].Pass :='';
    Players[0].Nick :='';
    Players[0].Loc :='Bank';
    Players[0].Active:=True;
    Players[0].Boolean1 := True; // Is The Pick Equipped?
    Players[0].Boolean2 := False; // False for brightness Check Once.
    Players[0].String1 := ''; // Bank PIN, If any.

    Players[1].Name :='Ispam07';
    Players[1].Pass :='';
    Players[1].Nick :='';
    Players[1].Loc :='Bank';
    Players[1].Active:=True;
    Players[1].Boolean1 := True; // Is The Pick Equipped?
    Players[1].Boolean2 := False; // False for brightness Check Once.
    Players[1].String1 := ''; // Bank PIN, If any.

    Players[2].Name :='ispam07';
    Players[2].Pass :='';
    Players[2].Nick :='';
    Players[2].Loc :='Bank';
    Players[2].Active:=True;
    Players[2].Boolean1 := True; // Is The Pick Equipped?
    Players[2].Boolean2 := False; // False for brightness Check Once.
    Players[2].String1 := ''; // Bank PIN, If any.

    Players[3].Name :='ispam07';
    Players[3].Pass :='';
    Players[3].Nick :='';
    Players[3].Loc :='Bank';
    Players[3].Active:=True;
    Players[3].Boolean1 := True; // Is The Pick Equipped?
    Players[3].Boolean2 := False; // False for brightness Check Once.
    Players[3].String1 := ''; // Bank PIN, If any.

    Players[4].Name :='ispam07';
    Players[4].Pass :='';
    Players[4].Nick :='';
    Players[4].Loc :='Bank';
    Players[4].Active:=True;
    Players[4].Boolean1 := True; // Is The Pick Equipped?
    Players[4].Boolean2 := False; // False for brightness Check Once.
    Players[4].String1 := ''; // Bank PIN, If any.

    Players[5].Name :='ispam07';
    Players[5].Pass :='';
    Players[5].Nick :='';
    Players[5].Loc :='Bank';
    Players[5].Active:=True;
    Players[5].Boolean1 := True; // Is The Pick Equipped?
    Players[5].Boolean2 := False; // False for brightness Check Once.
    Players[5].String1 := ''; // Bank PIN, If any.

    Players[6].Name :='ispam07';
    Players[6].Pass :='';
    Players[6].Nick :='';
    Players[6].Active:=True;
    Players[6].Loc := 'Bank';
    Players[6].Boolean1 := True; // Is The Pick Equipped?
    Players[6].Boolean2 := False; // False for brightness Check Once.
    Players[6].String1 := ''; // Bank PIN, If any.

    Players[7].Name :='ispam07';
    Players[7].Pass :='';
    Players[7].Nick :='';
    Players[7].Active:=True;
    Players[7].Loc := 'Bank';
    Players[7].Boolean1 := True; // Is The Pick Equipped?
    Players[7].Boolean2 := False; // False for brightness Check Once.
    Players[7].String1 := ''; // Bank PIN, If any.

    Writeln( IntToStr ( NumberOfUsers ) + ' Players' );
    End;


    There...

  4. #4
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    how many players needs to be 8...+ putting 1 player over and over wont make it work longer...the script will get screwed up for the rest of the times...
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  5. #5
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Procedure DeclarePlayers;

    Begin
    HowManyPlayers:= 1;
    NumberOfPlayers( 1 );
    CurrentPlayer := StartPlayer;
    Players[0].Name :='ispam07';
    Players[0].Pass :='';
    Players[0].Nick :='';
    Players[0].Loc :='Bank';
    Players[0].Active:=True;
    Players[0].Boolean1 := True; // Is The Pick Equipped?
    Players[0].Boolean2 := False; // False for brightness Check Once.
    Players[0].String1 := ''; // Bank PIN, If any.


    ??? Still getting same error

  6. #6
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Now im getting this error :/


    [Runtime Error] : Out Of Range in line 295 in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Login.scar

    Line 295= iY := MSCY;

  7. #7
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    HowManyPlayers:= 1;
    NumberOfPlayers( HowManyPlayers );
    CurrentPlayer := 0;
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  8. #8
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Still getting this error


    [Runtime Error] : Out Of Range in line 295 in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Login.scar

    And on line 295 the text is this. iX := MSCX;

  9. #9
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Oh post your DeclarePlayers again... I'll fix it.

  10. #10
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Procedure DeclarePlayers;

    Begin
    HowManyPlayers:= 1;
    NumberOfPlayers( HowManyPlayers );
    CurrentPlayer := 0;

    Players[0].Name :='ispam07';
    Players[0].Pass :='MYPASS';
    Players[0].Nick :='fhe';
    Players[0].Loc :='Bank';
    Players[0].Active:=True;
    Players[0].Boolean1 := True; // Is The Pick Equipped?
    Players[0].Boolean2 := False; // False for brightness Check Once.
    Players[0].String1 := ''; // Bank PIN, If any.

    Writeln( IntToStr ( NumberOfUsers ) + ' Players' );
    End;

  11. #11
    Join Date
    May 2006
    Posts
    1,230
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    pm the script thats giving you there error AS IS, just remove your password(s). I don't see why you are getting that error, unless somehow you removed DeclarePlayers; from the loop.

  12. #12
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    PM sent

  13. #13
    Join Date
    Feb 2007
    Posts
    142
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    .15 requires scar divi and srl 3.7
    not scar 2.3

  14. #14
    Join Date
    May 2006
    Posts
    1,230
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im pretty sure i fixed it for him.

  15. #15
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Just direct them to my tutorial on how to setup your players..



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  16. #16
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Right. My char ran to mine. went inside mined half a inv. and didnt do any thing after my char gaind a mineing lvl :S?

    Also when it goes to the bank. it dosent place the ess into the bk.. it just sits there. and points curser over an item in my bnk and then closes the bk and repeats and repeats :S ?PLEASE HELP

  17. #17
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Right this is what happens.

    The script makes my char run to the ess mine. It mines all a full inv of ess. and then returns to the bank. But for some reason. It dosent deposit the ess into my bank. It just moved the mouse about. But dosnt do any thing :S

    Also when i gain a mineing lvl the script just like freezes :/..... Any ideas ?

    Thanks People

  18. #18
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Have you updated the BankScreen; Function?

  19. #19
    Join Date
    Jun 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yep i am pretty sure i have :/... Still the "lvl up mining" is still a issue... its like my script just stops when i gain a lvl.....

  20. #20
    Join Date
    May 2006
    Posts
    1,230
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    first go to SRL/SRL/CORE/Bank.scar and find the Bankscreen function.
    repleace the number 185, with 184.

    also, in the script (so it doesn't stop when lvl), locate the findfastrandoms, and replace it with this
    SCAR Code:
    Function FindFastRandoms: Boolean;    // By WT-Fakawi.
    var
      i: Integer;
    begin
      for i:=1 to 11 do
      begin
        case I of
           1:  If FindDead then
                 Result := True;
           2:  If FindMod then
                 Result := True;
           3:  If FindMime then
                 Result := True;
           4:  If FindMaze then
                 Result := True;
           5:  If FindQuiz then
                 Result := True;
           6:  If FindDemon then
                 Result := True;
           7:  if NoGameTab then
                 begin
                   Result := True;
                   Players[CurrentPlayer].loc := 'No GameTab';
                   Logout;
                   Exit;
                 end;
           8 : If RC Then Result := True;
     
           9: If FindTalk Then Result := True;
     
           10: If HandleTrade Then Result := True;
           11: ClickToContinue;
        End;
        Wait(1);
      end;

  21. #21
    Join Date
    Jun 2007
    Posts
    410
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    just download srl 3.8 with scar divi. this script should work perfect with those.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Wizzups ess miner
    By PPK in forum OSR Help
    Replies: 14
    Last Post: 11-12-2007, 11:02 PM
  2. wizzups? ess miner
    By rishi42 in forum News and General
    Replies: 3
    Last Post: 06-10-2007, 12:42 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •