Results 1 to 6 of 6

Thread: Loc

  1. #1
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Loc

    How would i get the loc to show up in a progress report?

    Like this?
    SCAR Code:
    'loc '+ Loc + ' '

  2. #2
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    SCAR Code:
    writeln('loc'+Loc+'.');

  3. #3
    Join Date
    Mar 2008
    Location
    Look behind you.
    Posts
    795
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Ok thanks, wasn't too sure about it.

  4. #4
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    wait, isnt it

    SCAR Code:
    writeln(players[currentplayer].loc);
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  5. #5
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    wait, isnt it

    SCAR Code:
    writeln(players[currentplayer].loc);
    That would depend on if he has it declared in declarePlayers or not.

    From what he shows here, he doesn't.

  6. #6
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    He could've done

    SCAR Code:
    for i := 0 to HowManyPlayers - 1 do
      with Player[i] do
        Loc := 'something';

    Haha (not exactly sure if that would be right. Just from memory it is though. )

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
  •