Re: PlusEMU PRODUCTION-201607262204-86871104
Chatlog and Pick up cfh disconnect me :/
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Berttos
Chatlog and Pick up cfh disconnect me :/
Use the provided emulator and run the ticket/chatlog fix. It's in the main thread.
Re: PlusEMU PRODUCTION-201607262204-86871104
Yeah i know..
still the same.. :/
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Berttos
Yeah i know..
still the same.. :/
Look in your error logs and post them here. Without any error logs we can't help you.
ONT: Anyone have already the fix for the sit float?
Re: PlusEMU PRODUCTION-201607262204-86871104
Updated main post with downloadlink for the icons, furnidata and catalogue images. Also updated the PlusEMU with the chatlog fix, picking issues shouldnt disconnect anymore (it isnt here). Removed camera files, since it isnt working yet. Sitting and laying isnt floating anymore.
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Twan
Updated main post with downloadlink for the icons, furnidata and catalogue images. Also updated the PlusEMU with the chatlog fix, picking issues shouldnt disconnect anymore (it isnt here). Removed camera files, since it isnt working yet. Sitting and laying isnt floating anymore.
Disconnect at 100% :/
Quote:
Originally Posted by
Mackors
Look in your error logs and post them here. Without any error logs we can't help you.
ONT: Anyone have already the fix for the sit float?
Server doesnt show any errors..
Re: PlusEMU PRODUCTION-201607262204-86871104
How can I add custom furnis? How I get the icons for this?
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Twan
Updated main post with downloadlink for the icons, furnidata and catalogue images. Also updated the PlusEMU with the chatlog fix, picking issues shouldnt disconnect anymore (it isnt here). Removed camera files, since it isnt working yet. Sitting and laying isnt floating anymore.
What is the fix for the floating? I edited the emulator a little bit, so if i download again i need to change everything again. Can you post the sit & lay fix code apart?
Quote:
Originally Posted by
Berttos
Disconnect at 100% :/
Server doesnt show any errors..
I think some packets on your production are incomplete. I suggest you to use the production on this thread, because it works full.
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Twan
Updated main post with downloadlink for the icons, furnidata and catalogue images. Also updated the PlusEMU with the chatlog fix, picking issues shouldnt disconnect anymore (it isnt here). Removed camera files, since it isnt working yet. Sitting and laying isnt floating anymore.
What changed? Didn't find anything.
Re: PlusEMU PRODUCTION-201607262204-86871104
Another Problem.. :D
catalogue->search items->click->disconnects
roomads
saved a wrong url.
my images: http://url/pic.png
safed: https://url/pic.png
any fixes?
Re: PlusEMU PRODUCTION-201607262204-86871104
https://sc-cdn.scaleengine.net/i/b01...845b6acdc2.png
How can I fix this? I know I have to change the packet id or something else, but idk?
ty if u can help
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
INCOLENZEN
This problem is because, AvatarAspectUpdateMessageComposer is missing.
That is why it is not updating, after relog it will update your look in the menu.
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Mackors
This problem is because, AvatarAspectUpdateMessageComposer is missing.
That is why it is not updating, after relog it will update your look in the menu.
And how I can fix this, that it will update instantly?
@Sicily94 - your pm folder is full, I cant answer!
Re: PlusEMU PRODUCTION-201607262204-86871104
Look fix instantly in menu bar:
ServerPacketHeader.cs
PHP Code:
public const int AvatarAspectUpdateMessageComposer = 3283;
Go now to Plus > Communication > Packets > Outgoing > Rooms > Engine
Create a new file, name it AvatarAspectUpdateMessageComposer.cs
Add this:
PHP Code:
using System;
using System.Linq;
using System.Text;
using Plus.HabboHotel.Rooms;
using Plus.HabboHotel.GameClients;
namespace Plus.Communication.Packets.Outgoing.Rooms.Engine
{
class AvatarAspectUpdateMessageComposer : ServerPacket
{
public AvatarAspectUpdateMessageComposer(string Figure, string Gender)
: base(ServerPacketHeader.AvatarAspectUpdateMessageComposer)
{
base.WriteString(Figure);
base.WriteString(Gender);
}
}
}
Go to UpdateFigureDataEvent and search for this:
PHP Code:
PlusEnvironment.GetGame().GetAchievementManager().ProgressAchievement(Session, "ACH_AvatarLooks", 1);
Below it, you need to add this:
PHP Code:
Session.SendMessage(new AvatarAspectUpdateMessageComposer(Look, Gender));
I'm not really sure or the packet ID 3823 is the right one.
Re: PlusEMU PRODUCTION-201607262204-86871104
Quote:
Originally Posted by
Mackors
Look fix instantly in menu bar:
ServerPacketHeader.cs
PHP Code:
public const int AvatarAspectUpdateMessageComposer = 3283;
Go now to Plus > Communication > Packets > Outgoing > Rooms > Engine
Create a new file, name it AvatarAspectUpdateMessageComposer.cs
Add this:
PHP Code:
using System; using System.Linq; using System.Text;
using Plus.HabboHotel.Rooms; using Plus.HabboHotel.GameClients;
namespace Plus.Communication.Packets.Outgoing.Rooms.Engine { class AvatarAspectUpdateMessageComposer : ServerPacket { public AvatarAspectUpdateMessageComposer(string Figure, string Gender) : base(ServerPacketHeader.AvatarAspectUpdateMessageComposer) { base.WriteString(Figure); base.WriteString(Gender);
} } }
Go to UpdateFigureDataEvent and search for this:
PHP Code:
PlusEnvironment.GetGame().GetAchievementManager().ProgressAchievement(Session, "ACH_AvatarLooks", 1);
Below it, you need to add this:
PHP Code:
Session.SendMessage(new AvatarAspectUpdateMessageComposer(Look, Gender));
I'm not really sure or the packet ID 3823 is the right one.
If I use packet ID 3283 - it doesnt update. But if I am using packet ID 3823 and change my look, the client is disconnecting me. What I've to do now? :D