Difference between revisions of "TNewPlayer.Name"
(→Example) |
m (→Example) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | '''''property | + | '''''property Name: string''''' |
− | + | Access mode: RW | |
==Description== | ==Description== | ||
Name of the bot. | Name of the bot. | ||
Line 15: | Line 15: | ||
MyBot.PantsColor := $FFFFFFFF; | MyBot.PantsColor := $FFFFFFFF; | ||
MyBot.SkinColor := $FFFFFFFF; | MyBot.SkinColor := $FFFFFFFF; | ||
− | Players.Add(MyBot); | + | Players.Add(MyBot, TJoinNormal); |
finally | finally | ||
MyBot.Free; | MyBot.Free; | ||
Line 22: | Line 22: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | [[Category: TNewPlayer]] | + | [[Category:TNewPlayer]] |
Latest revision as of 16:12, 9 June 2018
property Name: string Access mode: RW
Description
Name of the bot.
Example
var
MyBot: TNewPlayer;
begin
MyBot := TNewPlayer.Create;
try
MyBot.Name := 'Mr. Vanilla Milkshake'; //here it is!
MyBot.Team := 1;
MyBot.PantsColor := $FFFFFFFF;
MyBot.SkinColor := $FFFFFFFF;
Players.Add(MyBot, TJoinNormal);
finally
MyBot.Free;
end;
end;