PlusEMU Support thread.

Status
Not open for further replies.

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
Where is the default amount of respects (10) users get? Also, can I force users to have bubble 23 just like their effect is set to 102?
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,194
3,901
Where is the default amount of respects (10) users get? Also, can I force users to have bubble 23 just like their effect is set to 102?

in Habbo.cs search for 'int DailyRespects = 10;', also you'll see that moderators get 20. VIP/subscriptions is dynamic.

Yes, you'd just probably check it on the chat event in a similar fashion. In ChatEvent.cs & ShoutEvent.cs you'd do it just under where the colour is validated.

PHP:
             if (Session.GetHabbo().GetPermissions().HasRight("mod_tool"))
                Colour = 23;

I have no idea if 23 is staff only or not, been a while.
 
  • Like
Reactions: Joe

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
in Habbo.cs search for 'int DailyRespects = 10;', also you'll see that moderators get 20. VIP/subscriptions is dynamic.

Yes, you'd just probably check it on the chat event in a similar fashion. In ChatEvent.cs & ShoutEvent.cs you'd do it just under where the colour is validated.

PHP:
             if (Session.GetHabbo().GetPermissions().HasRight("mod_tool"))
                Colour = 23;

I have no idea if 23 is staff only or not, been a while.
Works great. Ta Craig :)
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,194
3,901
So I'm currently updating to
PRODUCTION-201607262204-86871104
and I cannot enter my room. Any help?
@Sledmore @Damien

Still can't enter rooms and now when I click on cata I disconnect

I believe a boolean needs adding in AvailabilityStatusComposer.cs should look like:

PHP:
 {
    class AvailabilityStatusComposer : ServerPacket
    {
        public AvailabilityStatusComposer()
            : base(ServerPacketHeader.AvailabilityStatusMessageComposer)
        {
            base.WriteBoolean(true);
            base.WriteBoolean(false);
            base.WriteBoolean(true);
        }
    }
}
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,194
3,901
Nah, it founded up on our hotel, but atm you can pickall and fuck up rooms without room rights.

I'm pretty sure that's impossible.

The PickAllCommand has the following:

PHP:
if (!Room.CheckRights(Session, true))
                return;

So that shouldn't be possible, unless you've modified it/CheckRights method.
 

TheNotorious

Im dying slowly.
Oct 4, 2014
228
41
I'm pretty sure that's impossible.

The PickAllCommand has the following:

PHP:
if (!Room.CheckRights(Session, true))
                return;

So that shouldn't be possible, unless you've modified it/CheckRights method.
Nope. ChekRights is true.

New bug founded, maybe in db. So, when someone have VIP rank 2, they dont see catalogue, but rank 3 can show it.. Worked before.
 
Status
Not open for further replies.

Users who are viewing this thread

Top