Plus R2 bugs

Fr4n

Active Member
Dec 30, 2012
152
44
Hello,
I've recently encountered some bugs and was hoping anyone can direct me to a fix.
Bugs:

1) Navigator Publics
2) Chat settings button (When clicked on, disconnects a user)
3) Group badge reload problem (Whenever room is reloaded or emulator restarted.)
4) Horses
I am running on: RELEASE63-201401301855-255051757
(If you aren't going to help and just bash, don't reply.)
@JayCustom @Sledmore (tagged you two because i'm sure you can lend a hand)
Any help is appreciated.
Thanks!
 

13rad

King
Sep 15, 2013
156
36
1) Run this
Code:
INSERT INTO `navigator_publics` (`id`, `ordernum`, `bannertype`, `caption`, `description`, `image`, `image_type`, `room_id`, `category_id`, `category_parent_id`, `enabled`, `recommended`, `typeofdata`, `tag`) VALUES ('1', '1', '0', 'THE CAPTION', 'THE DESCRIPTION', '/officialrooms_au/fireservices_02.png', 'internal', 'YOUR ROOM ID FROM ROOMS', '0', '0', '1', '1', '2', '');


3) Find in Group.cs
Code:
Room.Group = Group;
Add under
Code:
Room.GroupId = Group.Id;

Find in Room.cs
Code:
if(Room.GroupId > 0)
Replace the whole if(){}
Code:
if(Room.RoomData.GroupId > 0)
{
GetResponse().AppendInt32(Room.RoomData.Group.Id);
GetResponse().AppendString(Room.RoomData.Group.Name);
GetResponse().AppendString(Room.RoomData.Group.Badge);
Response.AppendString("");
}
Credits to Spotify for Groups
 

Users who are viewing this thread

Top