New UI?

Status
Not open for further replies.

Zenuyasha

</Dev>
Dec 5, 2016
170
48
Heya! I need some help to make old UI become new UI to make this
Ocirh3m.png

looks like this thanks guys Ily
7cSmVeM.png
 

Zenuyasha

</Dev>
Dec 5, 2016
170
48
I haven't worked on the old plus in awhile - so i could be wrong but try something like,
- BroadcastNotifMessageComposer
- SuperNotificationMessageComposer

Good luck.
Gonna try it thanks mate :)
 
I 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? XD
 
May 1, 2015
467
152
Code:
ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer);
Notification.AppendString("Example");
PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
I'm guessing SuperNotificationComposer is the same thing as the broadcast alert so just use the one i provided above.
If it doesn't work i apologize as i haven't worked on this in awhile.
 

Zenuyasha

</Dev>
Dec 5, 2016
170
48
Code:
ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer);
Notification.AppendString("Example");
PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
I'm guessing SuperNotificationComposer is the same thing as the broadcast alert so just use the one i provided above.
If it doesn't work i apologize as i haven't worked on this in awhile.
Alright gonna test it now thanks btw
 
Code:
ServerMessage Notification = new ServerMessage(Outgoing.BroadcastNotifMessageComposer);
Notification.AppendString("Example");
PlusEnvironment.GetGame().GetClientManager().QueueBroadcaseMessage(Notification);
I'm guessing SuperNotificationComposer is the same thing as the broadcast alert so just use the one i provided above.
If it doesn't work i apologize as i haven't worked on this in awhile.
Beautiful Error "PlusEnvironment" and "Outgoing" doesnt exist in context
 
May 1, 2015
467
152
Try 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;
 

Zenuyasha

</Dev>
Dec 5, 2016
170
48
Try 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;
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 Plus
 

Quackster

a devbest user says what
Aug 22, 2010
1,763
1,234
Go to \HabboHotel\Rooms\Chat\Commands\CommandManager.ms

Add

Code:
using Plus.Communication.Packets.Outgoing.Rooms.Notifications;

At the top, and then go to line 80 and find

Code:
Session.SendPacket(new MOTDNotificationComposer(List.ToString()));

Replace it with this

Code:
                //Session.SendPacket(new MOTDNotificationComposer(List.ToString()));

                Session.SendPacket(new RoomNotificationComposer("List of commands available", List.ToString(), "plus", ""));
 
Status
Not open for further replies.

Users who are viewing this thread

Top