Results 1 to 7 of 7

Thread: Reflection and walk?

  1. #1
    Join Date
    Aug 2009
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Reflection and walk?

    OK, so well.
    1. Is Reflection in a SVN?
    If so whats the link and where to place it?

    2.How to make a path and use it.
    A tut or a quick guide here maybe?

    Edit:

    Also
    in simba how do you set the Hue,sat for CS2?
    Last edited by rya; 06-29-2010 at 06:33 PM.
    I see Now, says the blind man

  2. #2
    Join Date
    Nov 2007
    Location
    I live in Slovenia! :)
    Posts
    837
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    For the first question, check this tut out.
    ~T2

  3. #3
    Join Date
    Aug 2009
    Posts
    242
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks T2
    I see Now, says the blind man

  4. #4
    Join Date
    Feb 2009
    Location
    Hungary (GMT + 1)
    Posts
    1,774
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    2nd: use the path maker in reflection tools

    also: http://villavu.com/wiki/Make_your_Sc..._work_in_Simba

  5. #5
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    To make a path you can do something like..

    Pascal Code:
    function LoadPath: Array of TTile;
    begin
      Result := [Tile(1234, 5678), Tile(2345, 6789), Tile(3456, 7890)];//etc. etc.
    end;

    And then you can further look for functions in the reflection include. I think you could maybe do TileToMS then MSToMM and then click the coords or something like that. Sorry, kinda vague.. I'm not a computer with Simba/Reflection on it right now.

    It should be the same as SCAR? =X

  6. #6
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Quote Originally Posted by rya View Post
    Also
    in simba how do you set the Hue,sat for CS2?
    SCAR Code:
    procedure SetToleranceSpeed2Modifiers(nHue, nSat: Extended);

  7. #7
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    To make a path you can do something like..
    And then you can further look for functions in the reflection include. I think you could maybe do TileToMS then MSToMM and then click the coords or something like that. Sorry, kinda vague.. I'm not a computer with Simba/Reflection on it right now.
    SCAR Code:
    WalkPath(LoadPath);
    or
    SCAR Code:
    for(i :=0 to High(LoadPath) )do
    begin
      WalkToTile(LoadPath[i],1,3);
    end;

Thread Information

Users Browsing this Thread

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

Posting Permissions

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