Results 1 to 24 of 24

Thread: Simple Alcher

  1. #1
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Simple Alcher

    Simple Alcher


    Works with latest update!

    Features:

    - Anti-Ban
    - Anti-Randoms
    - Flawless!
    - Option to take breaks
    - Fail safes

    Setup:

    1: Setup your inventory like so:

    You have can have the runes or staff anywhere. (Make sure the item you want to alch is Noted)

    2: Fill Out the nessessery bits of the script.

    3: Hit play and enjoy.

    Version History:
    Code:
    v1.1 :
    Added failsafes, It shouldnt fail any alchs now, human like timings, AntiRandoms now work correctly, Flawless? 
    ---------------------------------------------------
    v1 : 
    First version, basic stuff, wouldnt run very well.
    Proggys:

    Me: Ran a short test run. Almost 1k alchs per hour

    Code:
    -------------------------------------
    /         Simple Alcher             \
    -------------------------------------
    - Players Name: ***
    - Time Running: 59 Minutes and 45 Seconds
    - Alchs Done: 852
    -------------------------------------
    y0m0mma0123 : Stopped due to Random event.
    Code:
    -------------------------------------
    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: **********
    - Time Running: 2 Hours, 2 Minutes and 47 Seconds
    - Alchs Done: 1906
    -------------------------------------


    Also please post proggies if you use the script

    Thanks!
    Last edited by Sir R. M8gic1an; 09-25-2009 at 12:43 AM.

  2. #2
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    1) No need for
    SCAR Code:
    Procedure MagicTab;
    begin
    GameTab(Tab_Magic);
    end;

    2) Perhaps add a bit more to the anti-ban?

    3)
    SCAR Code:
    procedure AntiRandoms;
    begin
    if not LoggedIn then Exit;
     FindNormalRandoms;
    end;
    Could be
    SCAR Code:
    procedure AntiRandoms;
    begin
      if not LoggedIn then Exit;
       FindNormalRandoms;
      if FindFight then
        RunAway('N', True, 0, 5000);
      if LevelUp then
        WriteLn('Woo! Leveled up!');
    end;
    It just makes it that much better.

    4)
    SCAR Code:
    If not FindDTM(HighAlch, x, y, MIX1, MIY1, MIX2, MIY2) Then
    begin
    MagicTab;
    end;
    If FindDTM(HighAlch, x, y, MIX1, MIY1, MIX2, MIY2) Then
    Could be
    SCAR Code:
    GameTab(Tab_magic);
    if FindDTM(HighAlch, X, Y, MIX1, MIY1, MIX2, MIY2) then
    It looks neater, and better in general.

    5) Instead of
    SCAR Code:
    MouseBox(697, 329, 711, 343, 1);
    You could use InvBox.

    6) You have a report, but you don't call it here
    SCAR Code:
    begin
    Writeln('Could Not Find The High Alch');
    MyLogout;
    TerminateScript;
    FreeDTM(HighAlch);
    end;

    7) Your standards killed my eyes.

    Still, the script should work as it is even though I pointed out quite a lot.

    Good job,
    Richard
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  3. #3
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I call the Report in the main loop after every alch also the antirandoms make the script look really bottish, because everytime it calls it will click the inventory and a human just doesnt do that. Also i was thinking of adding more antiban but then i thought does a human really do much mouse moving whilst alching?

    Also i tried changing it too

    SCAR Code:
    GameTab(Tab_magic);
    if FindDTM(HighAlch, X, Y, MIX1, MIY1, MIX2, MIY2) then

    earlyer but it gave me some weird error so i decided to leave as it was

    Thanks for pointing out about the

    SCAR Code:
    Procedure MagicTab;
    begin
    GameTab(Tab_Magic);
    end;

    i was thinking about changing it earlyer but my mind went blank

    Thanks for the comments!
    Last edited by pl0xmypl0x; 09-15-2009 at 03:23 AM.

  4. #4
    Join Date
    Nov 2007
    Location
    I live in Slovenia! :)
    Posts
    837
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Call anti randoms when your in the inventory tab . Gona take a closer look as soon as I get on the computer and you should really fix your standards, it helps a lot.

    Good job!
    ~T2

  5. #5
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeh im gona have to take a look at fixing that thanks for the comment!

  6. #6
    Join Date
    Nov 2007
    Posts
    326
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'll get a proggy soon for ya _

    I did this on my main level 113, and it seems a tiny bit suspicious. Most people barely even move the mouse when you alch, and yours moves pretty much every time. Maybe make it a tiny bit more randomized, but otherwise, it WORKS! and that is much better than the alchers we have atm.

    It logs out saying it can't find high alch after about 30 for some reason. The first time I ran it it did about 200 without stopping.
    Last edited by IPwnz; 09-15-2009 at 09:22 AM.

  7. #7
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok i have fixed all of them problems in the latest release Shouldn't fail on anything now, unless it encounters a random event it cant solve!
    Last edited by pl0xmypl0x; 09-17-2009 at 05:17 AM.

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

    Default

    hey srry i wasnt paying attection where i put that my bad

    Just tryed it again and i was getting this

    Failed To Find DTM Trying To Find Color!
    Successfully executed
    Last edited by y0m0mma0123; 09-17-2009 at 06:16 AM.

  9. #9
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thats weird? try re downloading the script.. I dont get this error, for me it finds the color fine. Do you have all your graphic settings set to the lowest settings?

  10. #10
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ya i got it fixed here is a proggy =)

    -------------------------------------
    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: ***********
    - Time Running: 1 Hours, 11 Minutes and 29 Seconds
    - Alchs Done: 1149
    -------------------------------------

    and another

    -------------------------------------
    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: **********
    - Time Running: 2 Hours, 2 Minutes and 47 Seconds
    - Alchs Done: 1906
    -------------------------------------

    then randomed but great scrit
    Last edited by y0m0mma0123; 09-17-2009 at 08:33 PM.

  11. #11
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for posting the proggys! glad you liked my script

  12. #12
    Join Date
    Mar 2007
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: XXXXXX
    - Time Running: 3 Hours, 20 Minutes and 3 Seconds
    - Alchs Done: 3300
    -------------------------------------


    thanks man very nice script, only thing is i couldnt get rest to work.

    it would log in, alch once and regardless of your rest number log out and not log back in after the time you set was up. so good other than that

  13. #13
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Glad you like it! and im going to fix the breaking system when i next get chance

  14. #14
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    here is another proggy

    -------------------------------------
    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: *********
    - Time Running: 4 Hours, 2 Minutes and 3 Seconds
    - Alchs Done: 3791
    -------------------------------------

  15. #15
    Join Date
    Jul 2007
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey, just wondering do u have the mage tabs set as normal or do u have to have them a custom way?
    and y0m0mma0123
    how did u stop

    Failed To Find DTM Trying To Find Color!
    Successfully executed

    thanks gore
    Last edited by gore; 10-04-2009 at 01:20 PM.

  16. #16
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    u have to have every little tab at the bottom clicked on to where high alch is in the middle on farthest left row of spells so the normal way atleast i think it is

    and for the dtms first i got the newer version of the script and it still says failed to find but then finds it with color

    but i think your problem is that the spells are not in the right place so it cant find them so set up the tab right and then c

  17. #17
    Join Date
    Jul 2007
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by y0m0mma0123 View Post
    u have to have every little tab at the bottom clicked on to where high alch is in the middle on farthest left row of spells so the normal way atleast i think it is

    and for the dtms first i got the newer version of the script and it still says failed to find but then finds it with color

    but i think your problem is that the spells are not in the right place so it cant find them so set up the tab right and then c
    i tried wat u said and there is nothing to get the high alch to the left side in the middle? and is the high alch right next to the low alch?

    cheers for the help

  18. #18
    Join Date
    Jul 2007
    Location
    Pluto... Maybe?
    Posts
    198
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I havnt been active lately but i will test/update this tommorow.

  19. #19
    Join Date
    Jul 2007
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by pl0xmypl0x View Post
    I havnt been active lately but i will test/update this tommorow.
    ok thats sweet could u add my msn?
    bmx_racer17@hotmail.com

  20. #20
    Join Date
    Dec 2007
    Location
    Canada
    Posts
    187
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok good script dude, i have to alch a few things so i will use and get a proggy for you, standards need to be used but anyways, and i just tried to run but it wrote in debug that it failed to find DTM trying to find color!
    then logged out so i dont really know why thats happening i will try and fix for myself
    I'm baaaack

  21. #21
    Join Date
    Jul 2009
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    -------------------------------------
    / Simple Alcher 1.1 \
    -------------------------------------
    - Players Name: yua2010
    - Time Running: 37 Minutes and 3 Seconds
    - Alchs Done: 500
    -------------------------------------


    awesome script! this is one of my lower proggies, but i keep forgetting to post but here it is anyways. one possible upgrade: it only clicks on cooking for me so maybe switch it up?
    Thanks!

  22. #22
    Join Date
    Oct 2007
    Posts
    678
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    umm its a good start, but alching has que timer so at max efficiency u should be able to get in 1000-1100 alchs i believe it was, but your script averages out at 800-900 / hr.

    consider making it more efficient..

    also, see if you can include an "alch all noted" option. so it will find notes and place them in the correct inv slot.

    good start though. simple and effective.

  23. #23
    Join Date
    Nov 2007
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    woot ill use it see how it work thx
    sweet lost my account.


    edit :nope not ban
    Last edited by alucard123; 09-16-2012 at 03:59 PM.

  24. #24
    Join Date
    May 2008
    Posts
    308
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Quote Originally Posted by alucard123 View Post
    woot ill use it see how it work thx
    sweet lost my account.
    b4nz0r3d??

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
  •