Gonna try it thanks mateI haven't worked on the old plus in awhile - so i could be wrong but try something like,
- BroadcastNotifMessageComposer
- SuperNotificationMessageComposer
Good luck.
Btw how to use this? XDI haven't worked on the old plus in awhile - so i could be wrong but try something like,
- BroadcastNotifMessageComposer
- SuperNotificationMessageComposer
Good luck.
ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer);
Notification.AppendString("Example");
PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
Alright gonna test it now thanks btwI'm guessing SuperNotificationComposer is the same thing as the broadcast alert so just use the one i provided above.Code:ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer); Notification.AppendString("Example"); PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
If it doesn't work i apologize as i haven't worked on this in awhile.
Beautiful Error "PlusEnvironment" and "Outgoing" doesnt exist in contextI'm guessing SuperNotificationComposer is the same thing as the broadcast alert so just use the one i provided above.Code:ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer); Notification.AppendString("Example"); PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
If it doesn't work i apologize as i haven't worked on this in awhile.
using Plus.Messages;
using Plus.Messages;
using Plus.Messages.Headers;
using Plus;
Error 110 The type or namespace name 'Headers' does not exist in the namespace 'Plus.Messages' (are you missing an assembly reference?) C:\Users\Fighter\Desktop\SomeEMU\Plus Emulator\HabboHotel\Misc\ChatCommandHandler.cs 18 21 PlusTry adding the following to the top of whatever file your putting it in.
Code:using Plus.Messages;
EDIT: Try adding this actually,
Code:using Plus.Messages; using Plus.Messages.Headers; using Plus;
using Plus.Communication.Packets.Outgoing.Rooms.Notifications;
Session.SendPacket(new MOTDNotificationComposer(List.ToString()));
//Session.SendPacket(new MOTDNotificationComposer(List.ToString()));
Session.SendPacket(new RoomNotificationComposer("List of commands available", List.ToString(), "plus", ""));