Results 1 to 4 of 4

Thread: Need help plz! :(

  1. #1
    Join Date
    Oct 2013
    Posts
    42
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Question Need help plz! :(

    http://villavu.com/forum/showthread....ght=auto+typer

    exactly this problem (read all thread)

    "The script manages to run and open a client but doesn't do anything after that. it just sits there and eventually terminates.

    Am I doing anything wrong?"

    "You need to actually login from that point and then start the script after it spawns the client. don't know why it pauses like that, but it does the same thing for me."

    "Still doesn't work, I can log it in manually but it won't talk."

    Code:
    program AutoTyper;
    {$define SMART}
    {$i SRL-OSR/SRL.simba}
    
    procedure autoType;
    begin
      repeat
        wait(8000 + random(530));
        typeSend('text',true);
      until(false)
    end;
    
    begin
      setupSRL;
      autoType;
    end.
    I start the script when logged in and everything but it doesnt work and eventually terminates saying "successful" or something. Tried everything well i think so. :S

  2. #2
    Join Date
    Sep 2012
    Location
    Netherlands
    Posts
    2,752
    Mentioned
    193 Post(s)
    Quoted
    1468 Post(s)

    Default

    Quote Originally Posted by SimbaGod View Post
    http://villavu.com/forum/showthread....ght=auto+typer

    exactly this problem (read all thread)

    "The script manages to run and open a client but doesn't do anything after that. it just sits there and eventually terminates.

    Am I doing anything wrong?"

    "You need to actually login from that point and then start the script after it spawns the client. don't know why it pauses like that, but it does the same thing for me."

    "Still doesn't work, I can log it in manually but it won't talk."

    Code:
    program AutoTyper;
    {$define SMART}
    {$i SRL-OSR/SRL.simba}
    
    procedure autoType;
    begin
      repeat
        wait(8000 + random(530));
        typeSend('text',true);
      until(false)
    end;
    
    begin
      setupSRL;
      autoType;
    end.
    I start the script when logged in and everything but it doesnt work and eventually terminates saying "successful" or something. Tried everything well i think so. :S
    set your script interpreter to pascalscript

  3. #3
    Join Date
    Oct 2013
    Posts
    42
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    plz help me ?

    The thing you said maybe work but i guess we need to change the code?

    Thats what I got when i pressed "run"


  4. #4
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    TypeSendEx('text', true); instead of TypeSend I believe.

    Creds to DannyRS for this wonderful sig!

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
  •