Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP] PLUS EMU Wired and Group Gate Bugs!!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="aqilws" data-source="post: 403810" data-attributes="member: 6838"><p>Hey! I fixed the issue!</p><p>What i did was</p><p>Below this: </p><p>[CODE] List<Group> Groups = PlusEnvironment.GetGame().GetGroupManager().GetGroupsForUser(Session.GetHabbo().Id);</p><p> if (Groups.Count >= 1500)</p><p> {</p><p> Session.SendPacket(new BroadcastMessageAlertComposer("Oops, it appears that you've hit the group membership limit! You can only join upto 1,500 groups."));</p><p> return;</p><p> }[/CODE]</p><p></p><p>I added This :</p><p>[CODE]//GROUP GATE FIX IDK testing #aqilws</p><p>Private</p><p> if (Group.GroupType == GroupType.PRIVATE)</p><p> {</p><p> Session.SendPacket(new BroadcastMessageAlertComposer("Oops, it appears that you've hit the group that is not accepting any members!"));</p><p> return;</p><p> }</p><p> //[/CODE]</p><p>Its stops users from join Private groups! </p><p>Ps. Im new still learning! So if i done any mistake correct me! It helps me to learn!</p></blockquote><p></p>
[QUOTE="aqilws, post: 403810, member: 6838"] Hey! I fixed the issue! What i did was Below this: [CODE] List<Group> Groups = PlusEnvironment.GetGame().GetGroupManager().GetGroupsForUser(Session.GetHabbo().Id); if (Groups.Count >= 1500) { Session.SendPacket(new BroadcastMessageAlertComposer("Oops, it appears that you've hit the group membership limit! You can only join upto 1,500 groups.")); return; }[/CODE] I added This : [CODE]//GROUP GATE FIX IDK testing #aqilws Private if (Group.GroupType == GroupType.PRIVATE) { Session.SendPacket(new BroadcastMessageAlertComposer("Oops, it appears that you've hit the group that is not accepting any members!")); return; } //[/CODE] Its stops users from join Private groups! Ps. Im new still learning! So if i done any mistake correct me! It helps me to learn! [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP] PLUS EMU Wired and Group Gate Bugs!!
Top