Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 53

Thread: Updated Guide to Making a PowerMiner

  1. #26
    Join Date
    Apr 2008
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good tut. Though it is the first I've read, explains a lot of the strange coding in SCAR. Thanks +Repped.

  2. #27
    Join Date
    Jul 2007
    Location
    So Cal
    Posts
    410
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    torrent i'm trying my hand at scripting again and i keep getting add comma etc.. i do what it says but got stuck on one that kept saying and comma then i did and syntax error please help

  3. #28
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Here is my dropping procedure, I modelled it off of one of Hy's. PLEASE CREDIT IF USED!

    SCAR Code:
    {*******************************************************************************
    procedure DropInv(f,l: integer);
    By: Nava2-Modelled after DropeItem by Hy71194.
    Description: Drops items in slots f-l.
    *******************************************************************************}


    procedure DropInv(f,l: integer);
    var i: integer;
        TMSpeed: integer;
    begin
      if (not (LoggedIn)) then
      begin
        writeln('ended at dropInv');
        exit;
      end;
      TMSpeed:= MouseSpeed;
      MouseSpeed:= 20+random(7);
      GameTab(4);
      if ExistsItem(i) then
        for i:= f to l do
        DropItem(i);
        Writeln('Emptied Out Iron!')
        MouseSpeed:=TMSpeed;
    end;

    Nava2
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  4. #29
    Join Date
    May 2008
    Location
    California
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for the guide, works great! =)

  5. #30
    Join Date
    May 2008
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 61: [Error] (12704:20): colon (':') expected in script ????

  6. #31
    Join Date
    May 2008
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok nvm about that semiclolon post i fixed but for some reason my logging in messes up, i did the declare players but it just goes but before it even hits the existing user button it just sits in one spot above it and just keeps click randomely????? i did everything properly????

  7. #32
    Join Date
    May 2008
    Posts
    93
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very good tut, good for begginers like me, it mined a invy of iron for me

  8. #33
    Join Date
    May 2008
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think I'm going to try this tutorial out

  9. #34
    Join Date
    Aug 2007
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I keep getting

    "Unknown identifier 'Tries' in script"

    Yet I have the latest version of SRL and scar..

    Can anyone help me on this?

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

    Default

    Great tut! Now I just need to figure out how to make my powerminer drop after it mines 2 iron. That way I drop when the other rock is refreshing and don't waste anytime dropping a full load. Continuous mining.

  11. #36
    Join Date
    Jun 2008
    Location
    Somewhere between here and there
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Question? when you setup the SRL why dont u make it repeat the antirandoms also?

  12. #37
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is great. Just the kinda thing i was looking for!

  13. #38
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TheMaestro View Post
    Great tut! Now I just need to figure out how to make my powerminer drop after it mines 2 iron. That way I drop when the other rock is refreshing and don't waste anytime dropping a full load. Continuous mining.
    it says in the thread the dropping part. like (2,28) just change it to (2,4) should work.

    EDIT: Sorry for double post!!!

  14. #39
    Join Date
    Jul 2008
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for this guide. It's really helpful.

    On my way to making my first script...

  15. #40
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This really is an excellent guide. It would be interesting if u made something a little more advance... but this is very good for begginners.

  16. #41
    Join Date
    Aug 2007
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice tutorial. Didn't work for me though

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

    Default

    Quote Originally Posted by I.P Smasher View Post
    Line 61: [Error] (12704:20): colon (':') expected in script ????
    How do you fix that error??

  18. #43
    Join Date
    Oct 2006
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by nobody u kno View Post
    How do you fix that error??
    Well considering it says it's expecting a colon, maybe you should put a colon on that line.

  19. #44
    Join Date
    Jul 2008
    Location
    Arizona
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    THank you vary much this will help me understand mining so i can do essence miner or a granite miner tyvm .

  20. #45
    Join Date
    Jul 2008
    Location
    Arizona
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by nobody u kno View Post
    How do you fix that error??
    yeah just add a ; were its need for me it never goes to the exaxt spot just the right line or line above or under it wired system scar is but vary usefull and I dont think anyone should be told this when asking a Q becouse it should say serach it nub that way nonone needs to use google lol

  21. #46
    Join Date
    Jun 2008
    Location
    Somewhere
    Posts
    117
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Nice guide- very helpful

  22. #47
    Join Date
    Jun 2008
    Location
    Australia
    Posts
    111
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thank you for this very good tut im only posting cuz he posted...lol its very good and i liked it =]

  23. #48
    Join Date
    Jul 2008
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I get this error when compiling:
    Line 45: [Error] (16405:4): Unknown identifier 'AlmostLogout' in script

  24. #49
    Join Date
    Dec 2006
    Location
    Sydney, New South Wales, Australia
    Posts
    4,603
    Mentioned
    15 Post(s)
    Quoted
    42 Post(s)

    Default

    Quote Originally Posted by Minkino View Post
    I get this error when compiling:
    Line 45: [Error] (16405:4): Unknown identifier 'AlmostLogout' in script
    AlmostLogout was an Anti-Ban procedure which was removed from SRL
    You may contact me with any concerns you have.
    Are you a victim of harassment? Please notify me or any other staff member.

    | SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |

  25. #50
    Join Date
    Oct 2009
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    {.include SRL/SRL.scar} do i have to download something it says it doesnt exist

Page 2 of 3 FirstFirst 123 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Riffe's Making Money Guide!
    By Riffe in forum Cash Guides
    Replies: 13
    Last Post: 12-27-2008, 11:55 PM
  2. Random Money Making guide ish
    By IsrafelDarklight in forum Cash Guides
    Replies: 12
    Last Post: 05-22-2008, 04:40 PM
  3. Updated AntiBan & AntiRandoms Guide!
    By Torrent of Flame in forum Outdated Tutorials
    Replies: 22
    Last Post: 03-29-2008, 11:08 AM
  4. What's the best Money Making guide
    By rkroxpunk in forum RuneScape News and General
    Replies: 1
    Last Post: 04-22-2007, 03:34 AM

Posting Permissions

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