Aren't able to change name - Swift emulator
Good evening. Have got an problem with changing and verifying the names on my hotel. After going trough the changing name process, the users has to verify their name by click either "OK" or "Cancel". If they try to click "OK" nothing happens. Like nothing, no errors in the emulator, no d/c, no error message, just nothing.
Anyone got an idea what's wrong?
Beforehand, thanks for the support :thumbup1:
Re: Aren't able to change name - Swift emulator
It's a error in the script, but i fixed it.
Quote:
Go to ./Messages/StaticMessageHandler/StaticClientMessageHandler.cs and find it:
Code:
handlers.Add(Incoming.SaveNameChange, new StaticRequestHandler(SharedPacketLib.SaveMannequinName));
And change this to:
Code:
handlers.Add(Incoming.SaveNameChange, new StaticRequestHandler(SharedPacketLib.SaveNameToChange));
Now go to ./Messages/StaticMessageHandler/SharedPacketLib.cs and add this:
Code:
internal static void SaveNameToChange(GameClientMessageHandler handler)
{
handler.SaveNameToChange();
}
Sorry for my bad English. I'm Dutch.
Edit:
When you change this you can't save the look/name of a mannequin, but i look for a fix.
Re: Aren't able to change name - Swift emulator