PlusEMU Groups

Matthewza

Posting Freak
Apr 20, 2012
777
77
Does anybody have a fix for PLUSEMU groups? I basically have to restart the EMU for the groups to show in rooms, Does anybody have a fix for this. @Sledmore
 

Noman

lol
Jul 17, 2011
225
166
Go to Groups.cs
Then change in PurchaseGroup() in Groups.cs line 159
PHP:
 Response.Init(Outgoing.SerializeGroupRoom);
            Response.AppendInt32(RoomId);
            Response.AppendInt32(Group.Id);
            SendResponse();
To:
PHP:
Room mRoom = SilverwaveEnvironment.GetGame().GetRoomManager().GetRoom(RoomId);
if(mRoom != null){
            Response.Init(Outgoing.SerializeGroupRoom);
            Response.AppendInt32(Group.RoomId);
            Response.AppendInt32(Group.Id);
            mRoom.SendMessage(Response);// newfix
}
That should fix your issue.
 

Users who are viewing this thread

Top