Resource:Battlefield/createSquad: Difference between revisions
Jump to navigation
Jump to search
LeetWoovie (talk | contribs) No edit summary |
LeetWoovie (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
==Purpose== | |||
Creates a squad element. [[Resource:battlefield/squad|Click here to read more about squads.]] | |||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
squad createSquad ( team | squad createSquad ( team squadTeam, string shortName ) | ||
</syntaxhighlight> | |||
===Required Arguments=== | |||
*'''squadTeam:''' The [[team]] element the squad will be attached to. | |||
*'''shortName:''' The [[Resource:battlefield/shortname|shortname]] for the squad. | |||
===Returns=== | |||
Returns the ''squad element'' if it was created, otherwise ''false''. | |||
==Function Source== | |||
<syntaxhighlight lang="lua"> | |||
function createSquad ( team, shortn ) | |||
squad = createElement ( "squad", team, shortn ) | |||
if squad then | |||
return squad | |||
else | |||
return false | |||
end | |||
end | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 13:49, 22 April 2010
Purpose
Creates a squad element. Click here to read more about squads.
Syntax
squad createSquad ( team squadTeam, string shortName )
Required Arguments
Returns
Returns the squad element if it was created, otherwise false.
Function Source
function createSquad ( team, shortn ) squad = createElement ( "squad", team, shortn ) if squad then return squad else return false end end