Results 1 to 8 of 8

Thread: Looking for help on a simple task

  1. #1
    Join Date
    Jan 2017
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Looking for help on a simple task

    Previously made a script with the aid of several members here, and now said script is gone due to losing my PC. Looking to recreate it modified slightly better now.

    I'm really stupid and can't even get started on my own. Would anyone be kind and show me how to basically just spawn smart and spam enter in a loop rapidly. No logging in or anything else fancy, just those 2 things plain and simple. I'd work my way from there myself.

    Thanks before hand if anyone bothers to help a fella out.

  2. #2
    Join Date
    Oct 2015
    Location
    Nowhere
    Posts
    134
    Mentioned
    2 Post(s)
    Quoted
    64 Post(s)

    Default

    https://villavu.com/forum/showthread.php?t=47714

    Right there says how to spawn SMART

    Not sure what you mean by spam enter.

  3. #3
    Join Date
    Jan 2017
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by skollstagg View Post
    https://villavu.com/forum/showthread.php?t=47714

    Right there says how to spawn SMART

    Not sure what you mean by spam enter.
    Ah looked at the wrong Place. Got the SMART thanks alot! By spam enter I mean as if you'd hold down enter key and it'd have to work on login screen aswell. Continously on a loop.

  4. #4
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    Simba Code:
    repeat
        PressKey(13);
    until false;

    Presses Enter forever
    Finished B.S. Program in Radiology!!

    Projects: A big one! Total secret! hehe

  5. #5
    Join Date
    Jan 2017
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Code:
    program new;
    {$DEFINE SMART} 
    {$i srl-6/srl.simba}
    
    begin
      clearDebug();
      setupSRL();
    repeat
        PressKey(13);
    until false;
    end.
    This is what I have right now, any idea why won't it run the enter bit? Settings are all ok and SMART launches fine. Previously my autoclicker would start right off the bat without even logging me in, which is what I'm trying to do here aswell, except with enter this time. It won't hold enter either login menu nor logged in. :/

  6. #6
    Join Date
    May 2012
    Location
    Glorious Nippon
    Posts
    1,011
    Mentioned
    50 Post(s)
    Quoted
    505 Post(s)

    Default

    Quote Originally Posted by aww yiss View Post
    Code:
    program new;
    {$DEFINE SMART} 
    {$i srl-6/srl.simba}
    
    begin
      clearDebug();
      setupSRL();
    repeat
        PressKey(13);
    until false;
    end.
    This is what I have right now, any idea why won't it run the enter bit? Settings are all ok and SMART launches fine. Previously my autoclicker would start right off the bat without even logging me in, which is what I'm trying to do here aswell, except with enter this time. It won't hold enter either login menu nor logged in. :/
    I think it's 10 instead of 13 if you're using SMART.

  7. #7
    Join Date
    Jan 2017
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Citrus View Post
    I think it's 10 instead of 13 if you're using SMART.
    Yes you were right, and i've now gotten it work the way I want to. Another problem though. When I open 4 regular clients for rs3 (java) they run just fine. SMART however laggs like crazy and crashes after about 5mins and can't even think of opening more than 1 SMART. Am I dealing with a java issue?

  8. #8
    Join Date
    Jun 2007
    Posts
    532
    Mentioned
    1 Post(s)
    Quoted
    68 Post(s)

    Default

    I am not sure what the issue you are having is but I would check this tutorial out.

    https://villavu.com/forum/showthread.php?t=109112

    Talks about how to use 4+ SMART
    Finished B.S. Program in Radiology!!

    Projects: A big one! Total secret! hehe

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
  •