Results 1 to 4 of 4

Thread: Need Help With Several Problems!!!

  1. #1
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Need Help With Several Problems!!!

    1.How do I tell Scar that if it doesn't find a object to exit and do another procedure!

    For example,

    if If FindObj(x, y, 'willow', WillowColor, 5) then

    Then normally I would put another command telling it what to do, but if it can't find it how do i make it Exit and Make another Procedure!!!

    2.How Can I Set up RadialWalking, Can Sombody Just Write me the Function and show me how its filled out!!!

    3.How do i add anti-randoms and anti-ban!!!!!


    Please Help Guys Im really Confused

  2. #2
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1. (This code won't compile).
    SCAR Code:
    if (Not(FindObj(YourObject))) then
    begin
      DoAnotherProcedure;
      Exit;
    end;

    2. There are loads of tutorials.
    3. There are loads of tutorials.
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  3. #3
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    I've also used:

    SCAR Code:
    begin
       if (FindObj(YourObject))) then
       begin
          Procedure;
          exit;
       end;
       begin
         anotherprocedure; //if the first one happens this one won't
       end;
    end;
    ---------------------------------------------

    Make sure u get your begins and ends right or it won't work correctly.

  4. #4
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks guys!!!!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. SQL Problems. Please help!
    By Da 0wner in forum Web Development
    Replies: 10
    Last Post: 01-22-2009, 02:03 AM
  2. Computer problems... Terrible computer problems...
    By Jason2gs in forum News and General
    Replies: 22
    Last Post: 04-26-2007, 12:02 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
  •