Brad Well-Known Member Jun 5, 2012 2,320 993 Aug 26, 2013 #1 hey how would i change the Floodtime on swiftemu?
Damon Member Aug 13, 2012 364 114 Aug 26, 2013 #2 Edit emulator using Visual Studio... Go to Butterfly > Messages > GameClientMessageHandler.cs Search for: [CTRL F] Code: if (((span.Seconds < 4) && (this.FloodCount > 5)) && (this.Session.GetHabbo().Rank < 5)) Now replace that above code with: Code: if (((span.Seconds < 4) && (this.FloodCount > 10)) && (this.Session.GetHabbo().Rank < 5)) Notice the only thing that was changed was the value of "(this.FloodCount > 5)) " Change into any number you think that be good, but 10 worked fine for me. It stops flood how i'd want it. Upvote 0 Downvote
Edit emulator using Visual Studio... Go to Butterfly > Messages > GameClientMessageHandler.cs Search for: [CTRL F] Code: if (((span.Seconds < 4) && (this.FloodCount > 5)) && (this.Session.GetHabbo().Rank < 5)) Now replace that above code with: Code: if (((span.Seconds < 4) && (this.FloodCount > 10)) && (this.Session.GetHabbo().Rank < 5)) Notice the only thing that was changed was the value of "(this.FloodCount > 5)) " Change into any number you think that be good, but 10 worked fine for me. It stops flood how i'd want it.