[FIX] One Way Gates + Diamonds [Butterstorm/Habbolatino]

JakeA

Member
Dec 15, 2012
64
8
I just noticed that one way gates don't work on Butterstorm, anyways here's a one way gates and diamonds.

One Way Gate
Open events -> Incoming.cs and search for
public static int HandleItem = 657;

After that put
public static int OneWayGate = 2505;

Open Messages -> StaticClientMessageHandler.cs and search for
handlers.Add(Incoming.HandleItem, new StaticRequestHandler(SharedPacketLib.TriggerItem));

After that put
handlers.Add(Incoming.OneWayGate, new StaticRequestHandler(SharedPacketLib.TriggerItem));

Diamonds/Crystals
Open Users -> Habbo.cs and search for
this.mClient.GetMessageHandler().GetResponse().Init(Outgoing.ActivityPoints);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(2);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(0);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(ActivityPoints);
this.mClient.GetMessageHandler().SendResponse();

Replace with
this.mClient.GetMessageHandler().GetResponse().Init(Outgoing.ActivityPoints);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(2);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(0);
this.mClient.GetMessageHandler().GetResponse().AppendInt32(ActivityPoints);
this.mClient.GetMessageHandler().GetResponse().Init(103); // Diamonds
this.mClient.GetMessageHandler().GetResponse().AppendInt32(Crystals);
this.mClient.GetMessageHandler().SendResponse();

- Done
(This is NOT for bcstorm!)
 

Creation

Member
Feb 23, 2013
134
3
I don't care about the command I rather have the bar for crystals gone. :L If you think you can help me post me on my thread. :L
 

JakeA

Member
Dec 15, 2012
64
8
I don't care about the command I rather have the bar for crystals gone. :L If you think you can help me post me on my thread. :L
I'm confused, what command? And you can remove it by making a few changes in your variables.
 

Users who are viewing this thread

Top