TNewPlayer.Name

From Soldat Community Wiki
Jump to: navigation, search
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;