Page 9 of 16 FirstFirst ... 7891011 ... LastLast
Results 201 to 225 of 392

Thread: All in one beginner tutorial

  1. #201
    Join Date
    Feb 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm getting better at these tutorials. Hope I can make some sick scripts soon.

    Thnx For Tutorial

  2. #202
    Join Date
    Sep 2007
    Posts
    284
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    heres my script so far..
    program script;

    const
    message1='thematpan owns';

    procedure hello;
    begin
    wait(2000)
    WriteIn(Message1);
    end;

    begin
    repeat
    hello;
    until(false)
    end.
    but i get this when compiling..
    Failed when compiling
    Line 9: [Error] (9:1): Unknown identifier 'WriteIn' in script
    99 Str from Hy's Fight Cave Runner
    http://www.stats.srl-forums.com/sigs/2760.png

  3. #203
    Join Date
    Jul 2007
    Location
    Ohio
    Posts
    1,103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    @ thematpan, you ate putting writein when it should be writeln. With an l and not an i.

  4. #204
    Join Date
    Feb 2007
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks for an extremely complete and informative tutorial!

  5. #205
    Join Date
    Sep 2007
    Posts
    284
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by king of the nites View Post
    @ thematpan, you ate putting writein when it should be writeln. With an l and not an i.
    ohhh haha alright i got it
    99 Str from Hy's Fight Cave Runner
    http://www.stats.srl-forums.com/sigs/2760.png

  6. #206
    Join Date
    Apr 2008
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i think good tut but im not sure it confused the heck out of me *scratches head* and easier ones out there?

  7. #207
    Join Date
    Apr 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    very good guide, thanks helps me alot trying to learn scripting

  8. #208
    Join Date
    Mar 2008
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this really helped me thanks alot and nice tut

  9. #209
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hi your debug box isnt showing

    Also "Writeln" is a typing "command", it tells SCAR to type the keys that you specify. The Text will show up in something called the "Debug" box that is this area of SCAR:

    it comes up with a little box with a red "X" in it

    is this just me or is everyone getting it?

    *edit*

    hi i was just doing your bitmap searching tut and i keep getting "[Error] (28:1): 'BEGIN' expected"

    heres my scriptVVVV did i miss something?

    SCAR Code:
    program New;

    var
      willowlog2: integer;
    procedure LoadBitmap;
    begin
      willowlog2 := BitmapFromString(31, 26, 'beNrllU9Lw0AUxJsvIP' +
           'QgFIKQg3gxhCDSYigGSi2UUhowSNEiKiKFoiiI4Ld34rTPZf91Ld4' +
           'Mc2g3yS+Tt/NeWq3/d0TQ8dFenrZ7ebvf3R8Une/FPyCDKdjJMB6V' +
           'HahZT5IQVx6BCZ/VKAZWVYDzCB5wLyxB4IhJLOIUmFbRuR99U58+L' +
           's6Wd8V8ltSTA0rjyLp6Fs7L4tBv+/66974avC1LK1zDqhew8n44yY' +
           'SrfBHXNZG/bUN/4KuHvsq3MqnFZXMNN/S3cI3jd+7Y03XMBA69PJ2' +
           'DJvKYBxxZOsniapwa/IhdAAk8nAzxXqZ9k0k+IqqnGUIivSB8Dcse' +
           'Z9pVmhokKdGmpxo4gLCKOvNKkokSeZjqjpvwz9cL8te3TDO0ktbdK' +
           'lPLvLm5Ap9X+cfzkNUQOP7iRVxd40m+BkfLS50b+DhVMyNlDyGb8N' +
           'urriREgzMzVvjWhmIQERVMKjYOfrAmfrgrkxyPyJWac2wfhyHOYgu' +
           'scP8oMMa+8wNhrbn2CMiBshyYORRfhHw4NysjzICPmn2CmWUJ9xnC' +
           'F7L43NWq70u9I/MLrQdi9g==');
    end;

    procedure FBitmap;
    var
     x, y :integer;
    begin

     FindBitmapToleranceIn(willowlog2, x, y, 560, 214, 734, 457, 25);
    end;

    end.

  10. #210
    Join Date
    Apr 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Vary descriptive tut. I learned a lot. The scar language reminds me of PHP.

  11. #211
    Join Date
    Apr 2008
    Posts
    67
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    @sunny u forgot the last "begin"
    Code:
    program New;
     
    var
      willowlog2: integer;
    procedure LoadBitmap;
    begin
      willowlog2 := BitmapFromString(31, 26, 'beNrllU9Lw0AUxJsvIP' +
           'QgFIKQg3gxhCDSYigGSi2UUhowSNEiKiKFoiiI4Ld34rTPZf91Ld4' +
           'Mc2g3yS+Tt/NeWq3/d0TQ8dFenrZ7ebvf3R8Une/FPyCDKdjJMB6V' +
           'HahZT5IQVx6BCZ/VKAZWVYDzCB5wLyxB4IhJLOIUmFbRuR99U58+L' +
           's6Wd8V8ltSTA0rjyLp6Fs7L4tBv+/66974avC1LK1zDqhew8n44yY' +
           'SrfBHXNZG/bUN/4KuHvsq3MqnFZXMNN/S3cI3jd+7Y03XMBA69PJ2' +
           'DJvKYBxxZOsniapwa/IhdAAk8nAzxXqZ9k0k+IqqnGUIivSB8Dcse' +
           'Z9pVmhokKdGmpxo4gLCKOvNKkokSeZjqjpvwz9cL8te3TDO0ktbdK' +
           'lPLvLm5Ap9X+cfzkNUQOP7iRVxd40m+BkfLS50b+DhVMyNlDyGb8N' +
           'urriREgzMzVvjWhmIQERVMKjYOfrAmfrgrkxyPyJWac2wfhyHOYgu' +
           'scP8oMMa+8wNhrbn2CMiBshyYORRfhHw4NysjzICPmn2CmWUJ9xnC' +
           'F7L43NWq70u9I/MLrQdi9g==');
    end;
     
    procedure FBitmap;
    var
     x, y :integer;
    begin
     
     FindBitmapToleranceIn(willowlog2, x, y, 560, 214, 734, 457, 25);
    end;
    begin
     
    end.
    P.S: good tut, but too short :O *need more*

  12. #212
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice tut mabey i wil go script again aswell

  13. #213
    Join Date
    Jul 2007
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey im pretty stupid and i get


    [error] (16:1) syntax error


    i really need help i wanna make scripts

  14. #214
    Join Date
    May 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very very nice guide, I refer to it all the time when I need to do something in a script :P

  15. #215
    Join Date
    Sep 2006
    Posts
    30
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Pretty good, I'm not sure I'll beable to remember the Bitmap Finding part, but I think I get the basics, I'm starting to see patterns with certain things, but theres still some confusion.

    Quote Originally Posted by thematpan View Post
    heres my script so far..
    but i get this when compiling..
    Lol I had the same exact problem, I thought WriteLn, was WriteIn :P.

  16. #216
    Join Date
    Apr 2008
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    omg, this is to hard for me, but i really wana learn how to make a script =\, any other explanation that i can understand? o.o

  17. #217
    Join Date
    Apr 2008
    Posts
    42
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmm this is extramly similar to pascal, im learning in collage, maybe scripting wont be so hard for me now,

    nice tutor btw lovin the use of images there

  18. #218
    Join Date
    May 2008
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wow this really helped me alot
    im starting a catherby fisher

  19. #219
    Join Date
    May 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont know how to use my scarr pls send me a pm whit a tutorial i need this

    :how to use my scar

    :how i can put the revisions

    :how i can usse in runescape 2

    :i need a script to woodcutind willous or firemaking

    :fishing or cooking

    :mining

    pls if any read this send em a pm



    gandulfin

  20. #220
    Join Date
    Sep 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Now I know the basic Thanks

  21. #221
    Join Date
    May 2008
    Location
    San Jose, California
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default ty

    TY!!! I learned sooo much

  22. #222
    Join Date
    May 2007
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Very informative, I still have a long way to go before I attempt my first script but. What coding language is scar related to anyway ? c++ ?

  23. #223
    Join Date
    Apr 2007
    Location
    Texas
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Getting ready to start my first script soon and you just helped me a ton.
    Very nice descriptive tut. Thanks much.
    "You are free to sever the chains of fate that bind you."
    http://www.stats.srl-forums.com/sigs/5297.png

  24. #224
    Join Date
    May 2008
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont get it at all.. i r dumb

  25. #225
    Join Date
    Apr 2007
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)
    nice tut

Page 9 of 16 FirstFirst ... 7891011 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Tutorial for the "Beginner Scripter". With video aid.
    By Wanted in forum Outdated Tutorials
    Replies: 63
    Last Post: 07-26-2010, 04:59 PM
  2. Beginner
    By Ejjman in forum Graphics and Multimedia
    Replies: 1
    Last Post: 11-16-2007, 08:56 AM
  3. C++ Beginner Tut
    By Macrosoft in forum C/C++ Help and Tutorials
    Replies: 31
    Last Post: 10-28-2007, 11:15 PM
  4. Help with beginner questions.
    By pdw40893 in forum OSR Help
    Replies: 9
    Last Post: 02-24-2007, 08:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •