Difference between revisions of "TNewPlayer.Headgear"

From Soldat Community Wiki
Jump to: navigation, search
Line 25: Line 25:
 
   end;
 
   end;
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
[[Category:TNewPlayer]]

Revision as of 18:39, 26 June 2013

property TNewPlayer.Headgear: Byte
 Acess mode: RW

Description

Number representing what a certain bot is going to wear on the head. Available values:

0: Nothing
1: Helmet
2: Hat

Example

   var
    MyBot: TNewPlayer;
  begin
    MyBot := TNewPlayer.Create;
    try
      MyBot.Name := 'Cool test bot!';
      MyBot.Team := 1;
      MyBot.Headgear := 0; //nothing on the head
      MyBot.PantsColor := $FFFFFFFF;
      MyBot.SkinColor := $FFFFFFFF;
      Players.Add(MyBot);
    finally
      MyBot.Free;
    end;
  end;