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/Framework/General/Interfaces/IClientAPI.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'OpenSim/Framework/General/Interfaces') diff --git a/OpenSim/Framework/General/Interfaces/IClientAPI.cs b/OpenSim/Framework/General/Interfaces/IClientAPI.cs index abde0ab..808a857 100644 --- a/OpenSim/Framework/General/Interfaces/IClientAPI.cs +++ b/OpenSim/Framework/General/Interfaces/IClientAPI.cs @@ -190,6 +190,7 @@ namespace OpenSim.Framework.Interfaces void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item); void SendNameReply(LLUUID profileId, string firstname, string lastname); - + void SendAlertMessage(string message); + void SendAgentAlertMessage(string message, bool modal); } } -- cgit v1.1