Difference between revisions of "Chat private"

From Kolmafia
Jump to navigation Jump to search
imported>StDoodle
m
imported>Grotfang
m
Line 19: Line 19:
 
}}|
 
}}|
  
function_description=This function allows you to send ingame private messages through chat to players.|
+
function_description=This function allows you to send ingame private messages through chat to players who are either in your clan or (if you have access to it) on your clan's whitelist.|
  
 
code1={{CodeSample|
 
code1={{CodeSample|
Line 33: Line 33:
 
}}|
 
}}|
  
see_also={{SeeAlso|chat_clan|print}}|
+
see_also={{SeeAlso|chat_clan}}|
 
}}
 
}}
{{RFI|Please see discussion page}}
 

Revision as of 01:06, 11 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 who are either in your clan or (if you have access to it) on your clan's whitelist.

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()