Results 1 to 18 of 18

Thread: need help with an autotyper script =)

  1. #1
    Join Date
    Jun 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default need help with an autotyper script =)

    hey hey hey everyone
    i would be glad if some1 makes a script which can let me mutil adversting
    like 6+ accounts in same time
    if anyone wondering the resson
    i need it for my flowering friends chat
    cos needd more adverst for it
    cheers,
    i will be really glad if any1 help me
    also theres big prob which i would be also glad if some 1 tell me :P
    i used another bot which isnt even made for games lol
    but the big prob which might be also in simba
    mutil in same world
    becos even if u click fast to make all the accounts log in same world
    only like 4 will log in
    but from the other side i saw ppl with 12 accounts in same world
    please help me if you dont mind.

  2. #2
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I can definetly write you an autotyper, but getting it to run with 6 accounts is the tough part. My knowledge in multiplayer is few limited. If you are advertising a clan, I dont see why 1 or 2 isnt enough.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  3. #3
    Join Date
    May 2012
    Location
    Texas
    Posts
    365
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You will just need to open 6 (or however many you want) Simba's using the same script.
    Mostly Inactive, School

  4. #4
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    program QazsAutoTyper;
    {$Define Smart}
    {$i srl/srl.simba}


    Const
    Message0=('red: Join [C Press] Trusted Ranks!!!');
    message1=('green: Join [C Press] Trusted Ranks!!!');
    message2=('red: Join [C Press] Trusted Ranks!!!');
    message3=('cyan: [C Press] For Trusted Ranks!!!');
    message4=('glow1: [C Press] Trusted Gambelers!!!');
    message5=('purple: [C Press] Trusted Gambelers!!!');
    message6=('flash3: Join [C Press] For a Good Ol Time!!!');
    message7=('flash1: Join [C Press] Trusted Ranks!!!');
    message8=('flash2: Join [C Press] Trusted Ranks!!!');
    message9=('glow2: Join [C Press] Trusted Ranks!!!');

    procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;                     //SETUP!!!!!
      NumberOfPlayers(HowManyPlayers);         //FILL IN EVERYTHING MARKED WITH FRACTIONS
      CurrentPlayer := 0;

      Players[0].Name := 'user';  //Username Here!   1/4
      Players[0].Pass := 'pass';  //Password Here!   2/4
      Players[0].Nick := '';  //3 Lowercase Letters From Your Characters Name Here! 3/4
      Players[0].Active := True;
      Players[0].Pin := '';   //Bank Pin here! (Or leave Blank if You ain't got'un) 4/4
      Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
    End;




    Begin
    SetupSRL
      Declareplayers
      LoginPlayertoLob();
        SelectWorld(9);// Put your own world into this
        LoginPlayer;
      Activateclient

    wait(randomrange(5000, 7000 ));
    Repeat
    Wait(3000+Random(200));    //increase number to slow down. decrease to speed up
    case random(11) of
    0: begin TypeSend (message0); end;
    1: begin typesend (message1); end;
    2: begin typesend (message2); end;
    3: begin typesend (message3); end;
    4: begin typesend (message4); end;
    5: begin typesend (message5); end;
    6: begin typesend (message6); end;
    7: begin typesend (message7); end;
    8: begin typesend (message8); end;
    9: begin typesend (message0); end;
    10:begin wait(randomrange(20,30)); end;


    end;
    findnormalrandoms;

    Until(False);
    end.
    This is my edited version of Qazs autotyper. If you are using the ghetto fix, I assume the login will work, otherwise, you will have to make a custom login and world select funtion. At the moment, im working on about 3 different scripts, so I cant really do it atm.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  5. #5
    Join Date
    Jun 2012
    Posts
    56
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    not sure y but my scripts never log me in anymore any idea y? it happened when all the graphics started messing up like the items and stuff then the menu above the client is now on there that update messed up my bot

  6. #6
    Join Date
    Jun 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks for help guys also footy thanks really much for your help =)
    hope some1 help with mutli so i put like 6-10
    Last edited by sure; 07-23-2012 at 12:29 PM.

  7. #7
    Join Date
    Feb 2012
    Location
    SRL Jail
    Posts
    1,319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by sure View Post
    thanks for help guys also footy thanks really much for your help =)
    hope some1 help with mutli so i put like 6-10
    multiplayer is made for 1 account to bot, then if activity is false (logged out) it logs into the next one. Multiplayer isn't for having a million accounts running at the same time. You need to have 6 simbas for 6 bots. GL motherboard, GL

  8. #8
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Quote Originally Posted by Joe View Post
    multiplayer is made for 1 account to bot, then if activity is false (logged out) it logs into the next one. Multiplayer isn't for having a million accounts running at the same time. You need to have 6 simbas for 6 bots. GL motherboard, GL
    Simba 0.99 and SMART 7.2 allows 1 simba to run any number of SMARTs. However, it is not simba that consumes significant memory but the java process (RS client). A simple autotyper will still take up to as much as 200MB of ram, though its still very possible to run over 10+ auto typing scripts with an average com. But really, there are better/healthier money making methods than doing this.

  9. #9
    Join Date
    Feb 2012
    Location
    SRL Jail
    Posts
    1,319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    Simba 0.99 and SMART 7.2 allows 1 simba to run any number of SMARTs. However, it is not simba that consumes significant memory but the java process (RS client). A simple autotyper will still take up to as much as 200MB of ram, though its still very possible to run over 10+ auto typing scripts with an average com. But really, there are better/healthier money making methods than doing this.
    Ummmm. Go to W1 and run an autotyper. You can run maybe 2 because of how many OTHER autotypers there are that lag the crap out of your system. You have to take environment into the equation. You can barely walk around without laglogging.
    But you can advertise by yourself in the wilderness and run 10 just fine... but whats the point in advertising then?

  10. #10
    Join Date
    Jun 2012
    Posts
    56
    Mentioned
    1 Post(s)
    Quoted
    20 Post(s)

    Default

    Quote Originally Posted by sharkyscape View Post
    not sure y but my scripts never log me in anymore any idea y? it happened when all the graphics started messing up like the items and stuff then the menu above the client is now on there that update messed up my bot
    bump please reply

  11. #11
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ^ navbar update broke SRL login function. Heres my custom login procedure if you want it.
    Simba Code:
    Procedure Login;          //SETUP FINISHED
    begin
      Writeln('Waiting for client to load');
      wait(randomrange(15000, 25000));
      Writeln('Client loaded, lets log in');
      Mouse(378, 300, 3, 3, 1);
      wait(randomrange(100, 200));
      Mouse(362, 212, 3, 3, 1);
      Typesend(Username);
      wait(randomrange(200, 400));
      Typesend(password);
      wait(randomrange(3000, 4000));
      Mouse(381, 513, 10, 3, 1);
      wait(randomrange(8000, 12000));
    end;
    all you have to do is call that in your main loop, and add username and password to the constants.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  12. #12
    Join Date
    Jun 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh
    but i dont lag i just bought new lap short time ago
    i am able to log 15 accounts in runescape
    really.
    but the big prob is getting them in same world :S
    thats what i mean =)

  13. #13
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    you will need 6 SIMBAS to be open and run the exact same script, best part is that SMART will make this possible .

    Use search button, there are autotypers out there that been working for ages .

  14. #14
    Join Date
    Jun 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks ^^^^ =)

  15. #15
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    If you want to log in 15 acct to the same world without the use of proxies etc it will be extremely difficult. You can time the script to make it to log in at the same time but you will occasionally receive a 'You are already logged in' (when you are clearly not) error. This means that u need the scripts to communicate among itself (tell the others to restart if one of them fail to log in/dced), which would only be possible (cant think of any other methods) by working with webs/text files (going be quite complicated)

  16. #16
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I believe Smart runs on a different IP every client, so you can log multiple accounts into the same world. Atleast RSbuddy and epicbot were like that.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  17. #17
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Quote Originally Posted by Footy View Post
    I believe Smart runs on a different IP every client, so you can log multiple accounts into the same world. Atleast RSbuddy and epicbot were like that.
    I dont think so, certainly not for simba. Its not that easy to use a different (fake) IP, and doing that often cause extreme latency. I dont think any bot clients around have such in-build ip changer. Most ppl use VMs installed with proxies.

  18. #18
    Join Date
    Jun 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks ^^^^^^^^^^^

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
  •