Adblock breaks this site

[TUT]Unmatched Beginner's Guide to Scripting Scar

Discussion in 'Scar/Simba Help' started by WhoCares357, Jan 21, 2007.

?

How Helpfull

  1. Unmatched/Perfect

    169 vote(s)
    59.1%
  2. Needs a Little Improvement

    50 vote(s)
    17.5%
  3. Vague/Hard to Follow

    35 vote(s)
    12.2%
  4. Impossible/Needs Total Revision

    32 vote(s)
    11.2%
Thread Status:
Not open for further replies.
  1. xxlayzchipsx

    xxlayzchipsx Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    It looks like you definitely know what your talking about, and i am sure that even a noob could understand what you are talking about... very well written, i think it helped me A LOT.
     
  2. §tr€nth Øwn§™

    §tr€nth Øwn§™ Forum Addict
    Banned

    Joined:
    Apr 6, 2007
    Posts:
    339
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    sweet tut
     
  3. Cow_Say_Moo

    Cow_Say_Moo Forum Addict

    Joined:
    Nov 5, 2007
    Posts:
    311
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    Nice guide, but I got bored 1/4th the way through, and stopped. :p
     
  4. big poo28

    big poo28 Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    man thats some wacked out writen
     
  5. howcow95

    howcow95 Apprentice
    Banned

    Joined:
    Jan 29, 2007
    Posts:
    733
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    Oh man for a tut made so long ago :p its still THE best shit out there. I actually learned how to do shit im still like half way through but Im looking forward to giving back to the community :D ILU First time I looked at this months ago I was like psshhhh im never guna learn that shit, but I had a lil bti too much extra time today :p
     
  6. Cheater4ever

    Cheater4ever Active Member

    Joined:
    Dec 21, 2005
    Posts:
    210
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    I don't think i'm smart enough to comprehend this...But i really wish i was..Lol
     
  7. corn-chips

    corn-chips Active Member

    Joined:
    Oct 14, 2007
    Posts:
    129
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    nice tut
     
  8. lillol

    lillol Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    thxs man
     
  9. lolwafflez

    lolwafflez Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    wow lol that was a lot ...
     
  10. lolwafflez

    lolwafflez Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    a lot of effort on that, im gonna start to learn maybe
     
  11. lolwafflez

    lolwafflez Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    oh yeah and thanks for it btw
     
  12. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    Bloody spam bots.
     
  13. Macroman

    Macroman Hero
    Do Not Trade

    Joined:
    Jan 21, 2007
    Posts:
    6,919
    Referrals:
    9
    Sythe Gold:
    12
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    Wow, For the first time I was able to understand how to make even an Auto clicker.

    I'm planning on making scripts and selling them. To make some cash.

    I still need to learn some more things. For example if i wanted to put multiple things in the script, How do i connect them.

    run to bank> Store items > Get item out> Run to Place > Uses all the items in Invo> Repeat
     
  14. WhoCares357

    WhoCares357 Forum Addict

    Joined:
    Jan 21, 2007
    Posts:
    608
    Referrals:
    1
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar


    Create procedures for each of the things you want to do. Then place them in the main loop (last begin/end) within a loop.
     
  15. Town

    Town Grand Master
    Scar Programmers

    Joined:
    Jan 21, 2007
    Posts:
    3,776
    Referrals:
    3
    Sythe Gold:
    5
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    The adbots like your thread for some reason.
     
  16. spacekip

    spacekip Newcomer

    Joined:
    Jan 23, 2008
    Posts:
    8
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    does anyone know how I make Runescape face north in my scar script?
    I tried 'PerfectNorht;' and MakeCompass('N');' ,but they didn't work.
    am I using the right verbs, but just in a wrong way?
     
  17. pwnerer5456

    pwnerer5456 Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    Can someone please tell me why my Debug screen always says this:


    Line 21: [Error] (21:4): Semicolon (';') expected in script


    Here's my script:


    program ColorClickerTest;

    var
    x,y: integer;
    coalcolor : integer;


    procedure ClickOnColor;

    begin
    coalcolor:= 255;
    begin
    if (Findcolor(x,y,coalcolor,-4,-1,26,22)) then
    begin
    Writeln('found the color');
    MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);
    ClickMouse(x,y,true);
    end;
    end;
    end.

    Thanks alot:D ,
    Steve

    PS I know this is probably a total noob question!!:mad:
     
  18. spacekip

    spacekip Newcomer

    Joined:
    Jan 23, 2008
    Posts:
    8
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    you have to say that the coal color is a constant, not a variable (and you have to say what constant it is, not that it is integer).

    and it's adviced to wait before you click

    so it has to be:

    program ColorClickerTest;

    var
    x,y: integer;

    const:
    coalcolor = 255;

    procedure ClickOnColor;
    begin
    if (Findcolor(x,y,coalcolor,-4,-1,26,22)) then
    begin
    Writeln('found the color');
    MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);
    Wait(100+random(50));
    ClickMouse(x,y,true);
    end;
    end;

    begin
    ClickOnColor;
    end.
     
  19. AllAdobeOEMSoftDownload

    AllAdobeOEMSoftDownload Guest

    Referrals:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

  20. Faskist

    Faskist Tuxhead
    Banned

    Joined:
    Apr 25, 2005
    Posts:
    1,869
    Referrals:
    0
    Sythe Gold:
    0
    [TUT]Unmatched Beginner's Guide to Scripting Scar

    I thought SCAR was an interpreter, not a compiler.
     
< help with simba macro | >
Thread Status:
Not open for further replies.


 
 
Adblock breaks this site