Difference between revisions of "TPlayers.Add"
Line 2: | Line 2: | ||
NewPlayer: An instance of TNewPlayer serving as configuration object for the bot | NewPlayer: An instance of TNewPlayer serving as configuration object for the bot | ||
Result: Active instance of bot | Result: Active instance of bot | ||
− | |||
===Description=== | ===Description=== | ||
Adds a new bot to game basing on configuration from [[TNewPlayer]]. | Adds a new bot to game basing on configuration from [[TNewPlayer]]. |
Revision as of 23:54, 24 June 2013
function Add(NewPlayer: TNewPlayer): TActivePlayer NewPlayer: An instance of TNewPlayer serving as configuration object for the bot 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);
finally
NewPlayer.Free; // important!
end;
end;