From 0b6e332e16cd7df588d3502318a722706d78928c Mon Sep 17 00:00:00 2001 From: MW Date: Thu, 19 Jul 2007 10:44:19 +0000 Subject: Added some Alert methods to Scene , and a console command handler. So from the console to send alerts use : alert general , for a instance wide message , or use alert firstname secondname to send a alert to one user. (TODO: add region wide messages). --- OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs') diff --git a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs index 8274912..7acef97 100644 --- a/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs @@ -141,6 +141,9 @@ namespace SimpleApp public virtual void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item) { } public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname) { } + public void SendAlertMessage(string message) { } + public void SendAgentAlertMessage(string message, bool modal) { } + public virtual void SendRegionHandshake(RegionInfo regionInfo) { this.OnRegionHandShakeReply(this); -- cgit v1.1