[Release] Pepsi egg [Edit]

Node

ⱢḭḲΣ Λ βṒṨṨ...
Feb 4, 2012
70
23
Hi everyone of devbest just stopping by to share the pepsi egg I remade. I found this egg on a different forum and added a logo to it and made it where when you double click the egg it will give you a pepsi just like the pepsi machine in summer time furni. Any ways here is an image:
egg.png


Catalogue Items:
Code:
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `vip`) VALUES
(803030403, 156, '803030403', 'PAGEID', 150000, 0, 0, 20, '0');

Furniture:
Code:
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`, `is_arrow`, `foot_figure`) VALUES
(803030403, 'pepsi', 'pepsi', 's', 1, 1, 1, '0', '0', '0', 8030, '1', '1', '1', '1', '1', 'vendingmachine', 1, '55', '0', 0);

And if you do not have foot figure in your furniture structure just go to furniture->struct->add foot_figure at type or delete foot_figure in the sql and the 0 for the foot_figure
 

Zebaj89

New Member
Mar 31, 2013
3
0
Hi everyone of devbest just stopping by to share the pepsi egg I remade. I found this egg on a different forum and added a logo to it and made it where when you double click the egg it will give you a pepsi just like the pepsi machine in summer time furni. Any ways here is an image:
egg.png


Catalogue Items:
Code:
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `vip`) VALUES
(803030403, 156, '803030403', 'PAGEID', 150000, 0, 0, 20, '0');

Furniture:
Code:
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`, `is_arrow`, `foot_figure`) VALUES
(803030403, 'pepsi', 'pepsi', 's', 1, 1, 1, '0', '0', '0', 8030, '1', '1', '1', '1', '1', 'vendingmachine', 1, '55', '0', 0);

And if you do not have foot figure in your furniture structure just go to furniture->struct->add foot_figure at type or delete foot_figure in the sql and the 0 for the foot_figure
how do you code?
 

WanAiman

New Member
May 25, 2013
3
1
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `vip`) VALUES
(803030403, 156, '803030403', 'PAGEID', 150000, 0, 0, 20, '0');


Do I have to edit the `page_id`?
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
INSERT INTO `catalog_items` (`id`, `page_id`, `item_ids`, `catalog_name`, `cost_credits`, `cost_pixels`, `cost_snow`, `amount`, `vip`) VALUES
(803030403, 156, '803030403', 'PAGEID', 150000, 0, 0, 20, '0');


Do I have to edit the `page_id`?
You need to edit that to the id of the catalog page you want this custom in, yes.
 

Users who are viewing this thread

Top