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