Difference between revisions of "TNewPlayer.HairColor"

From Soldat Community Wiki
Jump to: navigation, search
(Created page with " '''''property TNewPlayer.HairColor: Longword''''' Acess mode: RW ==Description== Hexadecimal color code representing the hair color of a bot. 3 bytes long, '''BGR''' == Ex...")
 
(Description)
Line 2: Line 2:
 
   Acess mode: RW
 
   Acess mode: RW
 
==Description==
 
==Description==
Hexadecimal color code representing the hair color of a bot. 3 bytes long, '''BGR'''
+
3-bytes hexadecimal code representing the hair color of a bot. It's '''BGR''', not RGB.
  
 
== Example ==
 
== Example ==

Revision as of 17:16, 26 June 2013

property TNewPlayer.HairColor: Longword
 Acess mode: RW

Description

3-bytes hexadecimal code representing the hair color of a bot. It's BGR, not RGB.

Example

   var
    MyBot: TNewPlayer;
  begin
    MyBot := TNewPlayer.Create;
    try
      MyBot.Name := 'Cool test bot!';
      MyBot.Team := 1;
      MyBot.Headgear := 0; //nothing on the head so we can see the hair
      MyBot.Hairstyle := 1; //cool dreadlocks
      MyBot.Haircolor := $0000FF; //red hair!
      MyBot.PantsColor := $FFFFFFFF;
      MyBot.SkinColor := $FFFFFFFF;
      Players.Add(MyBot);
    finally
      MyBot.Free;
    end;
  end;