Results 1 to 3 of 3

Thread: Magics Auto Talker! W00t!

  1. #1
    Join Date
    Oct 2007
    Location
    Missouri
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Magics Auto Talker! W00t!

    Hello, this is like my second script... But, it is like the first kind of script I made. Please report any bugs or and errors in the coding that come in your path! I need all the help I can get !

    Tell me what you think of this autotalker!
    // - Magic Scripts
    Current Work: P Miner
    About me: I hate to work, so I chose to macro.

    If I see you autoing with level 3/defaultclothes/crap name I WILL report you. Auto Correctly. - put this in your sig!

    http://www.anotherfree.com/banners/3.gif
    Click the image to get your 100% free domain name!
    .com, .net, .org, .info, .biz, .us, .name, and much more!

  2. #2
    Join Date
    Oct 2007
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cool! Well this is your second script. I making a whole series of AutoTalkers and I just keep getting more advanced and advanced. So if you need any help I can help ya. Well let me take a look over this.
    EDIT:
    Code:
    ////////////////////////////Instructions////////////////////////////
    // 1. On lines 6-10 put your -- It wasnt the 6th to 10th line it was 12th.--
    // 2. Drag crosshair to the RuneScape Client                      //
    // 3. Click start                                                 //
    // 4. Click F12 to stop script                                    //
    ////////////////////////////////////////////////////////////////////  --try not to use so much of these, // they get confusing--
    program autotalker;
    {.include SRL/SRL.scar}
    
    procedure Talk;
    begin
    typesend('type your message here...') --it would be easier to add a const.--
    wait(1000 + random(500)); --good at least u got a wiat--
    end;
    
    procedure Signature;
    begin
    Writeln('M') -- If you want it to be better try taking out the waits it makes it faster. And dont forget those semicolons!--
    wait(200)
    Writeln('MA')
    wait(200)
    Writeln('MAG')
    wait(200)
    Writeln('MAGI')
    wait(200)
    Writeln('MAGIC')
    wait(200)
    Writeln('MAGICS')
    wait(200)
    Writeln('MAGICS A ')
    wait(200)
    Writeln('MAGICS AU')
    wait(200)
    Writeln('MAGICS AUT')
    wait(200)
    Writeln('MAGICS AUTO')
    wait(200)
    Writeln('MAGICS AUTOT')
    wait(200)
    Writeln('MAGICS AUTOTA')
    wait(200)
    Writeln('MAGICS AUTOTAL')
    wait(200)
    Writeln('MAGICS AUTOTALK')
    wait(200)
    Writeln('MAGICS AUTOTALKE')
    wait(200)
    Writeln('MAGICS AUTOTALKER')
    wait(200)
    Writeln('BY MAGIC SCRIPTS')
    wait(1000)
    Writeln('Msn: Ticket_To_Lummy@Hotmail.com')
    wait(1000)
    Writeln('If you want to stop the script click F12...')
    wait(1000)
    Writeln('Starting MAGICS AUTOTALKER in 5 seconds')
    wait(5000) --i suggest u take that one out--
    end;
    
    begin
                        <-- Space that up
    SetUpSrl;
    ActivateClient;
    Signature;
    repeat
    Talk;
    until(IsFKeyDown(12));
    end.
    I commented inside the script. Look between all of these --''--.

    Now with my edits you can do something like this:

    Code:
    {<-----------------Instructions----------------->]
    [ 1. On lines 6-10 put your message in the ('')  ]
    [ 2. Drag crosshair to the RuneScape Client      ]
    [ 3. Click start                                 ]
    [ 4. Click F12 to stop script                    ]
    [________________________________________________}
    program autotalker;
    {.include SRL/SRL.scar}
    
    const
    Say = 'Now Type Your Message Here'; //Type message here.
    
    procedure Talk;
    begin
    typesend(Say);
    wait(1000 + random(500));
    end;
    
    procedure Signature;
    begin
    Writeln('M');
    Writeln('MA');
    Writeln('MAG');
    Writeln('MAGI');
    Writeln('MAGIC');
    Writeln('MAGICS');
    Writeln('MAGICS A');
    Writeln('MAGICS AU');
    Writeln('MAGICS AUT');
    Writeln('MAGICS AUTO');
    Writeln('MAGICS AUTOT');
    Writeln('MAGICS AUTOTA');
    Writeln('MAGICS AUTOTAL');
    Writeln('MAGICS AUTOTALK');
    Writeln('MAGICS AUTOTALKE');
    Writeln('MAGICS AUTOTALKER');
    Writeln('BY MAGIC SCRIPTS');
    Writeln('Msn: Ticket_To_Lummy@Hotmail.com');
    Writeln('If you want to stop the script click F12...');
    wait(1000);
    Writeln('Starting MAGICS AUTOTALKER');
    end;
    
    begin
    SetUpSrl;
    ActivateClient;
    Signature;
    repeat
    Talk;
    until(IsFKeyDown(12));
    end.
    I know it seems funny that I'm helping you edit but what is ActivateClient;?
    http://bux.to/?r=jvwarrior Get Free Money For RunescapeGP/Membership!

    http://www.AWSurveys.com/HomeMain.cfm?RefID=jvwarrior Get More Money For Runescape GP/Membership Free! I Mean woa!

    http://i34.servimg.com/u/f34/11/52/00/62/hasdfs10.jpg

  3. #3
    Join Date
    Oct 2007
    Location
    Missouri
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you for editing this! Oh and ActivateClient; switches to the client you dragged your crosshair too... Thats what ActivateClient; does .
    // - Magic Scripts
    Current Work: P Miner
    About me: I hate to work, so I chose to macro.

    If I see you autoing with level 3/defaultclothes/crap name I WILL report you. Auto Correctly. - put this in your sig!

    http://www.anotherfree.com/banners/3.gif
    Click the image to get your 100% free domain name!
    .com, .net, .org, .info, .biz, .us, .name, and much more!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. A auto talker
    By Matsetst in forum First Scripts
    Replies: 6
    Last Post: 12-05-2007, 03:52 PM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. w00t! lol check it out auto talker
    By chrissy2k7 in forum First Scripts
    Replies: 1
    Last Post: 04-02-2007, 06:24 PM
  4. Help with auto trade/ auto talker script
    By logik in forum OSR Help
    Replies: 5
    Last Post: 03-16-2007, 11:16 PM

Posting Permissions

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