Results 1 to 24 of 24

Thread: EZTyper Autotyper

  1. #1
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default EZTyper Autotyper

    Welcome to EZTyper AutoTyper, brought to you by Esteban. This script is in it's beginning stages, and is a very basic, but easy to use AutoTyper.

    Please post any Criticism, Ways that i can make it better, errors you receive, etc.

    V 1.0 - Release
    V 1.0.1 - Changed the Credits, Working on a Progress Report
    V 1.0.2 - Removed some unnecessary scripting, somewhat working progress report.
    V 2.0.0 - Option to Switch Between Quick-Type Messages or Slower, but More Human-Like Typing. Also Has a Work Progress Report That Updates How Many Messages Are Sent Every 3 Messages.
    V 3.0.0 - Form Version of EZTyper. Working on implementing the ability to set the wait between sent messages, and AFK typing speed.

  2. #2
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Working on a progress report, stating numbers of messages typed and sent, still trying to figure out a form for this.

  3. #3
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    TypeSend automatically pushes enter.

    Also maybe for the next version, since this appears to be an afk autotalker, make it so the user can set how long for the script to talk before logging off? That's not hard to add either.

  4. #4
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well sure, it can be used as an afk typer, but it can be used to type message after message without wait if TalkWait is set to 0. If i didn't use TypeSend, I would think it would be pretty obvious, typing the keys as fast as SendKeys does.

    Fixing V 1.0.1 to what it should really be.

  5. #5
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    procedure Messages;
    begin
    TypeSend(Message1+chr(13));
    wait(TalkWait+Random(500))

    TypeSend(Message2+chr(13));
    wait(TalkWait+Random(500))
    TypeSend(Message3+chr(13));
    wait(TalkWait+Random(500))
    end;

    The way you have it scar will type the message then push enter twice.

  6. #6
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    that is true, but it does not effect the script from what i have tested.

  7. #7
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah it's just a tiny thing, I wanted to make sure you knew that it pushed enter by itself.

  8. #8
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok, thanks for pointing out the little things =)

  9. #9
    Join Date
    Mar 2007
    Location
    Derka Derka Land
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol, it looks a lot like my autotalker!

  10. #10
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    like i said, i followed your autotalker when i made mine. I'm hoping to improve it however possible.

  11. #11
    Join Date
    Mar 2007
    Posts
    674
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    This is not necessary.

    SCAR Code:
    {===============================================================}
    {=====Player Information(Not Sure if This is Needed or Not)=====}
    {===============================================================}

    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer:= 0;

    Players[0].Name :='Enter Here';//Enter your RuneScape Account name here
    Players[0].Pass :='Password';//Enter the account's password here
    Players[0].Nick :='Nickname';//Enter 3 lower-case letters of your account name
    Players[0].Active:=True;
    end;

    //======================Do not add or delete anything under this, but feel free to use it for your own script.===============


    And Instead Of

    SCAR Code:
    TypeSend(Message1+chr(13));

    Use

    SCAR Code:
    SendKeys(messasge1+chr(13));

    AND i like you idea of Credits!!. Nice creativety.

  12. #12
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm pretty sure sendkeys sends all the characters in the message at once, while TypeSend types them more human-like.

    And thanks for clarifying that declarePlayers isn't necessary.

  13. #13
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    V 1.0.2 up, need help with progress report, it somewhat works, somewhat doesn't.

  14. #14
    Join Date
    Feb 2007
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey nice job estebab, 2 weeks and you already made your first script. I've tried it out and it is very nice. lol it took me 3 weeks just to set up scar. keep up the good work.

  15. #15
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dx you can just call me by my real name if you want, i don't care, it's not like anyone could figure out anything out just by my first name.

  16. #16
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Verson 2.0.0 Released! Check Main Topic Post for Version Deatils.
    I like my coffee black just like my metal.

  17. #17
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Just To Tell You, Don't Double Post...Edit Your First Post.
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  18. #18
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Currently a Form version of EZTyper is under construction. After fixing a few bugs, i will release it as V3.0.0
    I like my coffee black just like my metal.

  19. #19
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Esteban, if you make a form with edit boxes, then you do this....

    SCAR Code:
    edit1.value(orwhatever):= 'Input by user using form.'

    TypeSend(edit1.value) //Dunno if value is correct. I think its text...
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

  20. #20
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Version 3.0.0 uploaded. Updated to contain a basic form, but works like clockwork.
    I like my coffee black just like my metal.

  21. #21
    Join Date
    Apr 2007
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk thanks, i'll try it out now.

  22. #22
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Any ideas for improving EZTyper?
    I like my coffee black just like my metal.

  23. #23
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You could make it automatically accept trades. It's not too hard to do.

    Edit: You actually already have the SRL for it in their. All you have to do is put in the functions & procedures.

  24. #24
    Join Date
    Apr 2007
    Location
    The Buckeye State
    Posts
    482
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm... got any tuts for where it would do that, or any script examples i could study for that?
    I like my coffee black just like my metal.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. AutoTyper V1.1 [VB6]
    By CheetahNub in forum C#/Visual Basic Help and Tutorials
    Replies: 3
    Last Post: 01-31-2009, 01:26 PM
  2. Need some help with my autotyper
    By Krim0407 in forum OSR Help
    Replies: 2
    Last Post: 05-17-2008, 03:33 PM
  3. AutoTyper
    By KoKouKo in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 03-30-2008, 11:11 PM
  4. [SRL 4] AutoTyper!
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 28
    Last Post: 11-04-2007, 01:41 AM

Posting Permissions

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