Difference between revisions of "BotChat"

From Soldat Community Wiki
Jump to: navigation, search
m (Formatted code)
 
Line 1: Line 1:
 
===Scripting Manual===
 
===Scripting Manual===
  ''procedure BotChat(ID: byte; Text: string);''
+
  ''procedure BotChat(ID: Byte; Text: string);''
 
   
 
   
 
  '''Parameter Info:'''
 
  '''Parameter Info:'''
 
   ID (Byte): ID of the bot (Also works on human players)
 
   ID (Byte): ID of the bot (Also works on human players)
   Text (String): Text for the bot to speak.
+
   Text (string): Text for the bot to speak.
 
   
 
   
 
  '''Description:'''
 
  '''Description:'''
Line 13: Line 13:
 
<source lang="pascal">   
 
<source lang="pascal">   
 
begin
 
begin
   BotChat(1,'Oogie boogie I come to you from beyond the grave!');
+
   BotChat(1, 'Oogie boogie I come to you from beyond the grave!');
 
end;
 
end;
 
</source>
 
</source>
  
 
[[Category:Server Scripting]][[Category:Server Scripting Functions]]
 
[[Category:Server Scripting]][[Category:Server Scripting Functions]]

Latest revision as of 17:22, 10 September 2012

Scripting Manual

procedure BotChat(ID: Byte; Text: string);

Parameter Info:
 ID (Byte): ID of the bot (Also works on human players)
 Text (string): Text for the bot to speak.

Description:
 This function will make a bot say something! They are alive!
 Note that as of Soldatserver 2.7.3 this will also work on human players, it is called BotChat for compatibility with older scripts.

Examples

  
begin
  BotChat(1, 'Oogie boogie I come to you from beyond the grave!');
end;