Difference between revisions of "Chat private"

From Kolmafia
Jump to navigation Jump to search
imported>Grotfang
(Create page - not sure which category to place it in though)
 
imported>StDoodle
m
Line 6: Line 6:
  
 
name={{#var:name}}|
 
name={{#var:name}}|
function_category=CATEGORY|
+
function_category=Uncategorized|
  
 
function1={{Function|
 
function1={{Function|

Revision as of 04:02, 10 March 2010

Function Syntax

void chat_private(string player ,string message )

  • player is the name of the player you wish to contact.
  • message is the message you wish to send them.

This function allows you to send ingame private messages through chat to players.

Code Samples

If you save this as example.ash, then type "set chatbotScript=example.ash" into the CLI, this script will log messages sent to you and reply to the sender with an away message.

void main(string sender , string message){
   print(sender + ": " + message , "green");
   chat_private(sender , "I am not here right now, but will see your message when I return. Thanks for calling!");
}

See Also

chat_clan() | print()