Results 1 to 4 of 4

Thread: How do I use the fkeys to start procedures

  1. #1
    Join Date
    Aug 2007
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default How do I use the fkeys to start procedures

    Pretty newby question I havn't used SCAR in years.

    How do I use the FKeys to start a procedure? For example I press F1 and it starts a procedure.

    Also, where can I find a list of commands for scripting in scar?

    Thanks!

  2. #2
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    for using FKeys to start a procedure do
    SCAR Code:
    repeat
     Wait(1);
    until (IsFKeyDown(SomeNumber)

    For finding functions just open scar and hit F1


  3. #3
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    I know one bobarkinator who would get close round except error

  4. #4
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Or...

    SCAR Code:
    repeat
      if IsFKeyDown(TheNumber) then
      begin
        //Stuff here.
      end;
    until (something)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Where should i start?
    By ZomgCollin in forum OSR Help
    Replies: 7
    Last Post: 07-06-2008, 04:21 AM
  2. New Start
    By final 0n3 in forum News and General
    Replies: 7
    Last Post: 05-23-2008, 10:33 AM
  3. Where do i start :o!
    By thedowie in forum OSR Help
    Replies: 4
    Last Post: 11-28-2007, 09:31 PM
  4. Help what should i start with?
    By yanix in forum OSR Help
    Replies: 7
    Last Post: 07-28-2007, 05:27 PM
  5. Replies: 6
    Last Post: 06-03-2006, 09:32 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
  •