Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by Vrop93

  1. Vrop93

    Minimail for RevCMS - Habbo theme

    Dude, back when I hosted a hotel this was a feature that I had wanted but didn't have the motivation to create. Thanks dude! :D. I will definitely use this in the future if I open a hotel :).
  2. Vrop93

    Coin Suitcase

    Not sure, but it seems you may have missed up two different queries or something. Is the INSERT INTO `furniture` (`id`, `public_name`, `item_name`, `type`, `width`, `length`, `stack_height`, `can_stack`, `can_sit`, `is_walkable`, `sprite_id`, `allow_recycle`, `allow_trade`...
  3. Vrop93

    Habbo Retro Customization

    Hey guys. I recently reopened my hotel and I had some amazing ideas client wise and most of my customization is done server wide with C#. Anyways, I am looking for some help, I am trying to enable the news option in my client because I want to packet sniff it to find out how to manipulate it to...
  4. Vrop93

    Service - command coding

    I need a command for my hotel, there are many people joining with the name "Charlie" and a bunch of numbers proceeding, I would like a command to kick all Charlies off my hotel, ban their ip('s), and then delete their accounts. The command should be called :handlecharlies I would like this for...
  5. Vrop93

    2 New Effects: Staff Badge above Head [UPDATE]

    Replace internal void seteffect() { Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyEffect(int.Parse(Params[1])); } With this: internal void seteffect() { if (Session.GetHabbo().Rank < 7 && (Params[1] == "102" ||...
  6. Vrop93

    Phoenix 3.11.0 - Fixes :)

    What's your hotel, I would love to abuse those commands you "fixed". case 75: { if (Session.GetHabbo().HasFuse("cmd_makesay")) { return false; } string text = Params[1]; TargetClient = Phoenix.GetGame().GetClientManager().GetClientByHabbo(text); class2 =...
  7. Vrop93

    Phoenix 3.11.0 - Fixes :)

    How exactly are these fixes? They break the command, this is allowing for those who DON'T have that command to use it and those who have it aren't able to use it.
  8. Vrop93

    2 New Effects: Staff Badge above Head [UPDATE]

    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
  9. Vrop93

    PlusEmu - Sayall & Eha command

    I made all of these commands for Phoenix once. :P I also did a :freezeall, and :effectall Nice Release / Snippets bro
  10. Vrop93

    Leensters emuMonitor V1.4 and emuCommander v1.2

    For emuCommander do you mean the mus commander? Anyways, here you go.. Emu Monitor - You must be registered for see element. Mus Commander - You must be registered for see element.
  11. Vrop93

    VPS Sponsor

    He totally missed the sarcasm
  12. Vrop93

    HabboUI Theme [NEW] RevCMS

    Looks nice dude. :)
  13. Vrop93

    PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Dude, how does that obey permissions? With that code you are telling it that if you don't have the permission makesay then you can run the command, that's backwords. You should omit the '!' not even that hard :P Let's just say, use your code, have a user come on and run and it will send an ha...
  14. Vrop93

    PHX (MY EDITON) | FLY | LAY | KISS | KILL | RANK | ACH | EVENT & More

    Cheers, Dude! Good to see someone is developing on that source. Love the commands, good job!!
  15. Vrop93

    What are headers...?

    Headers are another name for Packet Id's and the tell the server what to do with the information received. An example of a header would be public const short NowPlayingMessageComposer = 327;
Back
Top