Search results

  1. c4353b8e

    EventAlert Command doesn't work

    So it was a packet error? Good to see you resolved it.
  2. c4353b8e

    Problem Hotel View [BIOS EMULADOR]

    It's inside your override variables, not normal variables. Try looking in external_override_variables.txt maybe in the override folder? Not sure if their in a separate folder for yours.
  3. c4353b8e

    Help with Ripping Furniture

    I wasn't going to answer this, but I hated seeing you get to the end and not knowing how to add them. You've probably already worked it out, but if not just place the SWF file you downloaded into your furniture folder (usually /dcr/hof_furni) and link your furnidata to it. Make sure to match the...
  4. c4353b8e

    Habbo disable diagonal help. (Plus emulator)

    I think he's trying to say that there's a command to do what you're trying to do. Just look at the code inside the command file and work out how to make it non-optional (force it). I'll help since you've probably tried something like this already. All the command seems to do is update a...
  5. c4353b8e

    Arcturus 1.13.0 - Black furni box

    This usually isn't anything to do with the emulator. This is actually your SWF (client sided) failing to load the SWF file or the images in the SWF file for that furniture. Since you aren't getting any 404 errors on your console I would say double check your sprites and ID's match up correctly...
  6. c4353b8e

    Problem Hotel View [BIOS EMULADOR]

    Your hotel view reminds me of the older R63B revisions so I'm not sure if the directory has changed, didn't really bother checking. To change the logo, modify this image, there's also more logo images in the SWF if you want to replace it everywhere, you'll have to disassemble your SWF for that...
  7. c4353b8e

    EventAlert Command doesn't work

    Without looking at your code too much, I would guess it's something to do with RoomNotificationComposer, since you said it stopped working after a revision change? ( Can you verify that, it wasn't 100% clear. ) Check your logs, and make sure that composer has the correct packet structure and...
  8. c4353b8e

    Modifying loading page

    I would ignore the above comment and code your own. Use a CSS overlay, connect to your emulator using WebSockets and have it output a packet when the users authenticated, you can actually have more control on when you want the loading screen to fade out this way, and you can design it in any way...
  9. c4353b8e

    Mod tools disappear (Plus emulator)

    EDIT: I didn't see you posted your exception file, I guess you can ignore all the stuff below. System.NullReferenceException: Object reference not set to an instance of an object means something hasn't been defined a value, usually meaning its null, most objects are usually null in C# datatypes...
  10. c4353b8e

    Clothing disconnects me when I talk Plusemulator

    I had this problem using R1 clothes on R2's FigureData mutant algorithm. For some reason, it works a little different.
  11. c4353b8e

    Client stuck at 76% Plus Emu

    Because you'll just get the same answers as the other questions. Check your ports, variables, files, chrome dev tool console window errors, etc etc. I'm just trying to save you some time & avoiding you getting your hopes up buddy. If you look at all the previous threads about this, 90% of the...
  12. c4353b8e

    Chocolatey CMS - The Habbo.com Clone

    Either change the SQL queries or adapt your database structure to the CMS's. Message me if you still need help.
  13. c4353b8e

    Client stuck at 76% Plus Emu

    What's the point in posting yet another question about this? Try everything that gets suggested in the other questions, if none of it works then you're in the same boat as that OP. You're probably going to only get answers that are the same as other questions, I can't see anything unique about...
  14. c4353b8e

    Zeus HTML5 Engine

    I can understand socket.io, personal preference and you have that special relationship since your server is in js, I like that. If I was to code a server in something like C++ or C / Objective C I would probably go for web sockets over socket io, but for JS I would probably follow in your...
  15. c4353b8e

    Zeus HTML5 Engine

    Just curious, what made you go for Socket IO instead of web sockets? I understand ws's aren't supported in a small number of environments but I would have d of thought you would have gone for them since socket IO also uses them. Also, did you just go with React as a personal choice, or did you...
  16. c4353b8e

    Ubuntu Budgie 18.04 - External monitor doesn't work

    You're connecting via HTML (Input, Ubuntu side)? Either way, you could try flipping the broken monitor's input over to HDMI/VGA/DVI (whatever you're using) if you haven't already, forcing the signal to show up. I also heard some people fixing it by re-mirroring the external monitor. Don't use...
  17. c4353b8e

    Ubuntu Budgie 18.04 - External monitor doesn't work

    Did you change your Ubuntu version when restarting, maybe you updated? I've seen a few people complain about this on AskUbuntu when using the latest LTS release. (18.04)
  18. c4353b8e

    Minimalist logging for Habbo emulators

    I know a lot of emulators use the package log4net & a few others but I've always seen it as overload, especially how emulators never really get into using even half of the functionality of that package. I put together a simple clone of what NLog does in a single class. If anybody likes writing...
  19. c4353b8e

    Machine banned fortnite.

    Thanks. C++ is a superset of C so yeah, it'll have easy access to hardware specifications. Glad you fixed it OP.
  20. c4353b8e

    Machine banned fortnite.

    MID is a generic term, it could be anything. What they've probably done is ban something like your processor ID or HDD serial. The game is probably running on a low level programming language so they'll have easy access to your hardware. Using a virtual machine is probably your best chance at...
Top