Dragon [swf] [sql] [c# codes]
Image (Working in Uber):
http://i51.tinypic.com/fy0biv.png
Official Habbo.com:
http://images.habbo.com/gordon/RELEA...46f/dragon.swf
Download from Mediafire:
dragon.swf
Externals:
pet.breed.12.1=Emerald Earth Dragon
pet.breed.12.0=Volcanic Fire Dragon
pet.breed.12.3=Twilight Hunter Dragon
pet.breed.12.2=Bronze Cave Dragon
pet.breed.12.8=Great Golden Dragon
pet.breed.12.9=Dark Demonic Dragon
pet.breed.12.4=Midnight Glider Dragon
pet.breed.12.5=Crystal Cove Dragon
pet.breed.12.6=Pure Ambrosia Dragon
pet.breed.12.7=Subterranean Ice Dragon
SQL:
Code:
insert into `catalog_items`(`id`,`page_id`,`item_ids`,`catalog_name`,`cost_credits`,`cost_pixels`,`amount`) values (9465,720,'9465','a0 pet12',30,0,1);
insert into `catalog_pages`(`id`,`parent_id`,`caption`,`icon_color`,`icon_image`,`visible`,`enabled`,`min_rank`,`club_only`,`coming_soon`,`order_num`,`page_layout`,`page_headline`,`page_teaser`,`page_special`,`page_text1`,`page_text2`,`page_text_details`,`page_text_teaser`) values (720,14,'Dragones',1,109,'1','1',1,'0','0',-13,'pets','catalog_pet_headline1_es','','','¡La nueva mascota dragón ya está aquí! Mas rapidos que cualquier otro hotel, les traemos a ustedes la nueva mascota que hara arder tus salas. Habbo Unofficial Hotel (HUH.SYTES.NET)','','','');
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`,`allow_marketplace_sell`,`allow_gift`,`allow_inventory_stack`,`interaction_type`,`interaction_modes_count`,`vending_ids`) values (9465,'Dragon','a0 pet12','s',1,1,1,'1','0','0',9465,'1','1','1','1','1','pet',0,'0');
Codes:
in catalog.cs add:
Code:
case "9465":
PetType = 12; // Dragon
break;
in rooms.cs, under:
Code:
if (PetType.Length == 8)
{
if (PetType[7] == '1')
{
GetResponse().AppendStringWithBreak("a0 pet11");
count = 010;
petid = 11;
}
}
add:
Code:
if (PetType.Length == 8)
{
if (PetType[7] == '2')
{
GetResponse().AppendStringWithBreak("a0 pet12");
count = 008;
petid = 12;
}
}