GetAttachedElements: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
__NOTOC__  
{{Server client function}}
__NOTOC__
This function returns a table of all the elements attached to the specified element
This function returns a table of all the elements attached to the specified element


Line 31: Line 32:
       end
       end
     end
     end
     outputConsole ( "Players attached: " .. attachedElementsList )
     outputConsole ( "Players attached to the infernus: " .. attachedElementsList )
   end
   end
</syntaxhighlight>
</syntaxhighlight>

Revision as of 12:13, 21 August 2007

This function returns a table of all the elements attached to the specified element

Syntax

table getAttachedElements ( element theElement )

Required Arguments

  • theElement: The element which you require the information from.

Returns

Returns a table of all the elements attached to the specified element.

Example

-- Print a list of all the players attached to the specified element
  Inf = getElementByID ( "infernus1" )
  attachedElements = getAttachedElements ( Inf )
  if ( attachedElements ) then -- if we got the table
    attachedElementsList = "none"
    -- Loop through the table
    for ElementKey, ElementValue in attachedElements do
      -- add their name to the list
      if ( getElementType ( ElementValue ) == "player" ) then
        if ( attachedElementsList == "none" ) then
          attachedElementsList = getClientName ( ElementValue )
        else
          attachedElementsList = attachedElementsList .. ", " .. getClientName ( ElementValue )
        end
      end
    end
    outputConsole ( "Players attached to the infernus: " .. attachedElementsList )
  end

See Also