Results 1 to 20 of 20

Thread: Ore Pwner

  1. #1
    Join Date
    Sep 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Ore Pwner


    New Version 1.5 is out, please download!

    //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    What it is: Ore Pwner (powerminer)
    What it does: Mines ores and drops them.
    Antiban: yes (very good)
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    How to run the script:
    1. Fill in what you want where the blue numbers/ letters are :
    LoadsPerPlayer= 99;
    PicaxeEquip= False;
    OreColor= 1976384;
    TakeaBrake= True;
    BrakeTime= 5;

    2. Fill in the blue numbers/letters here: (read the green directions for help)
    HowManyPlayers := 1;
    CurrentPlayer := 0;

    3. Fill in the username, password, nickname, and active spots here:
    Players[0].Name := 'username';
    Players[0].Pass := 'password';
    Players[0].Nick := 'ser';
    Players[0].Active := True;


    You should now be ready to start the script!


    ////////////////
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    All versions now come with SMART installed.

    V.1: Please tell me how it goes and ways to improve it.

    V.1.1: Added a tun of things. Please continue testing/ helping me improve it.

    V.1.2: Fixed Failsafe timer also fixed a few bugs and added other functions.

    V.1.2.smart: Added SMART to version 1.2.

    V.1.3: Added progress reports (yes you can actually post these) and fixed SMART issues.

    V.1.4: Fixed progress reports to look better. Added breaks.

    V.1.5: Tidied up the script. Added the amount of brakes taken to progress reports

    Top 3 progress reports.(come on guys you can atleast post some.....)
    (by me)
    /////////////////////////////////////////////////////////////
    //Ore Pwner Powerminer Script Progress Report
    //Script has been running for 12 Hours, 39 Minutes and 22 Seconds
    //We have mined 2902 ores.
    //or 107 loads.
    //Took a brake 15 times.
    /////////////////////////////////////////////////////////////
    (by me)
    /////////////////////////////////////////////////////////////
    //Ore Pwner Powerminer Script Progress Report
    //Script has been running for 12 Hours, 28 Minutes and 2 Seconds
    //We have mined 2902 ores.
    //or 108 loads.
    //Took a brake 14 times.
    /////////////////////////////////////////////////////////////
    (by me)
    /////////////////////////////////////////////////////////////
    //Ore Pwner Powerminer Script Progress Report
    //Script has been running for 10 Hours, 19 Minutes and 49 Seconds
    //We have mined 2289 ores.
    //or 83 loads.
    //Took a brake 16 times.
    /////////////////////////////////////////////////////////////
    Last edited by da scripter; 04-27-2009 at 03:52 AM.

  2. #2
    Join Date
    May 2008
    Location
    Canada
    Posts
    665
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Well, the first thing's first... do tell your users the conditions needed to run the script =D.

    Green it out at the top of script for instructions on properly running the script.

  3. #3
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You don't need all those beginings and ends in your anti-ban.

    make it similar to this.
    SCAR Code:
    procedure Antiban;
    begin
      if not LoggedIn then Exit;
       case Random(50) of
       
         0:HoverSkill('Mining', False);
         
         1:HoverSkill('Smithing', false);

         2:begin
            GameTab(1 + Random(12));
            wait(800 + random(500));
            GameTab(4);
          end;
       
         3:BoredHuman;

         4:DoEmote(400 + Random(90));
      end;
    end;


    and make this your declare players
    SCAR Code:
    Procedure DeclarePlayers;
    begin

      HowManyPlayers := 1;//How many players are going to auto in total?
      NumberOfPlayers(HowManyPlayers);//No Touching.
      CurrentPlayer := 0;//Which player will auto first?


      Players[0].Name := '';
      Players[0].Pass := '';
      Players[0].Nick := '';
      Players[0].Active := True;

      //Players[1].Name := '';
      //Players[1].Pass := '';
      //Players[1].Nick := '';
      //Players[1].Active := True;
     
      //Players[2].Name := '';
      //Players[2].Pass := '';
      //Players[2].Nick := '';
      //Players[2].Active := True;

    end;

  4. #4
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    in case you don't know why you don't need the begins and ends..

    You only need a begin and an end in a case if it has more than one procedure/function

    hopefully that helps

    keep at it ;D

  5. #5
    Join Date
    Dec 2006
    Location
    SC
    Posts
    692
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Good job. Just work on your standards and you'll be pro in no time. I'll be on aim if you need any help .

  6. #6
    Join Date
    Mar 2009
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    looks simple but nice. Love the name

  7. #7
    Join Date
    Sep 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by fuzzycornflakes View Post
    looks simple but nice. Love the name
    Try to get ur 10 jr members posts much??? lol

  8. #8
    Join Date
    Sep 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    BumPPP, comeon guys I need people to test this script

  9. #9
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Instead of this
    SCAR Code:
    Loadz := Loadz + 1;

    Do This:
    SCAR Code:
    Inc(Loadz);

    Because it looks better and it is quicker to type, if you want to add more than 2 do this:
    SCAR Code:
    IncEx(Loadz, 28);

    I fixed your standards.

  10. #10
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    looking good, good job.

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  11. #11
    Join Date
    May 2009
    Location
    Holland-Friesland-Leeuwarden
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    /////////////////////////////////////////////////////////////
    //Ore Pwner Powerminer Script Progress Report
    //Script has been running for 34 Minutes and 37 Seconds
    //We have mined 122 ores.
    //or 3 loads.
    //Took a brake 1 times.
    /////////////////////////////////////////////////////////////

    From 6-15 mining thanks!.

  12. #12
    Join Date
    Sep 2007
    Posts
    44
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  13. #13
    Join Date
    Nov 2008
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This script store the iron mined in the bank? Or just drop it?

  14. #14
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Quote Originally Posted by swindler01 View Post
    This script store the iron mined in the bank? Or just drop it?
    Just drop it. That's what "powerminer" means. Also, you won't have access to ANY scripts with banking until you get to Jr. Member or higher.

  15. #15
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Good job And just do those changes what are on above posts And remember to ask help if needed


    ~Home

  16. #16
    Join Date
    Apr 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have a few problems it might be just me but when i attempt to mine coal instead of changing to a different rock after it mined the one i was on it continues to try and mine the same time i attempt to move my player and put him in a different spot but once he picks a new ore he wont stop trying on that ore.

  17. #17
    Join Date
    Apr 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah i restarted my pc its still doing it did you run this urself? when you remake message me and i wanna try it myself so far its the simplest i found and my favorite to use but idk see what you can do.

  18. #18
    Join Date
    Jan 2008
    Location
    Holland
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very nice script! it is running right now. I will post proggie when it's finished!

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

    Default

    good working powerminer!!!! its a miracle =]

    oh and here is my first proggys:

    /////////////////////////////////////////////////////////////
    //Ore Pwner Powerminer Script Progress Report
    //Script has been running for 37 Minutes and 9 Seconds
    //We have mined 197 ores.
    //or 7 loads.
    //Took a brake 1 times.
    /////////////////////////////////////////////////////////////
    wow nice job!

  20. #20
    Join Date
    Sep 2009
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Failed when compiling
    Line 5: [Error] (7:11): Unknown identifier 'SmartIsKeyDown' in script C:\Program Files\SCAR 3.21\includes\SRL\SRL\misc\SMART.scar
    What does this mean? how do i fix it?

Thread Information

Users Browsing this Thread

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

Posting Permissions

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