Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Need Help Upgrading To PRODUCTION-201608171204-891546786
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="SOUL" data-source="post: 382789" data-attributes="member: 64122"><p>It's definitely your structures , replace your AvailabilityStatusComposer.cs with this code it should hopefully fix it.</p><p></p><p>[spoiler]</p><p>using System;</p><p>using System.Collections.Generic;</p><p>using System.Linq;</p><p>using System.Text;</p><p>using System.Threading.Tasks;</p><p></p><p>namespace Plus.Communication.Packets.Outgoing.Handshake</p><p>{</p><p> class AvailabilityStatusComposer : ServerPacket</p><p> {</p><p> public AvailabilityStatusComposer()</p><p> : base(ServerPacketHeader.AvailabilityStatusMessageComposer)</p><p> {</p><p> base.WriteBoolean(true);</p><p> base.WriteBoolean(true);</p><p> base.WriteBoolean(true);</p><p> }</p><p> }</p><p>}</p><p></p><p>[/spoiler]</p><p></p><p>Don't take my word for it though when updating mine I updated all my structures at once , keep in mind you will</p><p>still run in to errors as you have more structures to update you should check rival forums.</p><p></p><p>PS - Trying to learn what copy and pasting?</p></blockquote><p></p>
[QUOTE="SOUL, post: 382789, member: 64122"] It's definitely your structures , replace your AvailabilityStatusComposer.cs with this code it should hopefully fix it. [spoiler] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Plus.Communication.Packets.Outgoing.Handshake { class AvailabilityStatusComposer : ServerPacket { public AvailabilityStatusComposer() : base(ServerPacketHeader.AvailabilityStatusMessageComposer) { base.WriteBoolean(true); base.WriteBoolean(true); base.WriteBoolean(true); } } } [/spoiler] Don't take my word for it though when updating mine I updated all my structures at once , keep in mind you will still run in to errors as you have more structures to update you should check rival forums. PS - Trying to learn what copy and pasting? [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Need Help Upgrading To PRODUCTION-201608171204-891546786
Top