Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Arcturus] Add new Cow pet

Junior Spellweaver
Joined
May 3, 2009
Messages
173
Reaction score
134
Hello everyone :)

Run this queries:
Code:
INSERT INTO `pet_actions` (`pet_type`, `pet_name`, `happy_actions`, `tired_actions`, `random_actions`) VALUES ('35', '', '', '', '');

Code:
INSERT INTO items_base(public_name, item_name, interaction_type, `type`) VALUES ('Cow', 'a0 pet35', 'pet35', 's');

Code:
INSERT INTO `pet_breeds` (`race`, `color_one`, `color_two`, `has_color_one`, `has_color_two`) VALUES
(35, 2, 2, '1', '0'),
(35, 4, 4, '1', '0'),
(35, 5, 5, '1', '0'),
(35, 6, 6, '1', '0'),
(35, 7, 7, '1', '0'),
(35, 8, 8, '1', '0'),
(35, 9, 9, '1', '0'),
(35, 10, 10, '1', '0'),
(35, 11, 11, '1', '0'),
(35, 12, 12, '1', '0'),
(35, 13, 13, '1', '0'),
(35, 14, 14, '1', '0'),
(35, 15, 15, '1', '0'),
(35, 16, 16, '1', '0'),
(35, 17, 17, '1', '0'),
(35, 18, 18, '1', '0');

Change the PAGEIDHERE to your page id
Code:
INSERT INTO catalog_items (page_id, item_ids, catalog_name, cost_credits)
SELECT PAGEIDHERE, items_base.id, items_base.item_name, 25
FROM items_base WHERE item_name LIKE 'a0 pet35';

Change pet.configuration in external_variables.txt
Code:
pet.configuration=dog,cat,croco,terrier,bear,pig,lion,rhino,spider,turtle,chicken,frog,dragon,monster,monkey,horse,monsterplant,bunnyeaster,bunnyevil,bunnydepressed,bunnylove,pigeongood,pigeonevil,demonmonkey,bearbaby,terrierbaby,gnome,gnome,kittenbaby,puppybaby,pigletbaby,haloompa,fools,pterosaur,velociraptor,cow


Jeanzinh0 - [Arcturus] Add new Cow pet - RaGEZONE Forums

 
Last edited:
Newbie Spellweaver
Joined
Jan 23, 2015
Messages
6
Reaction score
0
hey I am using PlusEmu do you know how I can add it there? the only thing left to do is to get the swf to load but somehow it won't :')
 
Junior Spellweaver
Joined
May 3, 2009
Messages
173
Reaction score
134
hey I am using PlusEmu do you know how I can add it there? the only thing left to do is to get the swf to load but somehow it won't :')

You inserted the pet in catalog_pet_races?
You changed this line pet.configuration in your vars?
And iirc, you need add some codes in your emulator too.
 
Newbie Spellweaver
Joined
Jan 23, 2015
Messages
6
Reaction score
0
Yes pet config in external_variables has cow at the end, its in the catalog, its walking around like a pet, able to scratch etc, talking, it's just a black loading box :p

And emu? Could you explain further please?
 
Back
Top