TNewPlayer.Name

From Soldat Community Wiki
Revision as of 17:55, 26 June 2013 by Squiddy (talk | contribs) (Created page with " '''''property TNewPlayer.Name''''' Acess mode: RW ==Description== Name of the bot. == Example == <syntaxhighlight lang="pascal"> var MyBot: TNewPlayer; begin ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
property TNewPlayer.Name
 Acess 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.Headgear := 0; //nothing on the head
      MyBot.PantsColor := $FFFFFFFF;
      MyBot.SkinColor := $FFFFFFFF;
      Players.Add(MyBot);
    finally
      MyBot.Free;
    end;
  end;