Results 1 to 14 of 14

Thread: Logik's Auto Talker V 0.1 BETA

  1. #1
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Logik's Auto Talker V 0.2 (Fixed)

    Logik's Auto Talker V 0.1


    • Able to have two messages at a time
    • Can change speed/time before next message typed


    Okay this is my first script ever please no flaming,Any questions, comments, tips, ideas, please post. Its pretty simple to use, just type you message where is says "'Delete this and type your message here!!!'", and if you want only one message type the same message that is in the Message1=''; area in Message2=''; You can also change the amount of time before each message is sent and they can also be different (lines 36 and 38).


    If I am going to have an update I will make it have:
    • more lines so you can type more messages
    • also so you don't have to type the message twice
    • and maybe ever so it has its own window instead of using the SCAR coding screen.


    NOW AUTO TALKER VERSION 0.2 OUT!!!

    • Now it automatically accepts trades
    • Must have public chat on hide or off
    • Give credit to JAD too!!

  2. #2
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok I'm very sorry before, but now I have the right file and I fixed it.

  3. #3
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Probably your first script, so keep it up!!
    Maybe try to setup how many seconds between messages (player can choose the time to wait)??

  4. #4
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for your positive report but you can set up time in between messages

  5. #5
    Join Date
    Feb 2007
    Location
    Alberta, Canada
    Posts
    4,615
    Mentioned
    50 Post(s)
    Quoted
    429 Post(s)

    Default

    Maybe add wait+random so they arnt 3 seconds exactly apart every time?

  6. #6
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah ok sure, but you can change it your self :P but sure I will do that, but any other ideas?

  7. #7
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well, you have: wait(3000); //Amt of time before next message typed in milliseconds
    you shouldn't do that because you are making this pretty much for a user you do not know how good they are with scar, and they might not know anything about that. in the constants I'd put waittime=1000; //set wait time here.
    wait((waittime)+random(200));
    because that waits as long as the user puts into the constants, plus a random 200. and if you made it accept trades that would be something you could try.

  8. #8
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok sure I will try to do that because I just started scripting yesterday but yea expect version 0.2 coming out soon due to new ideas

  9. #9
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    make one like i did, one that opens a trade and/or plays a sound when a trade is found...
    EDIT: the thing JAD said is what i ment before...

  10. #10
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Okay but I am going to need help

  11. #11
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry for double post but now version 2 is out

  12. #12
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by the scar noob View Post
    make one like i did, one that opens a trade and/or plays a sound when a trade is found...
    EDIT: the thing JAD said is what i ment before...
    @scar noob wasn't trying to steal what you said just correcting what he did from your idea.

    I'll take a look at the script though, and instead of double posting you could just click the edit button and put V2 is out!

    Edit: OK heres the problem, you can not have more then 1 main loop as you do. so you can not have
    begin
    talk
    end.

    begin
    trade
    end.

    like that, everything after the first "end." gets ignored. so heres the fixed version:
    SCAR Code:
    {///////////////////////////////////////////////////////////////////////////////
    / My first scrip Logik's Auto Talker V 0.2 (Most credit goes to JAD)                                      /
    / Any questions, comments, tips, ideas, please post.                            /
    / Type your message where is says 'Delete this and type your message here!!!'   /
    / To use the chat effects type them in the same area where you type your message/
    / but type one of the chat effects before/infront of your message.              /
    / Here are some chat effects:                                                   /
    /      Color Chat Effects:                                                      /
    /            glow1: then type ur message     SETUP LINE 30-31 AND CHANGE        /
    /            glow2: then type ur message     LINE 36-38 FOR SPEED               /
    /            flash1: then type ur message    READ PARAGRAPH FOR MORE INFO       /
    /            flash2: then type ur message    YOU CAN HAVE 2 MESSAGES            /
    /            flash3: then type ur message    IF YOU ONLY WANT ONE MESSAGE       /
    /            red: then type ur message       TYPE THE SAME MESSAGE IN BOTH      /
    /            green: then type ur message     AREAS (LINES 30-31) WHERE IT SAYS  /
    /            cyan: then type ur message      'DELETE THIS AND TYPE YOU MESSAGE  /
    /            white: then type ur message     HERE!!!'                           /
    /      Moving Chat Effects:                                                     /
    /            shake: then type ur message     ALSO MUST HAVE PUBLIC CHAT ON HIDE                                   /
    /            wave: then type ur message      OR OFF!!!!!!!                                   /
    /            scroll: then type ur message                                       /
    /            slide: then type ur message                                        /
    /And you can combine chat effects, but you have to first                        /
    /type a moving chat effect then type a color effect.                            /
    /For example: wave:glow1: "message here"                                        /
    ///////////////////////////////////////////////////////////////////////////////}


    program script;
    {.include SRL/SRL.scar}

    {-----Setup-----} {REMEMBER TURN PUBLIC CHAT ON HIDE OR OFF}
    const
    Message1='';
    Message2='';
    waittime=1000; //set wait time here.
    DoTrades=true; // thanks to JAD :P
    {-----End of Setup-----}

    procedure talk;
    begin
      Writeln('{~~~~~~~~~~~~~~~~~~~~LOGIKS AUTO TALKER VERSION 0.2~~~~~~~~~~~~~~~~~~~~');
      Writeln('++++++++++++++++++++GIVE CREDIT TO JAD FOR HELPING!++++++++++++++++++++');
      wait((waittime)+random(200)); //Amt of time before next message typed in milliseconds
      TypeSend(Message1);
      wait((waittime)+random(200));
      TypeSend(Message2);
    end;
    {PROCEDURE TRADE ALL THANKS TO JAD}

    procedure Trade;
    begin
    if(DoTrades=false)then
    Exit;
    if(FindColorSpiralTolerance(variable,color,coords,coords,coords,coords))then
    begin
    Mouse(variable,0,0,true);
    TerminateScript;
    end;
    begin
     repeat
     trade;
     talk;
     until(false)
    end.
    just look at how I changed it. and you need to put in your own variables example x,y and color and coordinates. before you release a script you should make sure it compiles

  13. #13
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    135
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol what a noob I are

  14. #14
    Join Date
    Mar 2007
    Posts
    180
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sweet autotalker. Very useful for merchant. I like especially when it auto accepts.

    Some improvement though. Human errors! Otherwise I'll be banned haha.

    Keep up!
    If you know any permanent Reg Ess buyer at 40 each, please pm me.
    Proud User of Wizzup Ess Miner Script, the best Ess Miner ever..
    Retired User
    http://www.fenjer.com/adnan/SRLStats/304.png

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Talker
    By BlueWorld in forum First Scripts
    Replies: 9
    Last Post: 05-08-2008, 12:09 PM
  2. A auto talker
    By Matsetst in forum First Scripts
    Replies: 6
    Last Post: 12-05-2007, 03:52 PM
  3. Replies: 5
    Last Post: 11-23-2007, 08:45 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
  •