Results 1 to 5 of 5

Thread: EDIT and OR NEW SCRIPT.

  1. #1
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default EDIT and OR NEW SCRIPT.

    asdasd
    Last edited by Haag; 02-26-2012 at 12:04 AM.

  2. #2
    Join Date
    Nov 2011
    Posts
    1,589
    Mentioned
    9 Post(s)
    Quoted
    17 Post(s)

    Default

    Sorta wrong section this is requesting a script, try it in the help section with out the giving on GP as it isn't allowed on Villavu.
    Mat
    Edit, not much you can do tbh, typesend is the human way of talking.



    ^^

  3. #3
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    Only faster way would be SendKeys('') + Char(13)

    But, you will be banned, quickly.

    Char(13) = Enter key



    Moved to proper section + edited title.
    STOP PM'ING ME

  4. #4
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Bans are not an issue at all. It has to be as fast as possible.

    Thanks for the reply's guys.
    Hobbit, just tried. I'm not getting it man. Is it possible you can implement it into my actual script?

    Need some help.

  5. #5
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    Give this a try.

    Simba Code:
    program new;
    {$i SRL/SRL/Misc/SMART.scar}
    {$i SRL/SRL.simba}

    var
      ii : integer;

    Const
      Memberss = True;
      Textt = 'text';
      Times = 100000; // how many times to repeat.
    begin
      ii := 0;
      SetupSRL;
      SmartSetupEx(10, Memberss, True, False);
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Wait(20000);
      while(not (LoggedIn)) do
      begin
        Wait(6000);
        Writeln('Still not logged in, Waiting......');
      End;
      Repeat
        Inc(ii);
        Wait(10);
        SendKeys(Textt,30);  
        Wait(50)
        TypeByte(13);
      Until(ii > Times);
    end.
    STOP PM'ING ME

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
  •