Page 13 of 39 FirstFirst ... 3111213141523 ... LastLast
Results 301 to 325 of 952

Thread: SRL Essence Miner v2!

  1. #301
    Join Date
    Dec 2007
    Posts
    203
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wrycu View Post
    Successfully compiled (3133 ms)
    SRL Compiled in 2469 msec
    4 Players
    [Runtime Error] : Exception: in line 46 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar
    Set players up correctly, answer has been said up this thread.

  2. #302
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry for not reading a 15 page thread all the way through.

    Code:
    Const
       NumberOfUsers = 1;
       StartPlayer = 0;
       Loads = 5;
       VersionNumber = '2.03';
       SRL_ID   = '********';  // Stats ID.
       SRL_PASS = '*******'; // Stats Pass.
       SmartPrefix = 'world8';
    Code:
    Procedure DeclarePlayers;
    
    Begin
      NumberOfPlayers( NumberOfUsers );
      CurrentPlayer := StartPlayer;
      
      Players[0].Name :='******';
      Players[0].Pass :='*****';
      Players[0].Nick :='****';
      Players[0].Active := True;
      Players[0].Loc := 'Bank';
      Players[0].Booleans[0]  := True;       // Is The Pick Equipped?
    
      {Players[1].Name :='';
      Players[1].Pass :='';
      Players[1].Nick :='';
      Players[1].Active := False;
      Players[1].Loc := 'Bank';
      Players[1].Booleans[0]  := True;       // Is The Pick Equipped?
    
      Players[2].Name :='';
      Players[2].Pass :='';
      Players[2].Nick :='';
      Players[2].Active := True;
      Players[2].Loc := 'False';
      Players[2].Booleans[0]  := True;       // Is The Pick Equipped?}
    
      {Players[3].Name :='';
      Players[3].Pass :='';
      Players[3].Nick :='';
      Players[3].Active := True;
      Players[3].Loc := 'False';
      Players[3].Booleans[0]  := True;       // Is The Pick Equipped?}
    
      Writeln( IntToStr ( HowManyPlayers ) + ' Players' );
      SetPlayerNameTPAs;
    End;
    What exactly is wrong with it?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  3. #303
    Join Date
    Dec 2007
    Posts
    72
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wrycu View Post
    Successfully compiled (3133 ms)
    SRL Compiled in 2469 msec
    4 Players
    [Runtime Error] : Exception: in line 46 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar
    Math.scar is on your part, I had this issue before.
    You should make sure your SRL is up-to-date and if it is, I don't know.

  4. #304
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sanjuro
    Math.scar is on your part, I had this issue before.
    You should make sure your SRL is up-to-date and if it is, I don't know.
    It is up to date.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  5. #305
    Join Date
    Sep 2008
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wizzup usually it stops right next to the building with the teleport guy and says this 0 : ****= F; NoBank; B: 3814 Essence; M : 61. Any idea why it just logs out?

  6. #306
    Join Date
    Mar 2007
    Posts
    129
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wrycu View Post
    Sorry for not reading a 15 page thread all the way through.

    Code:
    Const
       NumberOfUsers = 1;
       StartPlayer = 0;
       Loads = 5;
       VersionNumber = '2.03';
       SRL_ID   = '********';  // Stats ID.
       SRL_PASS = '*******'; // Stats Pass.
       SmartPrefix = 'world8';
    Code:
    Procedure DeclarePlayers;
    
    Begin
      NumberOfPlayers( NumberOfUsers );
      CurrentPlayer := StartPlayer;
      
      Players[0].Name :='******';
      Players[0].Pass :='*****';
      Players[0].Nick :='****';
      Players[0].Active := True;
      Players[0].Loc := 'Bank';
      Players[0].Booleans[0]  := True;       // Is The Pick Equipped?
    
      {Players[1].Name :='';
      Players[1].Pass :='';
      Players[1].Nick :='';
      Players[1].Active := False;
      Players[1].Loc := 'Bank';
      Players[1].Booleans[0]  := True;       // Is The Pick Equipped?
    
      Players[2].Name :='';
      Players[2].Pass :='';
      Players[2].Nick :='';
      Players[2].Active := True;
      Players[2].Loc := 'False';
      Players[2].Booleans[0]  := True;       // Is The Pick Equipped?}
    
      {Players[3].Name :='';
      Players[3].Pass :='';
      Players[3].Nick :='';
      Players[3].Active := True;
      Players[3].Loc := 'False';
      Players[3].Booleans[0]  := True;       // Is The Pick Equipped?}
    
      Writeln( IntToStr ( HowManyPlayers ) + ' Players' );
      SetPlayerNameTPAs;
    End;
    What exactly is wrong with it?
    you need to get rid of the players your not using buy deleting them or putting {} around them
    <insert a sig here>

  7. #307
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by x_² View Post
    you need to get rid of the players your not using buy deleting them or putting {} around them
    Thanks for the attempted help, but reread my posted player function. It does, in fact, comment the unused players out. I just didn't put the { on a new line, because the } wasn't on a new line.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  8. #308
    Join Date
    Jan 2008
    Posts
    50
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great script
    There are a lot of randoms it can't solve tho :[

  9. #309
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok....every single time i try to run this script i get [Runtime Error] : Exception: in line 46 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar i have read all these posts and all you say to the other members is set up your characters properly...now im a bit of a noob when it comes to anything to do with SRL so i dont really know what you mean, ive wrote my character name next to the Players[0] bit so i dont know

  10. #310
    Join Date
    Apr 2007
    Posts
    275
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by paddiekiller View Post
    ok....every single time i try to run this script i get [Runtime Error] : Exception: in line 46 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Math.scar i have read all these posts and all you say to the other members is set up your characters properly...now im a bit of a noob when it comes to anything to do with SRL so i dont really know what you mean, ive wrote my character name next to the Players[0] bit so i dont know
    Did you even try to search for your answer?

    I dont even think you looked at this thread before posting this question did you? I mean did you even look one page back?

    Quote Originally Posted by Wizzup? View Post
    No you didnt!
    -----
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  11. #311
    Join Date
    Sep 2006
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have to have my pickaxe wielded, and not in inventory?

  12. #312
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by mnagi85 View Post
    I have to have my pickaxe wielded, and not in inventory?
    look at last line of set up. and select false,
    Did someone say GDK?

  13. #313
    Join Date
    Sep 2006
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I got this error:

    [Runtime Error] : Out Of Range in line 46 in script C:\Users\Mohammed Nagi\Desktop\Scar Scripts\Essence Miner #20.3 Pub.scar

    And I have my player(s) set up correctly, to my understanding.

  14. #314
    Join Date
    Oct 2008
    Location
    Australia
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I know this may be annoying and i have tried over and over again, i have read all pages of info here and all on the other forum page and it doesnt seem to work heres what i have got

    Begin
    NumberOfPlayers( NumberOfUsers );
    CurrentPlayer := StartPlayer;

    Players[0].Name :='************';
    Players[0].Pass :='******';
    Players[0].Nick :='****';
    Players[0].Active := True;
    Players[0].Loc := 'Bank';
    Players[0].Booleans[0] := True; // Is The Pick Equipped?

    {Players[1].Name :='';
    Players[1].Pass :='';
    Players[1].Nick :='';
    Players[1].Active := True;
    Players[1].Loc := 'Bank';
    Players[1].Booleans[0] := True; // Is The Pick Equipped?}

    {Players[2].Name :='';
    Players[2].Pass :='';
    Players[2].Nick :='';
    Players[2].Active := True;
    Players[2].Loc := 'Bank';
    Players[2].Booleans[0] := True; // Is The Pick Equipped?}

    {Players[3].Name :='';
    Players[3].Pass :='';
    Players[3].Nick :='';
    Players[3].Active := True;
    Players[3].Loc := 'Bank';
    Players[3].Booleans[0] := True; // Is The Pick Equipped?}

    Writeln( IntToStr ( HowManyPlayers ) + 'Players' );
    SetPlayerNameTPAs;
    End;



    I have lookede at the things and they are the same

  15. #315
    Join Date
    Oct 2007
    Location
    The deep web
    Posts
    2,496
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    del all uneeded player set ups. quite pissing anoying.
    Did someone say GDK?

  16. #316
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jakeyboy29 View Post
    del all uneeded player set ups. quite pissing anoying.
    He DID delete them - commenting them out means the compiler doesn't read them. It's the same thing as deleting them, except he doesn't have to actually type it back in if he wants to 'undelete' them.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  17. #317
    Join Date
    Jul 2008
    Posts
    31
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry but for some reason I get a bunch of errors hhmm I'll see whats up.
    Currently working on:
    autominer for new players scarscape
    autominer for ne players runescape
    dont understand forms forms tut site cming soon will cover vb and scar.

  18. #318
    Join Date
    Sep 2008
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Guys why not create +3 more characters to mine for you...


    Picking a name... about 20 seconds,Tutorial island(script for that one srl-forums.com) takes maximum 10 minutes, "quest" takes about 10 minutes,get from wiz tower to varrock around 2 minutes (walking)... stop crying about that math.scar error you stupid douses, and if you wayy to lazy to make +3 characters which takes about 1 hour, then just type random letters in the script(declare players)

    Players[1].Name :='hushakix'; [H] <<<<random<<<<<<[/H]
    Players[1].Pass :='qazxs'; [H]<<<<random<<<<<<[/H]
    Players[1].Nick :='sha'; [H]<<<<random<<<<<<[/H]
    Players[1].Active := True;
    Players[1].Loc := 'Bank';
    Players[1].Booleans[0] := True; // Is The Pick Equipped?

    Players[2].Name :='ugyivgdood'; [H]<<<<random<<<<<<[/H]
    Players[2].Pass :='qazxs'; [H]<<<random<<<<<<[/H]
    Players[2].Nick :='dood'; [H]<<<<random<<<<<<[/H]
    Players[2].Active := True;
    Players[2].Loc := 'Bank';
    Players[2].Booleans[0] := True; // Is The Pick Equipped?

    Players[3].Name :='ep9ucg9ugh'; [H]<<<<random<<<<<<[/H]
    Players[3].Pass :='qazxs'; [H]<<<<random<<<<<<[/H]
    Players[3].Nick :='ucg'; [H]<<<<random<<<<<<[/H]
    Players[3].Active := True;
    Players[3].Loc := 'Bank';
    Players[3].Booleans[0] := True; // Is The Pick Equipped?
    Think out side the box you tarts and stop spamming nnooby errors!!e

  19. #319
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i rhyolite i View Post
    Guys why not create +3 more characters to mine for you...


    Picking a name... about 20 seconds,Tutorial island(script for that one srl-forums.com) takes maximum 10 minutes, "quest" takes about 10 minutes,get from wiz tower to varrock around 2 minutes (walking)... stop crying about that math.scar error you stupid douses, and if you wayy to lazy to make +3 characters which takes about 1 hour, then just type random letters in the script(declare players)



    Think out side the box you tarts and stop spamming nnooby errors!!e
    I have more than three, I just test scripts with one account.

    Sorry for spamming with nooby questions which no one has been able to answer yet.

    Edit: After switching the number of users to 0, running it, and switching it back to 1, the script runs correctly. No idea why...
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  20. #320
    Join Date
    Dec 2006
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Wizzup? Essence Miner, Version 2.03

    Worked for 1 Hours, 12 Minutes and 22 Seconds
    Mined 672 Essence

    ----------------------------

    0 : visb = T; Bank; B: 280 Essence; M : 50
    1 : visb = F; NoBank; B: 112 Essence; M : 50
    2 : visb = F; NoBank; B: 140 Essence; M : 50
    3 : visb = T; Bank; B: 140 Essence; M : 50

    Got owned by the cat on the island where you have to do anything in reverse

    edit: heres another one;

    SCAR Code:
    Worked for 1 Hours, 31 Minutes and 5 Seconds
    Mined 850 Essence
    Solved 1 abyssal random events.

    ----------------------------

    0 : visb = T; Mine; B: 280 Essence; M : 51
    1 : visb = T; Bank; B: 280 Essence; M : 50
    2 : visb = T; Bank; B: 262 Essence; M : 50
    3 : visb = F; NoBank; B: 28 Essence; M : 50

  21. #321
    Join Date
    Mar 2006
    Location
    Northern Kentucky
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Successfully compiled (1313 ms)
    SRL Compiled in 5297 msec
    1 Players
    [Runtime Error] : Exception: Access violation at address 6720138A in module 'Embedded SMART.dll'. Read of address 00000350 in line 48 in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/Smart.scar

    pebkac i know what did I do wrong?

  22. #322
    Join Date
    Mar 2007
    Posts
    129
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Moloch View Post
    Successfully compiled (1313 ms)
    SRL Compiled in 5297 msec
    1 Players
    [Runtime Error] : Exception: Access violation at address 6720138A in module 'Embedded SMART.dll'. Read of address 00000350 in line 48 in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/Smart.scar

    pebkac i know what did I do wrong?
    are you running it on vista?
    if so then load scar in administrator mode
    if not then im not sure
    <insert a sig here>

  23. #323
    Join Date
    Mar 2006
    Location
    Northern Kentucky
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by x_² View Post
    are you running it on vista?
    if so then load scar in administrator mode
    if not then im not sure
    No sir on Win Xp

  24. #324
    Join Date
    Nov 2006
    Posts
    235
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you have Reflection, you need to copy the new DLL from the reflection folder (C:\Program Files\SCAR 3.15\Includes\SRL\SRL\reflection\Place inside plugins folder\embedded_smart.dll) into the plugin folder (C:\Program Files\SCAR 3.15\Plugins)
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig
    http://www.stats.srl-forums.com/sigs/5612.png
    http://www.wizards.com/magic/images/...or_iswhite.jpg

  25. #325
    Join Date
    Mar 2007
    Posts
    20
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wizzup? Essence Miner, Version 2.03

    Worked for 45 Minutes and 13 Seconds
    Mined 364 Essence

    ----------------------------

    0 : atz = T; Mine; B: 364 Essence; M : 42
    1 : atz = T; Bank; B: 0 Essence; M : 0

    ----------------------------

Page 13 of 39 FirstFirst ... 3111213141523 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Essence Miner
    By mager guy in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 05-06-2008, 09:16 PM
  2. essence miner
    By blobmaster31 in forum OSR Help
    Replies: 1
    Last Post: 03-30-2008, 09:11 AM
  3. SRL Essence Miner
    By Illkillutill in forum OSR Help
    Replies: 2
    Last Post: 11-04-2007, 11:53 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
  •