Removing something from the latest UI [Silverwave Emulator]

Techie

Member
Aug 22, 2012
129
6
Is there a way to remove the previous and next room buttons at the bottom left on the latest UI I know it can be done by changing the style of the client (If anyone knows that way please comment) but is there a way of disabling it with the same client design if you do not know what i mean look below

This is crucially needed because im making a RP
uHkkLdB.png
How to disable these two buttons (Or better.. remove them)

Edit: Is there a way i can make it call the command :taxi (Edit the function) not just remove it completely. It seems useful for other resources rather than just remove it.
 
Last edited:

Techie

Member
Aug 22, 2012
129
6
Alrite so i took your advice and got the packet Id [1229]

In ClientPacketHeader.cs
Code:
// Room Connection
public const int OpenFlatConnectionMessageEvent = 1229; //akl

Also found this in Events.cs
Code:
internal static int LoadFirstRoomData = 1229;//akl

So i Found the packet handler
Code:
public void RegisterRoomConnection()
        {
            this._incomingPackets.Add(ClientPacketHeader.OpenFlatConnectionMessageEvent, new OpenFlatConnectionEvent());
        }

So when i edit that function the function "OpenFlatConnectionEvent" It stops the PrepareRoomForUser function and displays a black screen even when just changing rooms in the navigator.
 

Users who are viewing this thread

Top