Difference between revisions of "TPlayers.Add"
m |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | '''''function | + | '''''function Add(NewPlayer: [[TNewPlayer]], JoinType: [[TJoinType]]): [[TActivePlayer]]''''' |
− | + | NewPlayer: An instance of TNewPlayer serving as configuration object for the bot | |
− | Result: | + | JoinType: Enum (TJoinNormal, TJoinSilent). Silent join will not generate message in console |
+ | Result: Active instance of bot | ||
==Description== | ==Description== | ||
− | + | Adds a new bot to game basing on configuration from [[TNewPlayer]]. | |
− | + | '''Don't forget to free TNewPlayer instance after using it!''' | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Example == | == Example == | ||
− | <syntaxhighlight lang="pascal"> | + | <syntaxhighlight lang="pascal"> |
− | begin | + | var |
− | + | NewPlayer: TNewPlayer; | |
− | + | begin | |
− | + | NewPlayer := TNewPlayer.Create; | |
− | + | try | |
− | end; | + | NewPlayer.Name := 'Test bot!'; |
+ | NewPlayer.Team := 1; // important! | ||
+ | NewPlayer.PantsColor := $FFFFFFFF; | ||
+ | NewPlayer.SkinColor := $FFFFFFFF; | ||
+ | Players.Add(NewPlayer, TJoinNormal); | ||
+ | finally | ||
+ | NewPlayer.Free; // important! | ||
+ | end; | ||
+ | end; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | [[Category: | + | [[Category:TPlayers]] |
Latest revision as of 11:08, 9 September 2016
function Add(NewPlayer: TNewPlayer, JoinType: TJoinType): TActivePlayer NewPlayer: An instance of TNewPlayer serving as configuration object for the bot JoinType: Enum (TJoinNormal, TJoinSilent). Silent join will not generate message in console Result: Active instance of bot
Description
Adds a new bot to game basing on configuration from TNewPlayer. Don't forget to free TNewPlayer instance after using it!
Example
var
NewPlayer: TNewPlayer;
begin
NewPlayer := TNewPlayer.Create;
try
NewPlayer.Name := 'Test bot!';
NewPlayer.Team := 1; // important!
NewPlayer.PantsColor := $FFFFFFFF;
NewPlayer.SkinColor := $FFFFFFFF;
Players.Add(NewPlayer, TJoinNormal);
finally
NewPlayer.Free; // important!
end;
end;