How do u edit rank permissions and etc on this?
like were I can edit user flood time and etc
Printable View
How do u edit rank permissions and etc on this?
like were I can edit user flood time and etc
Not sure what you mean by edit rank permissions. (do you mean the table fuse_cmds?)
But you can change the flood time in Silverwave -> Messages -> GameClientMessageHandler -> Rooms.cs (line 870)
Packet.AppendInt32(30); //Blocked for 30sec
@Matata What is it that I change...
PHP Code:}
TimeSpan SinceLastMessage = DateTime.Now - FloodTime;
if (SinceLastMessage.Seconds > 4)
FloodCount = 0;
if (SinceLastMessage.Seconds < 4 && FloodCount > 5 && Session.GetHabbo().Rank < 5)
{
Session.GetHabbo().FloodTime = SilverwaveEnvironment.GetUnixTimestamp() + 30;
ServerMessage Packet = new ServerMessage(Outgoing.FloodFilter);
Packet.AppendInt32(30); //Blocked for 30sec
User.GetClient().SendMessage(Packet);
return;
}