Really nooby autotalker (first script)

Discussion in 'Outdated RS Scripts' started by I will always like "w", Apr 9, 2007.

Really nooby autotalker (first script)
  1. Unread #1 - Apr 9, 2007 at 7:09 PM
  2. I will always like "w"
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like "w" Member

    Really nooby autotalker (first script)

    ill make some nooby script that duz somethign next :)

    I need to know how to make code boxes plz!!!!

    Code:
    {------------------------------------------------------------------------------]
    [    _____          __          __         .__   __                            ]
    [   /  _  \  __ ___/  |_  _____/  |______  |  | |  | __ ___________            ]
    [  /  /_\  \|  |  \   __\/  _ \   __\__  \ |  | |  |/ // __ \_  __ \           ]
    [ /    |    \  |  /|  | (  <_> )  |  / __ \|  |_|    <\  ___/|  | \/           ]
    [ \____|__  /____/ |__|  \____/|__| (____  /____/__|_ \\___  >__|              ]
    [         \/                             \/          \/    \/                  ]
    [                                         By: I will always like "w"           ]
    [------------------------------------------------------------------------------]
    [                      ---->> IMPORTANT STUFF <<----                           ]
    [ figlet generator: [url]http://www.network-science.de/ascii/[/url] font: graffiti        ]
    [ Sorry if this is kinda crapy =)                                              ]
    [ Just for learning purposes.                                                  ]
    [------------------------------------------------------------------------------]
    [                           ---->> SETUP <<----                                ]
    [   -Have RS client open                                                       ]
    [   -Drag crosshair into window                                                ]
    [   -Start script and minimize SCAR window                                     ]
    [   -10 things typable                                                         ]
    [   -type what you want to say in lines 32 through 56                          ]
    [------------------------------------------------------------------------------}
    
    Program New;
    {.include SRL/SRL.scar}
    
    begin;
    ClearDebug;
    writeln ('      _________________________')
    writeln ('    //   Josephs Autotyper!!!  \\ ')
    writeln ('   //----------<] :) [>---------\\ ')
    writeln ('  //_____________________________\\ ')
    sleep (1000)
    writeln ('           is now running!')
    
    repeat
    typesend ('Hi there its joseph ')
    Wait (1000 + random (500))
    typesend ('sup? ')
    Wait (1000 + random (500))
    typesend ('why arent u respondin? ')
    Wait (1000 + random (500))
    typesend (':) ')
    Wait (1000 + random (500))
    typesend ('mario1 cry1 hehehe this is fun ')
    Wait (1000 + random (500))
    typesend ('spammming! ')
    Wait (1000 + random (500))
    typesend ('i type alot all day longg ')
    Wait (1000 + random (500))
    typesend ('sooo wazup ')
    Wait (1000 + random (500))
    typesend ('will i ever stop ever ever ever? ')
    Wait (1000 + random (500))
    typesend ('spam mario1......ttyl...nah im gonna keep spamming') 
    sleep (1000)
    Wait (500 + random (1500))
    until (false);
    
    end.
    
    // Don't copy my crappy script plz =)
    [CODE]
    [/CODE]
     
  3. Unread #2 - Apr 9, 2007 at 7:18 PM
  4. crapkiller
    Joined:
    Jul 19, 2006
    Posts:
    426
    Referrals:
    0
    Sythe Gold:
    0

    crapkiller Forum Addict

    Really nooby autotalker (first script)

    To repeat you can simply put
    Code:
    repeat
    before and
    Code:
    until(false);
    after the code you want to be repeated. the first part "repeat" just starts the loop. "Until" keeps repeating what ever is in between "repeat" and itself. "(False)" Normally if you wanted to kep going until it found a color you would put "(FindColor(....));" But you just want it to keep repeating until the user stops the script so just put:
    Code:
    repeat
    (what ever should be repeated goes in here)
    until(false);
    EDIT: Glad to see you used SRL =)
     
  5. Unread #3 - Apr 9, 2007 at 7:26 PM
  6. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    ps how do u make code boxes woo i am a n00b
     
  7. Unread #4 - Apr 9, 2007 at 7:28 PM
  8. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    kk i didnt know the part bout until after repeating ty
     
  9. Unread #5 - Apr 9, 2007 at 8:49 PM
  10. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    this is funny i didnt even know i made it an SRL script the only reason it was SRL is cuz

    I taught myself how to script i did this with no internet...
    and i was looking at fantastic 4s wcer's antiban which has typesend in it....
    and i saw it would only work if i put that include at the top so i put it in I guess typesend is an SRL command... lol its a good thing i accidentally found that
     
  11. Unread #6 - Apr 9, 2007 at 9:12 PM
  12. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    omfg im doing dt in rs and im getting the pot to kill dessous with and its called

    the "blessed pot" oo im smokin pot but s'okey cuz its blessed pot (good for relegious ppl)

    ROFLMFAO!
     
  13. Unread #7 - Apr 9, 2007 at 9:28 PM
  14. Town
    Joined:
    Jan 21, 2007
    Posts:
    3,776
    Referrals:
    3
    Sythe Gold:
    5

    Town Grand Master
    Scar Programmers

    Really nooby autotalker (first script)

    There is a rule that says that a scripter can double post in his script, but that only applies to useful/meaningful posts, other than that double posting isn't really necissary (sp).

    And, this would probably look nicer (for learning purposes I added in some good stuff you may not understand yet):

    Code:
    {------------------------------------------------------------------------------]
    [ _____ __ __ .__ __ ]
    [ / _ \ __ ___/ |_ _____/ |______ | | | | __ ___________ ]
    [ / /_\ \| | \ __\/ _ \ __\__ \ | | | |/ // __ \_ __ \ ]
    [ / | \ | /| | ( <_> ) | / __ \| |_| <\ ___/| | \/ ]
    [ \____|__ /____/ |__| \____/|__| (____ /____/__|_ \\___ >__| ]
    [ \/ \/ \/ \/ ]
    [ By: I will always like "w" ]
    [------------------------------------------------------------------------------]
    [ ---->> IMPORTANT STUFF <<---- ]
    [ figlet generator: http://www.network-science.de/ascii/ font: graffiti ]
    [ Sorry if this is kinda crapy =) ]
    [ Just for learning purposes. ]
    [------------------------------------------------------------------------------]
    [ ---->> SETUP <<---- ]
    [ -Have RS client open ]
    [ -Drag crosshair into window ]
    [ -Start script and minimize SCAR window ]
    [ -10 things typable ]
    [ -type what you want to say in lines 32 through 56 ]
    [------------------------------------------------------------------------------}
    
    Program New;
    {.include SRL/SRL.scar}
    
    begin;
     ClearDebug;
     writeln (' _________________________');
     writeln (' // Josephs Autotyper!!! \\ ');
     writeln (' //----------<]  [>---------\\ ');
     writeln (' //_____________________________\\ ');
     sleep (1000);
     writeln (' is now running!');
     repeat // Start of loop
      typesend ('v ') //1
      Wait (1000 + random (500))
      p:=0
      repeat
       typesend ('d ') //2
       Wait (1000 + random (500))
       p:=p+1
      Until(p = 5)
      p:=0
      repeat
       typesend ('dw ') //7
       Wait (1000 + random (500))
       p:=p+1
      Until(p = 2)
      p:=0
      typesend ('fe ') //9
      Wait (1000 + random (500))
      typesend ('q ') //10
      sleep (1000)
      Wait (500 + random (1500))
     until (false); // This will go back to where I said Start of loop and continue forever
     writeln ('please restart script again for more autotyping'); // This will never happen
    end.
    -- ActivateClient; will switch you to the Runescape screen when it is declared, so you will not have to switch manually when the script starts.
     
  15. Unread #8 - Apr 9, 2007 at 9:44 PM
  16. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    soooo how u type code boxes why do u hav all those "P" variables? i dont see a reason for them and why dont u just put that under var at the top and how u make a code box????????
     
  17. Unread #9 - Apr 10, 2007 at 12:38 AM
  18. blade me not
    Referrals:
    0

    blade me not Guest

    Really nooby autotalker (first script)

    kinda newbie lol
    not bad,
     
  19. Unread #10 - Apr 10, 2007 at 4:14 PM
  20. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    HOW u make a text box?!?!?!?! and ty first script well 2nd script.... is it detectable?

    how can u increase SCAR's typespeed? I can type almost as fast as SCAR in this autotyper...
     
  21. Unread #11 - Apr 11, 2007 at 11:08 PM
  22. andren0
    Joined:
    Mar 9, 2007
    Posts:
    415
    Referrals:
    3
    Sythe Gold:
    0

    andren0 Forum Addict
    Banned

    Really nooby autotalker (first script)


    here this is one that i made in a min or so its pretty undetectable u can copy bits of this or even all if you want
     
  23. Unread #12 - Apr 12, 2007 at 6:55 AM
  24. I will always like &quot;w&quot;
    Joined:
    Mar 21, 2007
    Posts:
    85
    Referrals:
    0
    Sythe Gold:
    0

    I will always like &quot;w&quot; Member

    Really nooby autotalker (first script)

    mines the same thing. but Iève seen some autotypers that type instantly.
    I know these are very detectable but is there a way to at least inrease SCARs typespeedz?
     
  25. Unread #13 - Apr 12, 2007 at 5:33 PM
  26. Fr33sty13
    Joined:
    Apr 12, 2007
    Posts:
    20
    Referrals:
    0
    Sythe Gold:
    0

    Fr33sty13 Newcomer

    Really nooby autotalker (first script)

    i gotta start scriptin =p
     
  27. Unread #14 - Apr 29, 2007 at 8:33 PM
  28. isosceles
    Joined:
    Jan 22, 2007
    Posts:
    455
    Referrals:
    0
    Sythe Gold:
    0

    isosceles Forum Addict
    $5 USD Donor

    Really nooby autotalker (first script)

    Is the: "Wait (1000 + random (500))" basically the antiban proceedure?
    Sorry for the noob question. I wanna learn to script :p
     
  29. Unread #15 - Apr 30, 2007 at 3:15 PM
  30. Cry M O R E
    Referrals:
    0

    Cry M O R E Guest

    Really nooby autotalker (first script)

    o very nice
     
< jhilds varrock rune buyer | Bronze auto smelter >

Users viewing this thread
1 guest


 
 
Adblock breaks this site