Difference between revisions of "TNewPlayer.ShirtColor"
(new page) |
Savage0795 (talk | contribs) |
||
Line 2: | Line 2: | ||
Access mode: RW | Access mode: RW | ||
==Description== | ==Description== | ||
− | 3-bytes hexadecimal code representing the shirt color of a bot. It's | + | 3-bytes hexadecimal code representing the shirt color of a bot. It's RGB. |
== Example == | == Example == | ||
Line 15: | Line 15: | ||
MyBot.Headgear := 0; //nothing on the head so we can see the hair | MyBot.Headgear := 0; //nothing on the head so we can see the hair | ||
MyBot.Hairstyle := 1; //cool dreadlocks | MyBot.Hairstyle := 1; //cool dreadlocks | ||
− | MyBot.Haircolor := $0000FF; // | + | MyBot.Haircolor := $0000FF; //blue hair! |
MyBot.PantsColor := $FFFFFFFF; | MyBot.PantsColor := $FFFFFFFF; | ||
MyBot.SkinColor := $FFFFFFFF; | MyBot.SkinColor := $FFFFFFFF; |
Latest revision as of 06:00, 21 August 2018
property ShirtColor: Longword Access mode: RW
Description
3-bytes hexadecimal code representing the shirt color of a bot. It's 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; //blue hair!
MyBot.PantsColor := $FFFFFFFF;
MyBot.SkinColor := $FFFFFFFF;
Players.Add(MyBot);
finally
MyBot.Free;
end;
end;