Page 3 of 3 FirstFirst 123
Results 51 to 54 of 54

Thread: [ProjectRs06] The Willower - Draynor Willow Cutter

  1. #51
    Join Date
    Dec 2012
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    you should make your own globals for everything, its bad form to make people change their include
    how do i make my own globals if the globals are set in the SRL? sorry but i'm a little clueless on how to go about this

  2. #52
    Join Date
    Sep 2012
    Location
    Australia.
    Posts
    839
    Mentioned
    16 Post(s)
    Quoted
    225 Post(s)

    Default

    Global variables. Place them near the top of your script.

    Simba Code:
    program Example;

      {$i SRL/srl.simba}

    const
      Blah = '';

    var
      example, example2: Integer;

    Procedure DoStuff;
    var
      DoSomething;
    begin
      if ...... then
      begin
        aosdfj;
        inefdfs;
      end;
    end;

    begin
      SetupSRL;
      DoStuff;
    end.

    I know it's dodgy but it gets the point across.

  3. #53
    Join Date
    Dec 2012
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    Quote Originally Posted by Chris! View Post
    Global variables. Place them near the top of your script.

    Simba Code:
    program Example;

      {$i SRL/srl.simba}

    const
      Blah = '';

    var
      example, example2: Integer;

    Procedure DoStuff;
    var
      DoSomething;
    begin
      if ...... then
      begin
        aosdfj;
        inefdfs;
      end;
    end;

    begin
      SetupSRL;
      DoStuff;
    end.

    I know it's dodgy but it gets the point across.
    so if the Navbar global from SRL is 22, and i put Navbar := 0 at the top of my script, my script will use my globals and ignore the one in SRL?

  4. #54
    Join Date
    Jan 2013
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    when i hit start "gettolerancespeed" turns yellow, what do i Do?

Page 3 of 3 FirstFirst 123

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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