[UberEmu] Achievements

Page 1 of 2 12 LastLast
Results 1 to 25 of 36
  1. #1
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    [UberEmu] Achievements

    I will develop as much as possible of achievements for you. I am very new to C #, but I have to know that. I know the PHP, CSS, Ajax + JS (jQuery), MySQL, HTML ..

    I thought about doing this topic because toperwin would do it .. and go ahead, and as I never did anything for you, I'll do it.


    Keep an eye on the dates of update, because I'm always fixing bugs!


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


    Room Raider (UPDATED: 08/10/2010 19:23)
    Credits:
    - 80% to toperwin;
    - 20% to ME.


    Search for:
    Code:
    public void OnEnterRoom(uint RoomId)
    After the code below
    Code:
    Messenger.OnStatusChanged(false);
    Add
    C# | DataRow TotalRegis - Anonymous - 4kbkuL85 - Pastebin.com

    SQL:
    Code:
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES
    (12, 10, '1', 'ACH_RoomEntry', 5, 0);
    Note: If you want to change how many rooms you will receive the badge, change the values: 5, 15, 30, 45, 60, 80, 120, 140, 160, 200

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

    True Habbo Badges (UPDATED: 08/10/2010 19:25)
    Credits:
    - 100% to ME.


    Search for:
    Code:
    public bool BlockNewFriends;
    Add after:
    Code:
    public string DataCadastro;


    Search for:
    Code:
    public Habbo(uint Id, string Username, string RealName, string AuthTicket, uint Rank, string Motto, string Look, string Gender, int Credits, int ActivityPoints, Double LastActivityPointsUpdate, bool Muted, uint HomeRoom, int Respect, int DailyRespectPoints, int DailyPetRespectPoints, int NewbieStatus, bool MutantPenalty, bool BlockNewFriends)
    Replace:
    Code:
    public Habbo(uint Id, string Username, string RealName, string AuthTicket, uint Rank, string Motto, string Look, string Gender, int Credits, int ActivityPoints, Double LastActivityPointsUpdate, string DataCadastro, bool Muted, uint HomeRoom, int Respect, int DailyRespectPoints, int DailyPetRespectPoints, int NewbieStatus, bool MutantPenalty, bool BlockNewFriends)


    Search for:
    Code:
    this.BlockNewFriends = BlockNewFriends;
    Add after:
    Code:
    this.DataCadastro = DataCadastro;


    Search for:
    Code:
                if (GetHabbo().Motto != null)
                    UberEnvironment.GetGame().GetAchievementManager().UnlockAchievement(this, 5, 1);
    Add after:
    C# | string[] dataC = G - Anonymous - 2zFYGKS6 - Pastebin.com



    Search for:
    Code:
                return new Habbo((uint)Data["id"], (string)Data["username"], (string)Data["real_name"], AuthTicket, (uint)Data["rank"], (string)Data["motto"], (string)Data["look"], (string)Data["gender"], (int)Data["credits"], (int)Data["activity_points"], (Double)Data["activity_points_lastupdate"], UberEnvironment.EnumToBool(Data["is_muted"].ToString()), (uint)Data["home_room"], (int)Data["respect"], (int)Data["daily_respect_points"], (int)Data["daily_pet_respect_points"], (int)Data["newbie_status"], (Data["mutant_penalty"].ToString() != "0"), UberEnvironment.EnumToBool(Data["block_newfriends"].ToString()));
    Replace:
    Code:
                return new Habbo((uint)Data["id"], (string)Data["username"], (string)Data["real_name"], AuthTicket, (uint)Data["rank"], (string)Data["motto"], (string)Data["look"], (string)Data["gender"], (int)Data["credits"], (int)Data["activity_points"], (Double)Data["activity_points_lastupdate"], (string)Data["account_created"], UberEnvironment.EnumToBool(Data["is_muted"].ToString()), (uint)Data["home_room"], (int)Data["respect"], (int)Data["daily_respect_points"], (int)Data["daily_pet_respect_points"], (int)Data["newbie_status"], (Data["mutant_penalty"].ToString() != "0"), UberEnvironment.EnumToBool(Data["block_newfriends"].ToString()));
    SQL:
    Code:
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES
    (13, 10, '1', 'ACH_RegistrationDuration', 50, 0);


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

    Badges Online Time

    In brief, I am studying dates .. 'm a beginner at it ..
    The code is 95% ready, need to fix a few things and do not know where that puts .. when I put it, is closing the emulator ..



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

    Badges Respect and Respect's 100 times (Two in one) (UPDATED: 08/10/2010 19:26)
    Credits:
    - 100% to ME.



    Search for:
    Code:
    private void GiveRespect()
    Replace the block by:
    C# | private void GiveRespect() - Anonymous - gzKVnFQr - Pastebin.com



    SQL:
    Code:
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES (15, 10, '1', 'ACH_RespectEarned', 50, 1);
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES (16, 1, '1', 'ACH_RespectGiven', 20, 1);
    ALTER TABLE users ADD `respects_given` int(10) NOT NULL default '0' AFTER daily_respect_points;


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

    Gift Giver and Gift Receiver (Two in one) (UPDATED: none)
    Credits:
    - 100% to ME.



    Gift Giver
    http://images.habbo.com/c_images/alb...GiftGiver1.gif
    http://images.habbo.com/c_images/alb...GiftGiver2.gif
    http://images.habbo.com/c_images/alb...GiftGiver3.gif
    http://images.habbo.com/c_images/alb...GiftGiver4.gif
    http://images.habbo.com/c_images/alb...GiftGiver5.gif
    http://images.habbo.com/c_images/alb...GiftGiver6.gif
    http://images.habbo.com/c_images/alb...GiftGiver7.gif
    http://images.habbo.com/c_images/alb...GiftGiver8.gif
    http://images.habbo.com/c_images/alb...GiftGiver9.gif
    http://images.habbo.com/c_images/alb...iftGiver10.gif


    Gift Receiver
    http://images.habbo.com/c_images/alb...tReceiver1.gif
    http://images.habbo.com/c_images/alb...tReceiver2.gif
    http://images.habbo.com/c_images/alb...tReceiver3.gif
    http://images.habbo.com/c_images/alb...tReceiver4.gif
    http://images.habbo.com/c_images/alb...tReceiver5.gif
    http://images.habbo.com/c_images/alb...tReceiver6.gif
    http://images.habbo.com/c_images/alb...tReceiver7.gif
    http://images.habbo.com/c_images/alb...tReceiver8.gif
    http://images.habbo.com/c_images/alb...tReceiver9.gif
    http://images.habbo.com/c_images/alb...Receiver10.gif



    Search for:
    Code:
    if (IsGift)
                {
                    uint GenId = GenerateItemId();
                    Item Present = GeneratePresent();
    Replace the block by:
    PHP | if (IsGift) - Anonymous - hwRb60ad - Pastebin.com



    SQL:
    Code:
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES (17, 10, '1', 'ACH_GiftGiver', 20, 1);
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES (18, 10, '1', 'ACH_GiftReceiver', 20, 1);
    
    ALTER TABLE users ADD `gifts_given` int(10) NOT NULL default '0' AFTER respects_given;
    ALTER TABLE users ADD `gifts_received` int(10) NOT NULL default '0' AFTER gifts_given;


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

    Pet Owner (UPDATED: none)
    Credits:
    - 100% to ME.



    Gift Giver
    http://images.habbo.com/c_images/alb..._PetLover1.gif
    http://images.habbo.com/c_images/alb..._PetLover2.gif
    http://images.habbo.com/c_images/alb..._PetLover3.gif
    http://images.habbo.com/c_images/alb..._PetLover4.gif
    http://images.habbo.com/c_images/alb..._PetLover5.gif
    http://images.habbo.com/c_images/alb..._PetLover6.gif
    http://images.habbo.com/c_images/alb..._PetLover7.gif
    http://images.habbo.com/c_images/alb..._PetLover8.gif
    http://images.habbo.com/c_images/alb..._PetLover9.gif
    http://images.habbo.com/c_images/alb...PetLover10.gif



    Search for:
    Code:
    public Pet CreatePet(uint UserId, string Name, int Type, string Race, string Color)        
            {
    Replace the block by:
    C# | public Pet CreatePet(uint User - Anonymous - gFJ9SaA1 - Pastebin.com



    SQL:
    Code:
    INSERT INTO `achievements` (`id`, `levels`, `dynamic_badgelevel`, `badge`, `pixels_base`, `pixels_multiplier`) VALUES (19, 10, '1', 'ACH_PetLover', 20, 1);




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

    Please enter on my website : Alkaida Downloads

    NOTE (12/10/2010 11:13): I'm out of time to do more, just came to publish the achievement of Pet Owner because I remembered. Soon I would end the rest. Sorry!


    NOTE (08/10/2010 19:35): I did other things, just not remember what it was, I'm looking for what I did.
    Last edited by lucaspaulino; 26-10-10 at 11:18 PM.


  2. #2
    Sorcerer Supreme Flurrie is offline
    Member +Rank
    Jun 2010 Join Date
    281Posts

    Re: [UberEmu] Achievements

    Would you happen to know what to insert to get :pickall command working,

    ot: I'll test it soon.

  3. #3
    Sorcerer Supreme toperwin is offline
    Member +Rank
    Jan 2009 Join Date
    313Posts

    Re: [UberEmu] Achievements

    succ6 ;)
    i'm busy too with achievements ;p

    EDIT:
    orginal toppic, http://forum.ragezone.com/f353/ubere...-100-a-695248/
    Last edited by toperwin; 26-09-10 at 03:02 PM.

  4. #4
    Grand Master No0b is offline
    Grand MasterRank
    Jul 2010 Join Date
    Michigan, USLocation
    1,426Posts

    Re: [UberEmu] Achievements

    wow very good. :D

  5. #5
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    Quote Originally Posted by toperwin View Post
    succ6 ;)
    i'm busy too with achievements ;p

    EDIT:
    orginal toppic, http://forum.ragezone.com/f353/ubere...-100-a-695248/
    yes.. my topic is all achievements.. I put your credits .. your code, when I entered the room, shut the uberemu ..
    My code is also easier, the tutorial too .. : D

  6. #6
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    CODE UPDATED.
    Is this for today. I fixed the bugs True Habbo.
    Will soon have more. The next will be: Badges Online Time

  7. #7
    Sorcerer Supreme Flurrie is offline
    Member +Rank
    Jun 2010 Join Date
    281Posts

    Re: [UberEmu] Achievements

    Please add respect points badge?


    :?

  8. #8

    Re: [UberEmu] Achievements

    can you please add respect badges please haha

  9. #9
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    yes .. I'm working on that part of the emblems of respect ..
    the other is more time consuming to do, in fact, the code is ready for Badges Online Time'm just not knowing where to put ..


    badges to earn respect is also ready, I'm just making the final adjustments ..


    PS> I'm taking too long to publish the codes, because I am in week trial .. I can not devote much to it ..
    Last edited by lucaspaulino; 29-09-10 at 04:04 PM.

  10. #10
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    UPDATE: add Badges Respect.

  11. #11
    Rip Akaruz pixelpro321 is offline
    Grand MasterRank
    Dec 2007 Join Date
    InternetLocation
    1,427Posts

    Re: [UberEmu] Achievements

    This looks good, might try it if i ever get Uber going again.

  12. #12
    Elite Member Tyerial is offline
    Member +Rank
    May 2005 Join Date
    On a RockLocation
    249Posts

    Re: [UberEmu] Achievements

    respect badges code is bugged some people do not have the given_respect table

  13. #13
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    Ok! I forgot to post the code.

    When I get time, I try to create more codes of achievements.

    SQL
    Code:
    ALTER TABLE users ADD `respects_given` int(10) NOT NULL default '0' AFTER daily_respect_points;

  14. #14
    Newbie Janx is offline
    MemberRank
    Sep 2010 Join Date
    19Posts

    Re: [UberEmu] Achievements

    Got any more achievement codes?

  15. #15
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    I forgot to tell you that I published two more: Gift Giver and Gift Receiver!


    Read the comments I put.



    Any questions, suggestions, bug. Speak, who has a mouth goes to Rome!
    Or you'll find that you have bad breath! :D

  16. #16
    Grand Master thetrev14 is offline
    Grand MasterRank
    Aug 2010 Join Date
    None ur bizz!Location
    792Posts

    Re: [UberEmu] Achievements

    hello i kinda need help with my r59 ubercms hotel. i need help settin up my vars. I got everything else done right i think. i just cant get the right http://5.176.133.7/r59/external_vars thats what i have but when i paste in address bar it says page cannot be found. can somone please help me? my msn is hotrichman21@hotmail.com
    thanks!!!!

  17. #17
    Elite Member Tyerial is offline
    Member +Rank
    May 2005 Join Date
    On a RockLocation
    249Posts

    Re: [UberEmu] Achievements

    sorry the website u have it on is ok but i cant read anything it says =/

  18. #18
    Grand Master thetrev14 is offline
    Grand MasterRank
    Aug 2010 Join Date
    None ur bizz!Location
    792Posts

    Re: [UberEmu] Achievements

    My Website?

  19. #19
    Elite Member Tyerial is offline
    Member +Rank
    May 2005 Join Date
    On a RockLocation
    249Posts

    Re: [UberEmu] Achievements

    Quote Originally Posted by thetrev14 View Post
    My Website?
    no the topic posters

  20. #20
    8-bit Bitch Slapper Alpha Ducky is offline
    Grand MasterRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: [UberEmu] Achievements

    Wow
    This is just amazing xD
    Nicely done my friend (Y)

  21. #21
    Elite Member vicancer is offline
    Member +Rank
    Mar 2010 Join Date
    133Posts

    Re: [UberEmu] Achievements

    when they leave the rest?

  22. #22
    Elite Member Fag is offline
    Member +Rank
    Oct 2010 Join Date
    United StatesLocation
    129Posts

    Re: [UberEmu] Achievements

    Thanks for releasing

  23. #23
    Elite Member lucaspaulino is offline
    Member +Rank
    Aug 2007 Join Date
    BrazilLocation
    189Posts

    Re: [UberEmu] Achievements

    I just added: Pet Owner!
    Read the notes!

  24. #24
    8-bit Bitch Slapper Alpha Ducky is offline
    Grand MasterRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: [UberEmu] Achievements

    Quote Originally Posted by lucaspaulino View Post
    I just added: Pet Owner!
    Read the notes!
    excellent
    Keep up the awesome work.

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

    Re: [UberEmu] Achievements

    Quote Originally Posted by lucaspaulino View Post
    I just added: Pet Owner!
    Read the notes!
    Awesome :o



Page 1 of 2 12 LastLast

Advertisement