Chat private: Difference between revisions
Jump to navigation
Jump to search
imported>Bale r8932 adds chat_macro |
imported>Bale changed in r9043 |
||
(One intermediate revision by the same user not shown) | |||
Line 19: | Line 19: | ||
}}| | }}| | ||
function_description=This function allows you to send ingame private messages through chat to | function_description=This function allows you to send ingame private messages through chat to any player.| | ||
code1={{CodeSample| | code1={{CodeSample| | ||
Line 35: | Line 35: | ||
see_also={{SeeAlso|chat_clan|chat_macro}}| | see_also={{SeeAlso|chat_clan|chat_macro}}| | ||
}} | }} | ||
[[Category:Miscellaneous Functions]] |
Latest revision as of 08:16, 15 February 2011
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 any player.
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!");
}