uberEmu Achievements Unlock (100%)

Results 1 to 6 of 6
  1. #1
    Account Upgraded | Title Enabled! wichard is offline
    MemberRank
    Jul 2009 Join Date
    The NetherlandsLocation
    649Posts

    uberEmu Achievements Unlock (100%)

    Hello ragezone,

    Today im still developing Habbo Beta Emulating (C#)

    I just figured out the new packets for Achievement Unlock!

    How did you made this?
    Packetlogged: "SCRjHRBQf"

    What means:
    # SC = 15 = Achievement score
    # Rj = 170 = Pixels
    # H = 0 = null
    # RB = 10 = Extra Facebook Score
    # Qf = 153 = null

    [null = has no value]

    What's else?
    - Its for 63+ emulating, because it has new packets.
    - Achievement Score included.

    Picture



    How to Add
    Step 1.
    Open Achievements -> Achievementmanager.cs

    Step 2.
    Use [ Ctrl + F ] and search for:

    Code:
    if (Level > 1)
    Step 3.
    Bevore that code add this following code:

    Code:
                Session.GetMessageHandler().GetResponse().AppendInt32(100); // achievementscore
                Session.GetMessageHandler().GetResponse().AppendInt32(Pixels);
                Session.GetMessageHandler().GetResponse().AppendInt32(0);
                Session.GetMessageHandler().GetResponse().AppendInt32(10); // extra points facebook
                Session.GetMessageHandler().GetResponse().AppendInt32(153);
    Step 4.
    Run the Emulator!

    Don't forget to push the Thanks Button!


  2. #2
    Account Upgraded | Title Enabled! Mikehunt is offline
    MemberRank
    Jun 2010 Join Date
    Look behind YouLocation
    332Posts

    Re: uberEmu Achievements Unlock (100%)

    Nice.

  3. #3
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

    Re: uberEmu Achievements Unlock (100%)

    nice.

  4. #4
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: uberEmu Achievements Unlock (100%)

    Uhm not fully coded, thanks though :]

  5. #5
    C# | C++ Emerica is offline
    MemberRank
    Oct 2010 Join Date
    GermanyLocation
    437Posts

    Re: uberEmu Achievements Unlock (100%)

    Wow, nice release

  6. #6
    Member twentySix26 is offline
    MemberRank
    Mar 2011 Join Date
    68Posts

    Re: uberEmu Achievements Unlock (100%)

    Shouldn't be hard to code it, everything's there, you just edit "100" and "10", double it, or whatever you wanna as you exceed leveling.

    PHP Code:
    if (Level == 1)
    {
    Session.GetMessageHandler().GetResponse().AppendInt32(100); // achievementscore
                
    Session.GetMessageHandler().GetResponse().AppendInt32(Pixels);
                
    Session.GetMessageHandler().GetResponse().AppendInt32(0);
                
    Session.GetMessageHandler().GetResponse().AppendInt32(10); // extra points facebook
                
    Session.GetMessageHandler().GetResponse().AppendInt32(153);
    }
    else
    {
    if(
    Level == 2)
    {
    Session.GetMessageHandler().GetResponse().AppendInt32(200); // achievementscore
                
    Session.GetMessageHandler().GetResponse().AppendInt32(Pixels);
                
    Session.GetMessageHandler().GetResponse().AppendInt32(0);
                
    Session.GetMessageHandler().GetResponse().AppendInt32(20); // extra points facebook
                
    Session.GetMessageHandler().GetResponse().AppendInt32(153);
    }

    /eh?



Advertisement