diff options
Added some Alert methods to Scene , and a console command handler. So from the console to send alerts use : alert general <message> , for a instance wide message , or use alert firstname secondname <message> to send a alert to one user. (TODO: add region wide messages).
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleApp/MyNpcCharacter.cs | 3 |
1 files changed, 3 insertions, 0 deletions
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 | |||
141 | public virtual void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item) { } | 141 | public virtual void SendInventoryItemDetails(LLUUID ownerID, LLUUID folderID, InventoryItemBase item) { } |
142 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname) { } | 142 | public virtual void SendNameReply(LLUUID profileId, string firstname, string lastname) { } |
143 | 143 | ||
144 | public void SendAlertMessage(string message) { } | ||
145 | public void SendAgentAlertMessage(string message, bool modal) { } | ||
146 | |||
144 | public virtual void SendRegionHandshake(RegionInfo regionInfo) | 147 | public virtual void SendRegionHandshake(RegionInfo regionInfo) |
145 | { | 148 | { |
146 | this.OnRegionHandShakeReply(this); | 149 | this.OnRegionHandShakeReply(this); |