Results 1 to 3 of 3

Thread: tpa help

  1. #1
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default tpa help

    I need help.

    SCAR Code:
    if not WhirlPoints[0].x = 0 then

    I'm trying to see if there was any input into this tpa. How do i see this?

    Cut em2 it
    Formerly known as Cut em2 it

  2. #2
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    SCAR Code:
    if not WhirlPoints[0].x = 0 then
    That won't work. You'll need to do this:
    SCAR Code:
    if not (WhirlPoints[0].x = 0) then
    Or just
    SCAR Code:
    if WhirlPoints[0].x <> 0 then
    And I don't exactly understand your question.. can you rephrase it?

  3. #3
    Join Date
    Nov 2007
    Location
    Nowhereville
    Posts
    1,155
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Thank you it worked!

    Cut em2 it
    Formerly known as Cut em2 it

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
  •