View Poll Results: How did this do

Voters
10. This poll is closed
  • Poor

    1 10.00%
  • Alright - needs improvement

    1 10.00%
  • Good

    2 20.00%
  • 0m9 7h15 15 pwn493

    6 60.00%
Results 1 to 20 of 20

Thread: [SRL][rs2]PwrMiner[SRL][RS2]

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

    Default [SRL][rs2]PwrMiner[SRL][RS2]

    PwrMiner by ->{Nauman}<-



    Version 0.1 BETA
    Released
    28/10/07

    Intoduction
    My PwrMiner will mine ores and drop them.This is only good for leveling up as it will only mine ores up to silver. There are no known bugs so far so i urge you all to please test it and post your comments.

    This Version Includes:
    1. Anti Bannage
    2. My very own AutoResponder
    3. This version is BETA
    4. Has An Axe finder and Gas Avoider.
    5. All Anti Randoms.



    For History's Sake:

    SCAR Code:
    {         ------------------------------------------------------------------
             |       /-------------\                  /---------               |
             |      /               \                /          \              |
             |     /                \               /            \             |
             |     |        |       |              |       |      |            |
             |     |        |       |              |       |      |            |
             |     |        |       |              |       |      |            |
             |     |________|       |              |______ |      |            |
             |              /       /                   /       /              |
             |             /       /                   /       /               |
             |            /       /                   /       /    SCRIPT      |
             |           /       /    UPER           /       /_____            |
             |          /       /                  |/      |/      |           |
             |         /       /                   |       |       |           |
             |        /       /                    |       |       |           |
             |       /       /                     |       |       |           |
             |      /       /________              \                /          |
             |     |       |        |               \              /           |
             |     |       |        |                \------------/            |
             |     |       |        |                                          |
             |     |       |        |   Version Info:                          |
             |      \               /    Version 0.0001 Test <- Just a Test Ver|
             |      \             /       Version 0.001<-- Current Version     |
             |        \           /   Updates!                                 |
             |         \---------/      Version 0.1<-- Should Be Banking Soon! |
             ------------------------------------------------------------------
    }

    Post your proggies

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

    Default

    you passwords are in it? or are they fake? anyway I will look over the script and EDIT this post

    [22:20] <[-jesus-]> freddy, go uninstall yourself

  3. #3
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i tried to change for you but i think there fake?

  4. #4
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Hi, let me give you some feedback about your script.

    Firstly, your player's their paswords are still in there.. I hope you could save them

    Now let's go further

    1.
    SCAR Code:
    procedure Check;
    Begin
      If FindBitmap(BrokenPickAxe,x,y)then
       begin
        mouse(x,y,2,3,false)
        ChooseOption('Drop')
        Writeln('Gas Got us Terminating Script!')
        LogOut;
        NextPlayer(true);
      end;
    end;
    I've found a mistake in here:

    If your pickaxe is broken, you tell the script to logout and login the next player, this is correct, but. the line after it isn't.
    You tell the script that the current player is still active, which means that we can still use that player in further script run, which is wrong.

    You'll have to use
    SCAR Code:
    NextPlayer(false);
    here, to tell the script that we wont use the player in further script run anymore, because his pickaxe is broken


    2.
    You have a variable that you aren't using in the script, not properly, you don't give an action..
    I'm talking about the variable "AxeLost", which is a boolean.
    You just give them results (true/false) but it's useless in your script because you don't use those variables to continue an action

    3.
    SCAR Code:
    procedure GetAxeHead;
    Why do you click the axe? You want to wield it? Then you'll have to be sure
    that you have opened the inventory tab, "GameTab(4);".
    Do you just want to check? Then search for it in the "wield" tab and in the "inventory" tab, "GameTab(4)" and "GameTab(5);".

    Because, let us say that gametab(5); is opened, it will unwield the axe?

    Whatever, it's just a lil comment

    4. Now, something that you really have to change.
    We are going to look to 2 procedures,
    SCAR Code:
    procedure WaitWhileMining;
    and
    SCAR Code:
    procedure Mining;

    Let's look to the first one.
    Code:
        if GasFound(fx, fy) then
    you have that par tin there, it will move the mouse to the fx, fy coordinates and then checks if there is a gas.
    If you look only to that code, there's nothing wrong, but look..

    SCAR Code:
    procedure Mining;

    You use the
    Code:
    FindObjOre
    function, great, let's look to the parameter's.

    PHP Code:
    function FindObjOre(var cxcyIntegerTextstringcolortolerance,
      
    MinCountInteger): Boolean
    What will it do?
    It will look for a certain color, with tolerance with a certain text and don't forget the counting (MinCount).

    This is important: It will find that obj, take the coords and store the coords in the cx, cy variables!

    Let's look how you've used them:

    SCAR Code:
    case what_to_mine of
        'Clay': begin
            repeat
              if FindObjOre(x, y, 'Mine', 6989253, 5, 2) then
                mmouse(x, y, 2, 2)
                  if IsUpTextMulti('min', 'ne', 'rocks') then
                  wait(100 + Random(300))
                    mouse(x, y, 0, 2, true)
                    WaitWhileMining;
              OresMined := OresMined + 1;
            until (invcount = 28)
    You search for the rock and when it's found you store the coords in x,y
    Now,
    Code:
    procedure WaitWhileMining;
    , will check for gas at fx, fy, which will be the following coords: 0, 0
    Alert! Alert! here is the BIG mistake that a lot of people make!
    You'll have to search for the gas were you stored the variables were you found the rock, isn't it?
    So you'll need to change
    SCAR Code:
    if GasFound(fx, fy) then
    to
    SCAR Code:
    if GasFound(x, y) then


    Btw, you don't need that text chacking in your mining procedure, "FindObjOre" ,already does

    5.
    SCAR Code:
    procedure DropOres;
    I'll edit that one it just drops from inv slot 4 to 28

    6.
    I'll make this self-explonatary
    Look to the timemark you've use in your script, after 40 secs you'll terminate script..


    Now, don't think that I was flaming you, I wasn't!, other than other people over here, I do loko to scripts and give my feedback how to improve/fix stuff. There are a lot scripts that are less as good as yource, but they don't know, because there are not always people that tell them what is wrong.
    So don't think you're bad, you're on a good way

    Keep it up,

    -Tsn.

    EDIT: I went to this thread when nobody posted something, I was the first. I wrote that much that I'm 3rd in posting
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  5. #5
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    nah its fake . thanks Tsn that was a great help.

    ->{Nauman}<-

  6. #6
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    w8 a sec, you were very bored? very very bored?

    but i must say your right gj both of you

  7. #7
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by naumanakhlaq View Post
    nah its fake . thanks Tsn that was a great help.

    ->{Nauman}<-
    I hope you've enjoyed my feedback?
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  8. #8
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    yea thats the most feedback some ones given me ill be sure to check it out. It's helped me alot . I actually understood it. So yea thanks

    ->{Nauman}<-

  9. #9
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by naumanakhlaq View Post
    yea thats the most feedback some ones given me ill be sure to check it out. It's helped me alot . I actually understood it. So yea thanks

    ->{Nauman}<-
    Np, we all are here to help people out
    Thanks btw

    -Tsn.
    [QUOTE=Santa_Clause;277761]I love you too TSN :p[/QUOTE]
    [CENTER][URL="http://www.stats.srl-forums.com/sigs"][IMG]http://www.stats.srl-forums.com/sigs/1324.png[/IMG][/URL][/CENTER]

  10. #10
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Keep on scripting, you seem to like it!


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  11. #11
    Join Date
    May 2007
    Location
    Ontario
    Posts
    361
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I thought we were only supposed to post scripts in their sub forums...Am I wrong?

  12. #12
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Nah it doesn't relly matter . Anyway thanks guyz and i dont see any proggies comming this way?

    ->{Nauman}<-

  13. #13
    Join Date
    May 2006
    Posts
    250
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    try as i might, i couldn't find any reason for it to detect the colors of the box around the game as gas, so you may want to look at that, otherwise, looks good, didnt get to test because of the error.

  14. #14
    Join Date
    Sep 2007
    Location
    England
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice work bro...

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

    Default

    didn't work with me. are there no more working mining scripts?

  16. #16
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Yea some more. This is alright I think i should really update it though...


    ->{Nauman}<-

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

    Default error =/

    Line 49: [Error] (13171:16): Duplicate identifier 'PickAxeHandle' in script C:\Documents and Settings\Tim\Local Settings\Temporary Internet Files\Content.IE5\EQBHA5SL\PwrMiner%200[1].1%20BETA%20no%20banking.scar

  18. #18
    Join Date
    Sep 2006
    Posts
    199
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is exactly what I need thank you downloading now ill give a proggie later there are no good other powerminers.

    Line 49: [Error] (13103:16): Duplicate identifier 'PickAxeHandle' in script C:\Users\****\Desktop\PwrMiner 0.1 BETA no banking.scar

    Any clues as to whats wrong?

  19. #19
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Gazrat View Post
    Line 49: [Error] (13171:16): Duplicate identifier 'PickAxeHandle' in script C:\Documents and Settings\Tim\Local Settings\Temporary Internet Files\Content.IE5\EQBHA5SL\PwrMiner%200[1].1%20BETA%20no%20banking.scar
    11-16-2007 07:48 AM
    Close pl0x

  20. #20
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Heavily outdated..

    Nauman if you want it re-opened let me know.

    Closed.
    Administrator's Warning:


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
  •