Re: Official PlusEMU - Help Thread
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
INCOLENZEN
Change the stack_height to a 0.
Run :update items and place the plant_yukka again in the room.
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
Mackors
Change the stack_height to a 0.
Run :update items and place the plant_yukka again in the room.
https://sc-cdn.scaleengine.net/i/b25...887d3f1bc9.png
Now it looks like this :-D
Official PlusEMU - Help Thread
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
Re: Official PlusEMU - Help Thread
Hello, how to remove the badge over a person?
Screenshot by Lightshot
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
INCOLENZEN
You've changed can_stack again to 1, put it back to 0 and try it again.
Quote:
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.
Quote:
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; } } }}
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
Mackors
You've changed can_stack again to 1, put it back to 0 and try it again.
It doesn't work :D
Re: Official PlusEMU - Help Thread
Anyone knows how can i Change the ''Special chat commands'' list?
Screenshot by Lightshot
Re: Official PlusEMU - Help Thread
Re: Official PlusEMU - Help Thread
Production-201602082203-712976078
Anyone have a fix for the Catalog at any chance
http://i.imgur.com/lE7JKfw.jpg
as it showing up just white boxes
Update it managed to fix it by redoing all the swfs by hand
Re: Official PlusEMU - Help Thread
How fix the group forum Plus Emulator 201602082203-712976078??
http://i.imgur.com/wdQBXDd.png
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
INCOLENZEN
bump!
Re: Official PlusEMU - Help Thread
hi all help need please
i install Production-201602082203-712976078 plus emu on vps moments ago and catalog show white boxes for all furni
can help me?
sorry for bad english
Re: Official PlusEMU - Help Thread
Quote:
Originally Posted by
Jaxtons
hi all help need please
i install Production-201602082203-712976078 plus emu on vps moments ago and catalog show white boxes for all furni
can help me?
sorry for bad english
Check your external vars
Sent from my iPad using Tapatalk