• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

2 New Effects: Staff Badge above Head [UPDATE]

Junior Spellweaver
Joined
Sep 29, 2012
Messages
112
Reaction score
9
yep, 178 is not working. as far as i remember from last night, the image for 178 isn't even in the SWF files, (correct me if im wrong, it was around 03:00) so, maybe that's the reason.
 
Joined
Apr 27, 2011
Messages
569
Reaction score
80
Save this in your album1584

Shield Retros - 2 New Effects: Staff Badge above Head [UPDATE] - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Feb 24, 2013
Messages
53
Reaction score
28
You should've download it again after the update.
EDIT: Oh well, after I posted a reply on this thread with the update. (Click) I probably forgot to edit the link in the orignal thread :p
I'll edit it asap.
 
Last edited:
Newbie Spellweaver
Joined
Dec 3, 2007
Messages
65
Reaction score
14
Re: New Effect: Staff Badge above Head

@Luminia Yeah they steal Ricardo's idea!

Then tell my why ricardo made an effect for some months ago with a staff and an expert badge over the avatar head? :blushing:


When are you all going to learn Habbo steals ideas from Retros. Retros make things better which is why people play them. Habbo has always stolen ideas from Retros. Funny they talk so much poop about them and threaten lawsuits and send DMCA notices, yet if we all shut down unexpectedly their creative department would all be fired.
 
Skilled Illusionist
Joined
Jan 23, 2012
Messages
301
Reaction score
164
This is pretty epic dude ;). Thanks
You CAN disable this, all you have to do is blacklist the enable id in the /enable command. I may do some work with this if I can find my translated phoenix source copy
 
Experienced Elementalist
Joined
Dec 16, 2012
Messages
293
Reaction score
31
NVM. Working, just forgot to clear cache etc. Anyone know how to make only rank 6 can use it in Plus R2?
 
Experienced Elementalist
Joined
Mar 2, 2013
Messages
216
Reaction score
20
@Zedd
HOW TO BLOCK THESE ENABLES TO NORMAL USERS - MERCURY EMU/PLUS R2:
- Search for ChatCommandHandler.cs and change the whole case "enable" to this one
Code:
  case "enable":                        {
                            if (!this.Session.GetHabbo().HasFuse("fuse_vip_commands") && !this.Session.GetHabbo().VIP)
                            {
                                return false;
                            }


                            int int_ = int.Parse(Params[1]);
                                if (Session.GetHabbo().Rank < 5 && (int_ == 102 || int_ == 178))
                            {
                                return false;
                            }


                            if (Params.Length == 1)
                            {
                                return true;
                            }
                            RoomUser user16 = this.Session.GetHabbo().CurrentRoom.GetRoomUserManager().GetRoomUserByHabbo(this.Session.GetHabbo().Username);
                            if (user16.RidingHorse)
                            {
                                return true;
                            }
                            if (user16.team == Team.none)
                            {
                                double num6;
                                if (user16.IsLyingDown)
                                {
                                    return true;
                                }
                                string s = Params[1];
                                if (double.TryParse(s, out num6))
                                {
                                    this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ActivateCustomEffect(int.Parse(num6.ToString()));
                                    return true;
                                }
                                SendChatMessage(this.Session, "You're pretty bad at math, '" + s + "' ain't a number, wigga.");
                            }
                            return true;
                        }
 
