[PLUS] Timeout Cunter

Status
Not open for further replies.

C0MB4T

New Member
May 28, 2016
1
0
Hey Devbests,

I have a question.
Where in PlusEmulator do i find the counter that says "You have a timeout for ... seconds"

I want to lower this but where do i find it?
Please can someone tell me?

Best wishes,
Combat
 
Fixed.

RoomUser.cs
PHP:
      public bool IncrementAndCheckFlood(out int MuteTime)
        {
            MuteTime = 0;

            ChatSpamCount++;
            if (ChatSpamTicks == -1)
                ChatSpamTicks = 8;
            else if (ChatSpamCount >= 7)
            {
                if (GetClient().GetHabbo().GetPermissions().HasRight("events_staff"))
                    MuteTime = 3;
                else if (GetClient().GetHabbo().GetPermissions().HasRight("gold_vip"))
                    MuteTime = 5;
                else if (GetClient().GetHabbo().GetPermissions().HasRight("silver_vip"))
                    MuteTime = 10;
                else
                    MuteTime = 15;

                GetClient().GetHabbo().FloodTime = QuasarEnvironment.GetUnixTimestamp() + MuteTime;

                ChatSpamCount = 0;
                return true;
            }
            return false;
        }

I couldnt find it and then... when ur looking on mute timer and not timeout you find it!
 
Status
Not open for further replies.

Users who are viewing this thread

Top