2 scripts. Customizable Autoclicker,And Autotyper

Discussion in 'RuneScape Scripts' started by GMK, Jan 7, 2008.

2 scripts. Customizable Autoclicker,And Autotyper
  1. Unread #1 - Jan 7, 2008 at 4:21 PM
  2. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    2 scripts. Customizable Autoclicker,And Autotyper

    ok heres two scripts. as you will see by the dates on the scripts the autotyper is very old (But still Works well) and the Clicker is new.
    Enjoy!
    btw: please dont remind me that "i should use srl" becuase the functions work fine, and i have used the autotyper for a year and have not been banned once!

    Enjoy!





    --------------------------Typer--------------------------
    Code:
    {
    Time usage recomendation: as long as you want!
    Class of script: Autotyper
    Complexity 1-10: 2
    Bugs: None
    Notes:
    The reason i did not use any random waits and why i used sendekeys instead of typesend is becuase as long as you dont abuse the speed,
    you can not get banned for using an autotyper.
    
    {.Script Info:
    ScriptName  = SeanSpeak
    Author      = Sean R
    Description = Types manualy or automaticly.
    Version     = 1.0
    Date        = february 28th 2007
    Comments    = Add this script to your collection!
    /Script Info}
    
    program SeanSpeak;
    
    const
    color ='white:';//color of the mesage
    effect='wave2:';// effect of the mesage
    text = 'BUY MITH AXE  ';// the message
    AM = false;// true for auto-type false for manual type
    Change = true;// true for auto change text false for no auto change text.
    waitT = 2900;// only for automatic. the wait between types.
    
    
    var
    talktimes:integer;
    loopcount:integer;
    textO:string;
    
    procedure calibrate;
    begin
    talktimes:= 0
    writeln('welcome to SS type. A free script. Enjoy!')
    wait(500)
    writeln('you will be saying ' + (text))
    wait(500)
    writeln('your color will be ' + (color))
    wait(500)
    writeln('your effect will be ' + (effect))
    if AM = true then
    writeln('it will be automatic')
    if AM = false then
    writeln('it will be manual')
    end;
    
    procedure Autotype1;
    begin
    if change = false then
    begin
    if AM = true then
    begin
    clickmouse(175,755,True)
    writeln('you have chosen auto-type. Enjoy!')
    wait(500)
    sendkeys(color + (effect + (text)))
    talktimes:= talktimes + 1
    wait(300)
    sendkeysvb('{ENTER}',false)
    wait(waitT)
    end;
    end;
    end;
    
    procedure Autotype2;
    begin
    if change = false then
    begin
    if AM = true then
    begin
    clickmouse(350,755,True)
    writeln('you have chosen auto-type. Enjoy!')
    wait(500)
    sendkeys(color + (effect + (text)))
    talktimes:= talktimes + 1
    wait(300)
    sendkeysvb('{ENTER}',false)
    wait(waitT)
    end;
    end;
    end;
    
    procedure Autotype3;
    begin
    if change = false then
    begin
    if AM = true then
    begin
    clickmouse(500,755,True)
    writeln('you have chosen auto-type. Enjoy!')
    wait(500)
    sendkeys(color + (effect + (text)))
    talktimes:= talktimes + 1
    wait(300)
    sendkeysvb('{ENTER}',false)
    wait(waitT)
    end;
    end;
    end;
    
    procedure manualtype;
    begin
    if AM = false then
    begin
    writeln('you have chosen manual type. Enjoy!')
    repeat
    wait(100)
    if isfkeydown(1) = true then
    begin
    sendkeys(color + (effect + (text)))
    talktimes:= talktimes + 1
    wait(300)
    sendkeysvb('{ENTER}',false)
    end;
    until(false)
    end;
    end;
    
    procedure speachswitch;
    begin
    if change = true then
    begin
    if loopcount = 1 then
    texto:= 'sell.'
    if loopcount = 50 then
    texto:= 'buy.'
    if loopcount = 100 then
    texto:= 'nerd.'
    if loopcount = 150 then
    texto:= 'sell.'
    if loopcount = 200 then
    texto:= 'nerd'
    if loopcount = 225 then
    texto:= 'sell.'
    if loopcount = 230 then
    loopcount:= 0
    end;
    end;
    
    begin
    calibrate;
    loopcount:= 0
    repeat
    loopcount:= loopcount + 1
    wait(10)
    speachswitch;
    wait(10)
    autotype1;
    wait(10)
    autotype2;
    wait(10)
    autotype3;
    wait(10)
    manualtype;
    wait(10)
    until(false)
    end.

    -------------------------------------Clicker-----------------------
    Code:
    {.Script Info:
    # ScriptName  = Uclix
    # Author      = Sean R
    # Description = A safe autoclicker. Choose four spots to autoclick!
    # Version     = v1.0
    # Date        = January 7th 2008
    # Comments    = I chose not to use SRL becuase it really wasnt necassary.
    /Script Info}
    program Uclix;
    /////////////HOW TO OPERATE//////////////////////////
    {
    step 1: press the start button on scar
    step 2: to set the four mouse click positions move your mouse to the first click spot
    and press q for the second press w for the third press e for the fourth press r.
    step 3: press a to begin clicking.
    step 4: when you are done HOLD a until the movement stops to stop the script and
    show report.
    note: im not sure why but sometimes if its your first time running this script it
    will automaticly start clicking. to fix this just restart the script.
    }
    /////////////HOW TO OPERATE//////////////////////////
    
    
    const
    o = 1000; //time to wait before the second click
    oo = 1000; //time to wait before the third click
    ooo = 1000; //time to wait before the fourth click
    oooo = 1000; //time to wait before the first click (before the loop reapeats)
    
    var
    clicks,a,b,c,d,e,f,g,h:integer;
    
    procedure pos;
    begin
    repeat
    if (iskeydown('q')) then
    getmousepos(a,b)
    if (iskeydown('w')) then
    getmousepos(c,d)
    if (iskeydown('e')) then
    getmousepos(e,f)
    if (iskeydown('r')) then
    getmousepos(g,h)
    until(iskeydown('a'))
    end;
    
    procedure click;
    begin
    repeat
    movemousesplineex(a,b,1,1,10,35,65)
    clickmousespline(a,b,1,1,true)
    wait(o + random(100))
    movemousesplineex(c,d,1,1,10,35,65)
    clickmousespline(c,d,1,1,true)
    wait(oo + random(100))
    movemousesplineex(e,f,1,1,10,35,65)
    clickmousespline(e,f,1,1,true)
    wait(ooo + random(100))
    movemousesplineex(g,h,1,1,10,35,65)
    clickmousespline(g,h,1,1,true)
    wait(ooo + random(100))
    clicks:= clicks + 4
    until(iskeydown('a'))
    end;
    
    
    begin
    pos;
    click;
    writeln('clicked a total of' + inttostr(clicks) + ' times')
    end.
     
  3. Unread #2 - Jan 10, 2008 at 7:19 PM
  4. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    2 scripts. Customizable Autoclicker,And Autotyper

    feel free to comment = )
     
  5. Unread #3 - Jan 11, 2008 at 3:18 PM
  6. I own Tu madre
    Joined:
    May 19, 2007
    Posts:
    352
    Referrals:
    0
    Sythe Gold:
    0

    I own Tu madre Forum Addict
    Banned

    2 scripts. Customizable Autoclicker,And Autotyper

    wow nice scripts there, they work well with me =)
     
  7. Unread #4 - Jan 26, 2008 at 3:58 AM
  8. badd99
    Referrals:
    0

    badd99 Guest

    2 scripts. Customizable Autoclicker,And Autotyper

    how can i get the autoclicker to go faster?
     
  9. Unread #5 - Jul 28, 2008 at 9:31 AM
  10. blastboy
    Joined:
    Apr 13, 2008
    Posts:
    425
    Referrals:
    0
    Sythe Gold:
    0

    blastboy Forum Addict
    Banned

    2 scripts. Customizable Autoclicker,And Autotyper

    how do u get then to work
     
  11. Unread #6 - Jul 28, 2008 at 10:10 AM
  12. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    2 scripts. Customizable Autoclicker,And Autotyper

    gravedigger!
     
  13. Unread #7 - Jul 28, 2008 at 10:29 AM
  14. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    2 scripts. Customizable Autoclicker,And Autotyper

    typer will get u banned.
     
  15. Unread #8 - Jul 28, 2008 at 11:45 AM
  16. Undefined
    Joined:
    Jul 2, 2008
    Posts:
    864
    Referrals:
    0
    Sythe Gold:
    0

    Undefined Apprentice

    2 scripts. Customizable Autoclicker,And Autotyper

    I suggest adding some random waits to the scripts: wait(10+140)) I think that's how you do it. Haven't scripted in awhile.
     
  17. Unread #9 - Jul 28, 2008 at 9:30 PM
  18. Spartan069
    Referrals:
    0

    Spartan069 Guest

    2 scripts. Customizable Autoclicker,And Autotyper

    hey

    i'm new here on Sythe, and i will be honest. I have no idea how to use these scripts. I would really like to use them, obviously. So can anyone please help me how to use these? I honestly have no idea. I guess i got to learn someway haha. =)
     
  19. Unread #10 - Jul 28, 2008 at 10:31 PM
  20. GMK
    Joined:
    Aug 2, 2007
    Posts:
    395
    Referrals:
    0
    Sythe Gold:
    0

    GMK Forum Addict

    2 scripts. Customizable Autoclicker,And Autotyper

    copy it and paste into scar
     
  21. Unread #11 - Jul 29, 2008 at 1:37 AM
  22. Jethr0x
    Joined:
    Jan 24, 2007
    Posts:
    3,070
    Referrals:
    13
    Sythe Gold:
    0

    Jethr0x Grand Master
    Banned

    2 scripts. Customizable Autoclicker,And Autotyper

    GMK, try using SendKeysWait. cause if ur account is flagged, or reported, then this typer will get u banned.
     
< i need help, i am new to all this SCAR and rsbot | core talk 1.5 by denial (not just another autotalker) >

Users viewing this thread
1 guest


 
 
Adblock breaks this site