Skilled Illusionist
Joined
Jun 16, 2011
Messages
321
Reaction score
86
@Zedd
HOW TO BLOCK THESE ENABLES TO NORMAL USERS - MERCURY EMU/PLUS R2:
- Search for ChatCommandHandler.cs and change the whole case "enable" to this one
Code:
  case "enable":                        {
                            if (!this.Session.GetHabbo().HasFuse("fuse_vip_commands") && !this.Session.GetHabbo().VIP)
                            {
                                return false;
                            }


                            int int_ = int.Parse(Params[1]);
                                if (Session.GetHabbo().Rank < 5 && (int_ == 102 || int_ == 178))
                            {
                                return false;
                            }


                            if (Params.Length == 1)
                            {
                                return true;
                            }
                            RoomUser user16 = this.Session.GetHabbo().CurrentRoom.GetRoomUserManager().GetRoomUserByHabbo(this.Session.GetHabbo().Username);
                            if (user16.RidingHorse)
                            {
                                return true;
                            }
                            if (user16.team == Team.none)
                            {
                                double num6;
                                if (user16.IsLyingDown)
                                {
                                    return true;
                                }
                                string s = Params[1];
                                if (double.TryParse(s, out num6))
                                {
                                    this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ActivateCustomEffect(int.Parse(num6.ToString()));
                                    return true;
                                }
                                SendChatMessage(this.Session, "You're pretty bad at math, '" + s + "' ain't a number, wigga.");
                            }
                            return true;
                        }
That does not work.
 
Newbie Spellweaver
Joined
May 3, 2012
Messages
73
Reaction score
3
Why not chaning code to 201 or 203?
 
Newbie Spellweaver
Joined
Jul 29, 2014
Messages
24
Reaction score
4
Mercury fix:

case "enable":
{
if (!this.Session.GetHabbo().GotCommand("enable"))
{
return false;
}


if (Params.Length == 1)
{
return true;
}

RoomUser user16 = this.Session.GetHabbo().CurrentRoom.GetRoomUserManager().GetRoomUserByHabbo(this.Session.GetHabbo().Username);
if (user16.RidingHorse)
{
return true;
}
if (user16.team == Team.none)
{
double num6;

if (user16.IsLyingDown)
{
return true;
}
string s = Params[1];
if (!this.Session.GetHabbo().HasFuse("fuse_mod") && s.Equals("102"))
{
SendChatMessage(this.Session, "You do not have the required rank to use this Enable.");
return true;
}
if (!this.Session.GetHabbo().HasFuse("fuse_mod") && s.Equals("178"))
{
SendChatMessage(this.Session, "You do not have the required rank to use this Enable.");
return true;
}
if (double.TryParse(s, out num6))
{
this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ActivateCustomEffect(int.Parse(num6.ToString()));
return true;
}
SendChatMessage(this.Session, "You can only use numbers.");
}
return true;
}
 
Newbie Spellweaver
Joined
May 17, 2012
Messages
53
Reaction score
1
You know how to block these enables to normal users in a butterfly emulator?
 
Skilled Illusionist
Joined
Jan 23, 2012
Messages
301
Reaction score
164
You know how to block these enables to normal users in a butterfly emulator?
Replace
Code:
        internal void seteffect()
        {
            Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyEffect(int.Parse(Params[1]));
        }
With this:
Code:
        internal void seteffect()
        {
            if (Session.GetHabbo().Rank < 7 && (Params[1] == "102" || Params[1] == "178"))
                return;
            Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyEffect(int.Parse(Params[1]));
        }
 
Newbie Spellweaver
Joined
May 17, 2012
Messages
53
Reaction score
1
Replace
Code:
        internal void seteffect()
        {
            Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyEffect(int.Parse(Params[1]));
        }
With this:
Code:
        internal void seteffect()
        {
            if (Session.GetHabbo().Rank < 7 && (Params[1] == "102" || Params[1] == "178"))
                return;
            Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyEffect(int.Parse(Params[1]));
        }

Thanks for this!
 
Newbie Spellweaver
Joined
Apr 7, 2013
Messages
39
Reaction score
0
If I was to edit the Habbo on the enable badge above the head, what would the image id be to edit the image using trillix flash decompiler?
 
Initiate Mage
Joined
Nov 30, 2014
Messages
2
Reaction score
0
Yes, you edit the image. I have done so before and changed Habbo to Point and is really unique then.
 
Back
Top