Results 1 to 11 of 11

Thread: AutoAlcher

  1. #1
    Join Date
    Feb 2007
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default AutoAlcher

    Alright, I've mostly used my Java knowledge to make this first script. I had to browse a bit for the includes and such, but it wasn't too hard. It took me half an hour to write.

    I have some ideas how to make the script better, but I'd need to know the procedures and stuff, which I do not know, yet. If someone could give me some pointers on things that could've been better and such, I'd be very grateful.

    I've tried to make the script fail-proof, so it might be a bit slower than most scripts, but I don't think it'll fail.

    Also, if someone could help me out with the Randoms.. I have no idea how or where I should implement them.

    Just to be on the safe side, if you want to make the script function perfectly. Go to Soul Wars, where there are no Randoms. Beware of the Botspotters, though. Players and Mods like to hang out in the Soul Wars to catch bots.

    They use methods such as baiting(Dropping 20k on the ground, and see who goes sprinting towards it.), talking to random people and sometimes even trading/aiding.

    Anyways, without further ado. My first script.

    Revision 0.2: Added progress reports and removed some minor bugs. [08-05-2011]
    Last edited by Maxtriplex; 05-08-2011 at 08:21 PM.

  2. #2
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    I would, first, suggest you now change your RS password, take it out of the script, and re-upload it.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  3. #3
    Join Date
    Feb 2007
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Of course that'd happen to me. And of course it would happen, right after I read a topic about the same issue in someone else's script. >_>

    Thanks for the heads up, Flight. ^_^ Edited the post.

  4. #4
    Join Date
    Jan 2011
    Posts
    350
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    lol same happened to me

  5. #5
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Yeah it's no biggie, luckily we have a fairly safe community here composed of people who wouldn't set out to intentionally steal your password.

    I might suggest running it for a few hours yourself and posting the progress report for proof of it's stability.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  6. #6
    Join Date
    Feb 2007
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have no progress report implemented that, have been working on it today. I'll release it tomorrow or so.

    However, when I tested it, it worked for 2+ hours, with no problems. Antiban ran smoothly and so did the alching itself.

    If someone'd help me out with the Randoms, I'd be grateful.

    So if you want to test the script and are going to AFK, leave it at Soul Was.

    EDIT:

    #-[]-¤ AutoAlcher Progress Report ¤-[]-#
    By Maxtriplex

    Time running : 2 Hours, 20 Minutes and 43 Seconds

    [True]- P #0 / Nick: /Exp Gained: 108290/ Times Alched:1666


    I stopped it manually, because I wanted to test a few new things. I updated the first post with the new script, this one has a progress reports, and some small bugs I found taken out.
    Last edited by Maxtriplex; 05-08-2011 at 08:19 PM.
    ~A moment's diversion may amuse an audience, but it changes nothing.

  7. #7
    Join Date
    May 2011
    Posts
    55
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It doesn't seem to understand the entire bank part.

    It uses the spell right but doesn't get new stuff from the bank

  8. #8
    Join Date
    Jan 2007
    Posts
    834
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I believe you're suppose to note your item that you're alching. I didn't take a look at the script.

  9. #9
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Not bad at all for a First Script

    However, I think you should add some fail safes here:
    Simba Code:
    procedure HighAlch;
    begin
    count := 0;
    for i := 0 to Alchs do
      begin
        Debug;
        AntiBan;
        Gametab(tab_Magic);
        Wait(100+ Random(100));
        while GetCurrentTab = tab_Magic do
        begin

          Wait(150 + Random(250));
          nax := Random(20)+560;
          nay := Random(20)+360;

          Mouse(nax, nay, 1, 1, True);

          Wait(750 + Random(250));

        end;
        while GetCurrentTab = tab_Inv do
        begin
            Wait(200 + Random(200));
            Mouse(nax, nay, 1, 1, True);
            Wait (1000 + Random(250));
            Gametab(tab_Magic);

        end;
      end;
    end;

    You shouldn't also rely/use coordinate clicking, preferably a Findcolor/Bitmap/DTM procedure is best and will help you further your knowledge of Simba and the SRL include.

  10. #10
    Join Date
    Dec 2009
    Location
    R_GetPlayerLoc;
    Posts
    2,235
    Mentioned
    0 Post(s)
    Quoted
    14 Post(s)

    Default

    Double Post Smart
    "Logic never changes, just the syntax" - Kyle Undefined?

    Remember, The Edit Button Is There For A Reason!!!

  11. #11
    Join Date
    Jul 2008
    Location
    Canada
    Posts
    1,612
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Yago View Post
    Double Post Smart
    Woops, internet lag

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
  •