2 New Effects: Staff Badge above Head [UPDATE]

Liam

discord.gg/hivehub
Staff member
FindRetros Moderator
Apr 10, 2013
1,184
714
Hi DevBest,

Habbo uploaded 2 new effects:
go0pEn3.png

or

Download:


Download includes:
- 2 SWF files: hh_human_fx.swf & hh_human_50_fx.swf

How to use?
Put these files in your Habbo.swf folder, replace the orignal ones with these, clear your cache, reload your hotel and say :enable 102 and :enable 178

Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;) Or add in your emulator that only ranked users can use this enable number.

Enjoy it!

I found this on a rival forum, all credits go to Shield Retros from RZ.
 
Last edited:

Jaden

not so active
Aug 24, 2014
886
263
Hi DevBest,

Habbo uploaded 2 new effects:
go0pEn3.png

or

Download:


Download includes:
- 2 SWF files: hh_human_fx.swf & hh_human_50_fx.swf

How to use?
Put these files in your Habbo.swf folder, replace the orignal ones with these, clear your cache, reload your hotel and say :enable 102 and :enable 178

Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;) Or add in your emulator that only ranked users can use this enable number.

Enjoy it!

I found this on a rival forum, all credits go to Shield Retros from RZ.

This is for plus if you want users not to be able to use this
Replace your enable command with... :
Code:
                #region :enable
                case "enable":
                    {
                        string EffectID = Params[1];
                        if (user.GetClient().GetHabbo().Rank > 4)
                          {
                            if (Session.GetHabbo().Rank > 5 && EffectID == "178" || EffectID == "102")
                            {
                                return true;
                            }
                            else
                            {
                                user.ApplyEffect(Convert.ToInt32(EffectID));
                            }
                        }
                        return true;
                    }
                #endregion
Note: Change (Session.GetHabbo().Rank > 5) Change 5 to whatever min rank you have to be to apply this effect!
P.S Just ask if you want this command for Phoenix i couldn't bare to open it atm
 

Jaden

not so active
Aug 24, 2014
886
263
For Phoenix:
This isn't complicated at all :) (This time)
Replace your case 11: (Enable task) with this...

Code:
                    case 11:
                        if (Session.GetHabbo().HasFuse("cmd_enable"))
                        {
                            int int_ = int.Parse(Params[1]);
                            if (Session.GetHabbo().Rank > 5 && int_ == 102 || int_ == 178)
                            {
                                Session.SendNotif("You are not allowed to preform this enable.");
                                return true;
                            }
                            else
                            {
                                Session.GetHabbo().method_24().method_2(int_, true);
                                Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
                            }
                            return true;
                        }
                        return false;

Only Difference is that this one sends you a notification when you trying that effect!
 

x5Abrahamx5

Member
Jan 25, 2014
62
5
This is for plus if you want users not to be able to use this
Replace your enable command with... :
Code:
                #region :enable
                case "enable":
                    {
                        string EffectID = Params[1];
                        if (user.GetClient().GetHabbo().Rank > 4)
                          {
                            if (Session.GetHabbo().Rank > 5 && EffectID == "178" || EffectID == "102")
                            {
                                return true;
                            }
                            else
                            {
                                user.ApplyEffect(Convert.ToInt32(EffectID));
                            }
                        }
                        return true;
                    }
                #endregion
Note: Change (Session.GetHabbo().Rank > 5) Change 5 to whatever min rank you have to be to apply this effect!
P.S Just ask if you want this command for Phoenix i couldn't bare to open it atm
Where is that file located?
 

x5Abrahamx5

Member
Jan 25, 2014
62
5
This is for plus if you want users not to be able to use this
Replace your enable command with... :
Code:
                #region :enable
                case "enable":
                    {
                        string EffectID = Params[1];
                        if (user.GetClient().GetHabbo().Rank > 4)
                          {
                            if (Session.GetHabbo().Rank > 5 && EffectID == "178" || EffectID == "102")
                            {
                                return true;
                            }
                            else
                            {
                                user.ApplyEffect(Convert.ToInt32(EffectID));
                            }
                        }
                        return true;
                    }
                #endregion
Note: Change (Session.GetHabbo().Rank > 5) Change 5 to whatever min rank you have to be to apply this effect!
P.S Just ask if you want this command for Phoenix i couldn't bare to open it atm
Can I have the command for phoenix?
 

Latinus

"Not everything that shines is Gold"
Jan 2, 2012
74
8
Hey does this work for Phoenix Emulator?
I mean habbo retros that are r63 version??
 

Jaden

not so active
Aug 24, 2014
886
263
Can you give the command for Mercury?
Welp if you insist !
o wait i already did.
Code:
                #region :enable
                case "enable":
                    {
                        string EffectID = Params[1];
                        if (user.GetClient().GetHabbo().Rank > 4)
                          {
                            if (Session.GetHabbo().Rank > 5 && EffectID == "178" || EffectID == "102")
                            {
                                return true;
                            }
                            else
                            {
                                user.ApplyEffect(Convert.ToInt32(EffectID));
                            }
                        }
                        return true;
                    }
                #endregion
 

Stevee

Posting Freak
Mar 29, 2011
580
35
Note the command for plus doesn't work with mercury - if you need a mercury one you've gotta do it yourself.
 

Users who are viewing this thread

Top