
Originally Posted by
INCOLENZEN
Now it looks like this :-D
You've changed can_stack again to 1, put it back to 0 and try it again.

Originally Posted by
Marcois
Hello guys need help updating the production to new habbo production can someone send me a link of a plus emu with new production?
Sent from my iPad using Tapatalk
Look at the Habbo Release section, there are a couple of new productions.
Take the one that's the best for you, and if you have trouble with set it up let me know.

Originally Posted by
kimdaastrup
That's a enable effect. With the enable command you can turn it off.
If you need a remove badge command, use this command. @spreedblood made this:
PHP Code:
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using Plus.HabboHotel.GameClients;
using Plus.Communication.Packets.Outgoing.Inventory.Badges;
namespace Plus.HabboHotel.Rooms.Chat.Commands.Moderator
{
class TakeBadgeCommand : IChatCommand
{
public string PermissionRequired
{
get { return "command_take_badge";
}
}
public string Parameters
{ get
{ return "%badge%";
}
}
public string Description
{ get
{ return "Take badge from specific user.";
} }
public void Execute(GameClient Session, Room Room, string[] Params)
{
if (Params.Length != 3)
{
Session.SendWhisper("Please enter a username and the code of the badge you'd like to take!");
return; }
GameClient TargetClient = PlusEnvironment.GetGame().GetClientManager().GetClientByUsername(Params[1]);
if (TargetClient != null) {
if (TargetClient.GetHabbo().GetBadgeComponent().HasBadge(Params[2]))
{ TargetClient.GetHabbo().GetBadgeComponent().RemoveBadge(Params[2]);
if (TargetClient.GetHabbo().Id != Session.GetHabbo().Id) TargetClient.SendMessage(new BadgesComposer(Session));
else Session.SendWhisper("You have successfully removed the badge " + Params[2] + " from yourself!");
TargetClient.SendMessage(new BadgesComposer(TargetClient));
}
else
Session.SendWhisper("Oops, that user doesn't have this badge (" + Params[2] + ") !"); return;
} else
{ Session.SendWhisper("Oops, we couldn't find that target user!"); return; } } }}