using System;
using System.Collections.Generic;
using Plus.HabboHotel.Users;
namespace Plus.Communication.Packets.Outgoing.Handshake
{
public class UserPerksComposer : ServerPacket
{
public UserPerksComposer(Habbo Habbo)
...
Hii
Lately i've been trying to get the helpertool working. I updated to a revision with the helper tool packets in it. It seems to work but now I want the guides to say whether they are on duty or not, but the helpertool button in the bottom toolbar doesn't show/exist. How can I make it appear...
I think all you have to do is add this line in HabboClubOffersComposer: using Plus.HabboHotel.Catalog;
If that doesnt work, hover your mouse over a variable with the type CatalogClubOffer. I don't know the last error, but I think you'll be able to fix it by hovering and click the suggested solution
I was having the same problem when I used an emulator from a tutorial. If you do so, you should download it from here: https://github.com/Sledmore/PlusEMU. Then you can save changes and click start to run :)
It works fine now :) The CatalogPageComposer apparently also checks the users currency and shows the not enough money alert if needed. Thanks for your help!
I added a condition to check the rank, but it's not working... Is this the right packet?
CatalogOfferComposer.cs
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using Plus.HabboHotel.Items;
using Plus.HabboHotel.Catalog;
using...
Hi Devbest, I've been looking for the message that tells you that you don't have enough credits. I wanted to edit it so that staff can override that message and buy stuff with not enough credits. If it was in the emulator I would just add a condition, but I found it in the Habbo.swf. I'm not...
I’m not a 100% sure but I guess you’ll have to find an event or function to pick up pets and add the - I think its called updateInventory() function. You can get to that method with Session.GetHabbo().GetInventoryComponent().UpdateInventory(). Just see what the autocompletion shows you :p
Hi there
I'm having an issue with bot movement and focus. When I place a bot in a room, the focus switches to the bot instead of my own avatar. Has anybody a fix for this?
Thank you alreadyyy!
Hiii,
I'm wondering how I can find scripts in the Habbo.swf. I want to edit the HabboActivityPointNotificationMessageComposer, but I can't find the scripts. I tried the number after the declaration in ServerPacketHeader.cs (PlusEmulator) and than tried to find the same number in the Habbo.swf...