2 New Effects: Staff Badge above Head [UPDATE]

Page 1 of 2 12 LastLast
Results 1 to 25 of 42
  1. #1
    Proficient Member Shield Retros is offline
    MemberRank
    Mar 2013 Join Date
    194Posts

    2 New Effects: Staff Badge above Head [UPDATE]

    Hi RageZone,

    Habbo uploaded 2 new effects:

    or http://prntscr.com/4ne2ud

    Download:
    - MediaFire

    Download includes:
    - 2 SWF files: hh_human_fx.swf & hh_human_50_fx.swf

    How to use?
    Put these files in your Habbo.swf folder, replace the orignal ones with these, clear your cache, reload your hotel and say :enable 102 and :enable 178

    Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;) Or add in your emulator that only ranked users can use this enable number.

    Enjoy it!

    Greetings,
    Shield
    Last edited by Shield Retros; 21-09-14 at 01:59 PM. Reason: New download link


  2. #2
    ignition sequence start Unphased is offline
    MemberRank
    Jul 2012 Join Date
    DeniedLocation
    1,860Posts

    Re: New Effect: Staff Badge above Head

    This is pretty cool, I like it :)

  3. #3
    Ragezone Furni Releaser maartenvn is offline
    MemberRank
    Dec 2012 Join Date
    Ragezone WorldLocation
    928Posts

    Re: New Effect: Staff Badge above Head

    Easy to find a staff in a room.

  4. #4
    Apprentice Heroic1923 is offline
    MemberRank
    Sep 2014 Join Date
    5Posts

    Re: New Effect: Staff Badge above Head

    Nice mooi geript shield :)

    -------------------------------------------------------

    Nice cool ripped shield

  5. #5
    Enthusiast AreFlame is offline
    MemberRank
    May 2014 Join Date
    26Posts

    Re: New Effect: Staff Badge above Head

    Thank you very much, is all the old effects before this new effect included to?

  6. #6
    Still alive. Luminia is offline
    MemberRank
    Apr 2013 Join Date
    Out of SpaceLocation
    1,146Posts

    Re: New Effect: Staff Badge above Head

    @Weebz, do you think the same like me?

    ---

    Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;)


    // You can also change in your emulator that this number isn't able to use for not ranked users.

  7. #7
    Furnibuilder creator MovieGuy is offline
    MemberRank
    Jul 2012 Join Date
    NLLocation
    245Posts

    Re: New Effect: Staff Badge above Head

    Quote Originally Posted by Luminia View Post
    @Weebz, do you think the same like me?

    ---

    Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;)


    // You can also change in your emulator that this number isn't able to use for not ranked users.
    Yep they ripped it from Weebz (I'm Ricardo, you know me)

  8. #8
    Member Weards is offline
    MemberRank
    May 2012 Join Date
    BrazilLocation
    53Posts

    Re: New Effect: Staff Badge above Head

    It's a great release, the only problem is you cannot restrict it to staffs.

  9. #9
    Hello there RetroPiggy is offline
    MemberRank
    Aug 2013 Join Date
    UKLocation
    288Posts

    Re: New Effect: Staff Badge above Head

    Thanks for this, Ill give it a try :)

  10. #10
    Proficient Member uhHab is offline
    MemberRank
    Nov 2013 Join Date
    164Posts

    Re: New Effect: Staff Badge above Head

    This is cool, but anybody will be able to use this enable.

  11. #11
    ~|=_=|~ Receiver is offline
    MemberRank
    Sep 2013 Join Date
    PlutoLocation
    624Posts

    Re: New Effect: Staff Badge above Head

    Thanks for the nice and quick release.

  12. #12
    Developer & Designer Francis Joseph is offline
    MemberRank
    Mar 2007 Join Date
    /f282Location
    246Posts

    Re: New Effect: Staff Badge above Head

    Good release and come on guys?! a simple IF Statement would stop certain users from using the enable. :)

  13. #13
    Account Upgraded | Title Enabled! streamhotel is offline
    MemberRank
    Apr 2012 Join Date
    EarthLocation
    511Posts

    Re: New Effect: Staff Badge above Head

    You can also make a return if the user say :enable 102 and not have a rank higher then 4 for example.

  14. #14
    Proficient Member Shield Retros is offline
    MemberRank
    Mar 2013 Join Date
    194Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    UPDATE: New Effect:


    Download:
    - MediaFire

    All info is in the thread ;)

  15. #15
    Gladius tehDrunk is offline
    MemberRank
    Mar 2013 Join Date
    216Posts

    Re: New Effect: Staff Badge above Head

    Quote Originally Posted by Luminia View Post
    @Weebz, do you think the same like me?

    ---

    Ps. It's quite annoying for the hotels where normal users can use the enable command. You can change or delete the badge in your SWF Decompiler ;)


    // You can also change in your emulator that this number isn't able to use for not ranked users.
    Yes but i was trying to do that in GTE and it wont work :P

    @edit
    I liked the first one, probably i'll use that If I fix the restrict enable to staffs... thank you

  16. #16
    Account Upgraded | Title Enabled! Imagician is offline
    MemberRank
    Sep 2010 Join Date
    244Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    To fix it in GTE search for:

    case 11:
    if (Session.GetHabbo().HasFuse("cmd_enable"))
    {
    int int_ = int.Parse(Params[1]);
    Session.GetHabbo().GetEffectsInventoryComponent().method_2(int_, true);
    GoldTree.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
    return true;
    }
    return false;

    and replace it with:

    case 11:
    if (Session.GetHabbo().HasFuse("cmd_enable"))
    {
    int int_ = int.Parse(Params[1]);

    if (Session.GetHabbo().Rank < 5 && (int_ == 102 || int_ == 178))
    return false;
    else
    Session.GetHabbo().GetEffectsInventoryComponent().method_2(int_, true);
    GoldTree.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
    return true;
    }
    return false;

    Regards, Imagician.

  17. #17
    Gladius tehDrunk is offline
    MemberRank
    Mar 2013 Join Date
    216Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    Quote Originally Posted by Imagician View Post
    To fix it in GTE search for:

    case 11:
    if (Session.GetHabbo().HasFuse("cmd_enable"))
    {
    int int_ = int.Parse(Params[1]);
    Session.GetHabbo().GetEffectsInventoryComponent().method_2(int_, true);
    GoldTree.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
    return true;
    }
    return false;

    and replace it with:

    case 11:
    if (Session.GetHabbo().HasFuse("cmd_enable"))
    {
    int int_ = int.Parse(Params[1]);

    if (Session.GetHabbo().Rank < 5 && (int_ == 102 || int_ == 178))
    return false;
    else
    Session.GetHabbo().GetEffectsInventoryComponent().method_2(int_, true);
    GoldTree.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);
    return true;
    }
    return false;

    Regards, Imagician.

    AWESOME!
    Ty! ;)

    @edit
    Still not working, the enables dont appear
    Last edited by tehDrunk; 17-09-14 at 05:38 PM.

  18. #18
    Member SuklaaVene is offline
    MemberRank
    Jul 2014 Join Date
    85Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    I like that staff badge. Made some code to my emulator make effects possible blacklist and override with permission :)



    Imagician code is bit noob. That block thing should do inside Effects Inventory Component method_2, because they can somehow get that to their effects inventory and then they can use it.

  19. #19
    Valued Member Tico Triest is offline
    MemberRank
    Sep 2012 Join Date
    The NetherlandsLocation
    112Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    Might as well share my code for Butterstorm, Swift and Butterfly.

    Go to Chatcommandhandler.cs

    Search for enable

    replace that void with this:


    Code:
       internal void enable()
            {
               
                   Room currentRoom = this.Session.GetHabbo().CurrentRoom;
                  int effectId = int.Parse(this.Params[1]);
                if (Session.GetHabbo().Rank < 5 && (effectId == 102 || effectId == 178))
    
                this.Session.SendNotif("You do not have enough permissions to use this effect!");
                    
                    else
                       this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyCustomEffect(effectId);
            }
    Greetings!

  20. #20
    Apprentice Reagn0x is offline
    MemberRank
    Nov 2011 Join Date
    11Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    The 102 work but not the 178, any ideas ?


    Thanks for the release!

  21. #21
    Account Upgraded | Title Enabled! Imagician is offline
    MemberRank
    Sep 2010 Join Date
    244Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    178 dont work for me too.

  22. #22
    Valued Member Tico Triest is offline
    MemberRank
    Sep 2012 Join Date
    The NetherlandsLocation
    112Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    yep, 178 is not working. as far as i remember from last night, the image for 178 isn't even in the SWF files, (correct me if im wrong, it was around 03:00) so, maybe that's the reason.

  23. #23
    son, i am disappointed Squashing is offline
    MemberRank
    Apr 2011 Join Date
    CaliforniaLocation
    683Posts

    Re: 2 New Effects: Staff Badge above Head [UPDATE]

    Save this in your album1584


  24. #24
    Proficient Member Webbo is offline
    MemberRank
    Apr 2012 Join Date
    HoloLocation
    190Posts

    Re: New Effect: Staff Badge above Head

    @Luminia Yeah they steal Ricardo's idea!

  25. #25
    Account Upgraded | Title Enabled! Chapo is offline
    MemberRank
    Jul 2010 Join Date
    United StatesLocation
    944Posts

    Re: New Effect: Staff Badge above Head

    Quote Originally Posted by Weebz View Post
    @Luminia Yeah they steal Ricardo's idea!
    No, it was Habbo's idea, dumb.



Page 1 of 2 12 LastLast

Advertisement