Results 1 to 5 of 5

Thread: List of bold words?

  1. #1
    Join Date
    Jan 2007
    Location
    Tennessee
    Posts
    642
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default List of bold words?

    Does anyone have a list of bold words used in scar and what they do?
    There are a few of them i dont understand like "try".

  2. #2
    Join Date
    Apr 2006
    Posts
    710
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  3. #3
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Here is a good one for try.
    Code:
    program TryExampleByRon;
    
    const
      numbers = '123a';
    
    begin
      ClearDebug;
      try // Try this code
        if(StrToInt(Numbers) <> 0)then
          WriteLn('Numbers is greater than or less than 0!');
      finally // This code will run if there is an error in try code or not.
        WriteLn('Finally! the script is over!');
      except // If the above code doesn't work, then run this code.
        WriteLn('Please insert only numbers into the string, numbers!');
      end; // end the try/except thing.
    end.
    ~Ron

  4. #4
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Yeah, it's for catching errors that would normally make the script stop, and tell it to do something else instead.

  5. #5
    Join Date
    Jan 2007
    Location
    Tennessee
    Posts
    642
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    That helped a lot but does anyone have a list of them all? I though of a few more like "div".

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Ent chat words
    By osmm in forum OSR Help
    Replies: 0
    Last Post: 01-19-2008, 04:52 AM
  2. Replies: 23
    Last Post: 01-08-2008, 01:20 AM
  3. words you CAN say on runescape
    By seanwid in forum RuneScape News and General
    Replies: 2
    Last Post: 03-26-2007, 07:05 AM
  4. A Picture says a Thousand words
    By ruler in forum News and General
    Replies: 0
    Last Post: 02-08-2007, 04:22 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
  •