A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | AA | AB | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | id | name | description | requirements | durability | price | object_type | allow_fraction | quest_item | image_file | usage_label | usage_code | Damage | Protection | Health | Energy Cost | Dexterity | Object SQL | Replace SQL | Attribute SQL | ||||||||
2 | Object Types Attributes | Object Types | Basic Menu | |||||||||||||||||||||||||
3 | Name | Object ID | ID | Name | ID | Usage Label | Usage Code | Values | ||||||||||||||||||||
4 | Damage | 1 | 1 | 1 | Weapons | 1 | Equip | NULL | yes | |||||||||||||||||||
5 | Protection | 2 | 2 | 1 | Helms | 2 | Equip | NULL | no | |||||||||||||||||||
6 | Protection | 3 | 3 | 1 | Armor | 3 | Equip | NULL | ||||||||||||||||||||
7 | Protection | 4 | 4 | 1 | Boots | 4 | Equip | NULL | ||||||||||||||||||||
8 | Health | 5 | 5 | Food | 5 | Consume | $userStats["Health"]->value+=$object->Health;ResultMessage(Translate("You gained %d Health",$object->Health,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | |||||||||||||||||||||
9 | Energy Cost | 1 | 6 | Potions | 6 | NULL | NULL | |||||||||||||||||||||
10 | Dexterity | 1 | 7 | Raw Material | 7 | NULL | NULL | |||||||||||||||||||||
11 | Weapons | 7 | ||||||||||||||||||||||||||
12 | Helms | 0 | ||||||||||||||||||||||||||
13 | Armor | 14 | ||||||||||||||||||||||||||
14 | Boots | 6 | ||||||||||||||||||||||||||
15 | Food | 13 | ||||||||||||||||||||||||||
16 | Potions | 0 | ||||||||||||||||||||||||||
17 | Raw Material | 0 | ||||||||||||||||||||||||||
18 | 40 | |||||||||||||||||||||||||||
19 | ||||||||||||||||||||||||||||
20 | ||||||||||||||||||||||||||||
21 | id | name | description | requirements | durability | price | object_type | allow_fraction | quest_item | image_file | usage_label | usage_code | Damage | Protection | Health | Energy Cost | Dexterity | Object SQL | Replace SQL | Attribute SQL | ||||||||
22 | 1 | payless shoes | These will get you through the prison at least | 0 | 40 | Boots | no | no | Equip | NULL | 2 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(1,'payless shoes','These will get you through the prison at least','',0,40,4,'no','no','','Equip','NULL'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('payless shoes','These will get you through the prison at least','',0,40,4,'no','no','','Equip','NULL') where id = 1; | insert into object_attributes values(1,4,2); | ||||||||||||||
23 | 2 | reebok shoes | Now that you are able to come up you can afford a decent pair of kicks | 0 | 90 | Boots | no | no | Equip | NULL | 3 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(2,'reebok shoes','Now that you are able to come up you can afford a decent pair of kicks','',0,90,4,'no','no','','Equip','NULL'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('reebok shoes','Now that you are able to come up you can afford a decent pair of kicks','',0,90,4,'no','no','','Equip','NULL') where id = 2; | insert into object_attributes values(2,4,3); | ||||||||||||||
24 | 3 | slippers | You may want to wear these while in the shower. You dont want a fungus do you? | 0 | 10 | Boots | no | no | Equip | NULL | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(3,'slippers','You may want to wear these while in the shower. You dont want a fungus do you?','',0,10,4,'no','no','','Equip','NULL'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('slippers','You may want to wear these while in the shower. You dont want a fungus do you?','',0,10,4,'no','no','','Equip','NULL') where id = 3; | insert into object_attributes values(3,4,1); | ||||||||||||||
25 | 4 | tennis shoes | Great for rec time | 0 | 70 | Boots | no | no | NULL | NULL | 2.5 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(4,'tennis shoes','Great for rec time','',0,70,4,'no','no','','Equip','NULL'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('tennis shoes','Great for rec time','',0,70,4,'no','no','','Equip','NULL') where id = 4; | insert into object_attributes values(4,4,2.5); | ||||||||||||||
26 | 5 | nike cortez | Kicks of choice for all the chollos | 0 | 130 | Boots | 3.5 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(5,'nike cortez','Kicks of choice for all the chollos','',0,130,4,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('nike cortez','Kicks of choice for all the chollos','',0,130,4,'','','','','') where id = 5; | insert into object_attributes values(5,4,3.5); | ||||||||||||||||||
27 | 6 | white shirt | These aren't dress blues but ehh | 0 | 10 | Armor | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(6,'white shirt','These aren't dress blues but ehh','',0,10,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('white shirt','These aren't dress blues but ehh','',0,10,3,'','','','','') where id = 6; | insert into object_attributes values(6,4,1); | ||||||||||||||||||
28 | 7 | sweater | For them chilly nights | 0 | 40 | Armor | 2 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(7,'sweater','For them chilly nights','',0,40,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('sweater','For them chilly nights','',0,40,3,'','','','','') where id = 7; | insert into object_attributes values(7,4,2); | ||||||||||||||||||
29 | 8 | jacket | At least its not the sweater your grandma made you | 0 | 70 | Armor | 2.5 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(8,'jacket','At least its not the sweater your grandma made you','',0,70,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('jacket','At least its not the sweater your grandma made you','',0,70,3,'','','','','') where id = 8; | insert into object_attributes values(8,4,2.5); | ||||||||||||||||||
30 | 9 | wool guard | A little bit itchy but it gets you through the day | 0 | 90 | Armor | 3 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(9,'wool guard','A little bit itchy but it gets you through the day','',0,90,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('wool guard','A little bit itchy but it gets you through the day','',0,90,3,'','','','','') where id = 9; | insert into object_attributes values(9,4,3); | ||||||||||||||||||
31 | 10 | metal guard | Whoa!! Is this legal in prison? You may not want to get caught with this on in public | 0 | 160 | Armor | 4 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(10,'metal guard','Whoa!! Is this legal in prison? You may not want to get caught with this on in public','',0,160,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('metal guard','Whoa!! Is this legal in prison? You may not want to get caught with this on in public','',0,160,3,'','','','','') where id = 10; | insert into object_attributes values(10,4,4); | ||||||||||||||||||
32 | 11 | knuckleduster | Very good for close quarter combat and easy to hide | 1 | 80 | Weapons | 1 | 1 | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(11,'knuckleduster','Very good for close quarter combat and easy to hide','',1,80,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('knuckleduster','Very good for close quarter combat and easy to hide','',1,80,1,'','','','','') where id = 11; | insert into object_attributes values(11,1,22);insert into object_attributes values(11,6,1);insert into object_attributes values(11,7,1); | ||||||||||||||||
33 | 12 | shanks | An easy way to do some damage to an inmate on the sly | 1 | 110 | Weapons | 1.2 | 1 | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(12,'shanks','An easy way to do some damage to an inmate on the sly','',1,110,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('shanks','An easy way to do some damage to an inmate on the sly','',1,110,1,'','','','','') where id = 12; | insert into object_attributes values(12,1,22);insert into object_attributes values(12,6,1);insert into object_attributes values(12,7,1); | ||||||||||||||||
34 | 13 | stone knife | Relax McGyver, no need to get all fancy | 1 | 160 | Weapons | 1.5 | 1.2 | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(13,'stone knife','Relax McGyver, no need to get all fancy','',1,160,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('stone knife','Relax McGyver, no need to get all fancy','',1,160,1,'','','','','') where id = 13; | insert into object_attributes values(13,1,22);insert into object_attributes values(13,6,1.2);insert into object_attributes values(13,7,1); | ||||||||||||||||
35 | 14 | wood knife | If your looking to splinter people to death, this is where its at | 1 | 100 | Weapons | 1.1 | 1 | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(14,'wood knife','If your looking to splinter people to death, this is where its at','',1,100,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('wood knife','If your looking to splinter people to death, this is where its at','',1,100,1,'','','','','') where id = 14; | insert into object_attributes values(14,1,22);insert into object_attributes values(14,6,1);insert into object_attributes values(14,7,1); | ||||||||||||||||
36 | 15 | razor whip | Crack that whip | 1.5 | 250 | Weapons | 1.9 | 1 | 1 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(15,'razor whip','Crack that whip','',1.5,250,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('razor whip','Crack that whip','',1.5,250,1,'','','','','') where id = 15; | insert into object_attributes values(15,1,22);insert into object_attributes values(15,6,1);insert into object_attributes values(15,7,1); | ||||||||||||||||
37 | 16 | Railroad Tie | Here comes Vlad the Impaler | 1.7 | 1110 | Weapons | 3 | 2 | 1.8 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(16,'Railroad Tie','Here comes Vlad the Impaler','',1.7,1110,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('Railroad Tie','Here comes Vlad the Impaler','',1.7,1110,1,'','','','','') where id = 16; | insert into object_attributes values(16,1,22);insert into object_attributes values(16,6,2);insert into object_attributes values(16,7,1.8); | ||||||||||||||||
38 | 17 | electric cord | Stalk your prey and strangle the hell out of him | 1 | 1250 | Weapons | 2 | 1 | 3 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(17,'electric cord','Stalk your prey and strangle the hell out of him','',1,1250,1,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('electric cord','Stalk your prey and strangle the hell out of him','',1,1250,1,'','','','','') where id = 17; | insert into object_attributes values(17,1,22);insert into object_attributes values(17,6,1);insert into object_attributes values(17,7,3); | ||||||||||||||||
39 | 18 | corn bread | Gives you 10% Health | 0 | 1000 | Food | no | no | NULL | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 10 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(18,'corn bread','Gives you 10% Health','',0,1000,5,'no','no','NULL','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('corn bread','Gives you 10% Health','',0,1000,5,'no','no','NULL','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 18; | insert into object_attributes values(18,5,10); | |||||||||||||
40 | 19 | protein bar | Gives you 15% Health | 2250 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 15 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(19,'protein bar','Gives you 15% Health','',,2250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('protein bar','Gives you 15% Health','',,2250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 19; | insert into object_attributes values(19,5,15); | |||||||||||||||||
41 | 20 | rice krispy treats | Gives you 12% Health | 1440 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 12 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(20,'rice krispy treats','Gives you 12% Health','',,1440,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('rice krispy treats','Gives you 12% Health','',,1440,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 20; | insert into object_attributes values(20,5,12); | |||||||||||||||||
42 | 21 | gum | Gives you 11% Health | 1210 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 11 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(21,'gum','Gives you 11% Health','',,1210,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('gum','Gives you 11% Health','',,1210,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 21; | insert into object_attributes values(21,5,11); | |||||||||||||||||
43 | 22 | twinkies | Gives you 8% Health | 640 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 8 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(22,'twinkies','Gives you 8% Health','',,640,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('twinkies','Gives you 8% Health','',,640,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 22; | insert into object_attributes values(22,5,8); | |||||||||||||||||
44 | 23 | apple | Gives you 20% Health | 4000 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 20 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(23,'apple','Gives you 20% Health','',,4000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('apple','Gives you 20% Health','',,4000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 23; | insert into object_attributes values(23,5,20); | |||||||||||||||||
45 | 24 | banana | Gives you 22% Health | 4840 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 22 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(24,'banana','Gives you 22% Health','',,4840,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('banana','Gives you 22% Health','',,4840,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 24; | insert into object_attributes values(24,5,22); | |||||||||||||||||
46 | 25 | meat loaf | Gives you 45 % Health | 20250 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 45 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(25,'meat loaf','Gives you 45 % Health','',,20250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('meat loaf','Gives you 45 % Health','',,20250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 25; | insert into object_attributes values(25,5,45); | |||||||||||||||||
47 | 26 | fried chicken | Gives you 50% Health | 25000 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 50 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(26,'fried chicken','Gives you 50% Health','',,25000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('fried chicken','Gives you 50% Health','',,25000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 26; | insert into object_attributes values(26,5,50); | |||||||||||||||||
48 | 27 | sandwich | Gives you 30% Health | 9000 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 30 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(27,'sandwich','Gives you 30% Health','',,9000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('sandwich','Gives you 30% Health','',,9000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 27; | insert into object_attributes values(27,5,30); | |||||||||||||||||
49 | 28 | hamburger | Gives you 35% Health | 12250 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 35 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(28,'hamburger','Gives you 35% Health','',,12250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('hamburger','Gives you 35% Health','',,12250,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 28; | insert into object_attributes values(28,5,35); | |||||||||||||||||
50 | 29 | pizza | Gives you 60% Health | 36000 | Food | NULL | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 60 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(29,'pizza','Gives you 60% Health','',,36000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('pizza','Gives you 60% Health','',,36000,5,'','','','Consume','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 29; | insert into object_attributes values(29,5,60); | |||||||||||||||||
51 | 30 | cupcakes | Gives you 25% Health | 6250 | Food | $userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1); | 25 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(30,'cupcakes','Gives you 25% Health','',,6250,5,'','','','','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);'); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('cupcakes','Gives you 25% Health','',,6250,5,'','','','','$userStats["Health"]->value+=($object->Health/$userStats["Health"]->maxValue)*100;ResultMessage(Translate("You gained %d Health by consuming %s",($object->Health/$userStats["Health"]->maxValue)*100,$object->Name,FALSE));Item::InventoryRemove($object->id,$object->object_health,1);') where id = 30; | insert into object_attributes values(30,5,25); | ||||||||||||||||||
52 | 31 | bulletproof vest | A heavy duty item that was stolen from the Prison Response Team | 1000 | Armor | 10 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(31,'bulletproof vest','A heavy duty item that was stolen from the Prison Response Team','',,1000,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('bulletproof vest','A heavy duty item that was stolen from the Prison Response Team','',,1000,3,'','','','','') where id = 31; | insert into object_attributes values(31,4,10); | |||||||||||||||||||
53 | 32 | bulletproof jacket | A light duty item stolen from the Prison Response Team | 1690 | Armor | 13 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(32,'bulletproof jacket','A light duty item stolen from the Prison Response Team','',,1690,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('bulletproof jacket','A light duty item stolen from the Prison Response Team','',,1690,3,'','','','','') where id = 32; | insert into object_attributes values(32,4,13); | |||||||||||||||||||
54 | 33 | bulletproof boots | A pair of kicks that were made for the clumsy | 1690 | Boots | 13 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(33,'bulletproof boots','A pair of kicks that were made for the clumsy','',,1690,4,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('bulletproof boots','A pair of kicks that were made for the clumsy','',,1690,4,'','','','','') where id = 33; | insert into object_attributes values(33,4,13); | |||||||||||||||||||
55 | 34 | dicky pants | A very common pair of pants that are worn throughout the prison | 160 | Armor | 4 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(34,'dicky pants','A very common pair of pants that are worn throughout the prison','',,160,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('dicky pants','A very common pair of pants that are worn throughout the prison','',,160,3,'','','','','') where id = 34; | insert into object_attributes values(34,4,4); | |||||||||||||||||||
56 | 35 | khaki pants | These are perfect for visiting hours | 150 | Armor | 3.8 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(35,'khaki pants','These are perfect for visiting hours','',,150,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('khaki pants','These are perfect for visiting hours','',,150,3,'','','','','') where id = 35; | insert into object_attributes values(35,4,3.8); | |||||||||||||||||||
57 | 36 | levi jeans | Just for when you want to go a bit casual | 190 | Armor | 4.3 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(36,'levi jeans','Just for when you want to go a bit casual','',,190,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('levi jeans','Just for when you want to go a bit casual','',,190,3,'','','','','') where id = 36; | insert into object_attributes values(36,4,4.3); | |||||||||||||||||||
58 | 37 | windbreaker | Need to do community service? This will help keep you cool and dry | 40 | Armor | 2 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(37,'windbreaker','Need to do community service? This will help keep you cool and dry','',,40,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('windbreaker','Need to do community service? This will help keep you cool and dry','',,40,3,'','','','','') where id = 37; | insert into object_attributes values(37,4,2); | |||||||||||||||||||
59 | 38 | waterproof pants | Perfect for when you need to clean the toilets | 40 | Armor | 2 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(38,'waterproof pants','Perfect for when you need to clean the toilets','',,40,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('waterproof pants','Perfect for when you need to clean the toilets','',,40,3,'','','','','') where id = 38; | insert into object_attributes values(38,4,2); | |||||||||||||||||||
60 | 39 | fireproof pants | Do you plan on setting yourself on fire? If so, then these are perfect for you | 250 | Armor | 5 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(39,'fireproof pants','Do you plan on setting yourself on fire? If so, then these are perfect for you','',,250,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('fireproof pants','Do you plan on setting yourself on fire? If so, then these are perfect for you','',,250,3,'','','','','') where id = 39; | insert into object_attributes values(39,4,5); | |||||||||||||||||||
61 | 40 | bulletproof pants | A pair of heavy duty pants stolen by the Prison Response Team | 1690 | Armor | 13 | insert into objects(id,name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values(40,'bulletproof pants','A pair of heavy duty pants stolen by the Prison Response Team','',,1690,3,'','','','',''); | replace into objects(name,description,requirements,durability,price,object_type,allow_fraction,quest_item,image_file,usage_label,usage_code) values('bulletproof pants','A pair of heavy duty pants stolen by the Prison Response Team','',,1690,3,'','','','','') where id = 40; | insert into object_attributes values(40,4,13); | |||||||||||||||||||
62 | 41 | cell phone | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
63 | 42 | pager | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
64 | 43 | porno magazine | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
65 | 44 | pen | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
66 | 45 | marker | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
67 | 46 | pencil | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
68 | 47 | paper | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
69 | 48 | toothpaste | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
70 | 49 | toothbush | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
71 | 50 | mirror | #VALUE! | #VALUE! | #VALUE! | FALSE | ||||||||||||||||||||||
72 | 51 | pillow | #VALUE! | |||||||||||||||||||||||||
73 | 52 | bed sheets | #VALUE! | |||||||||||||||||||||||||
74 | 53 | flash lights | #VALUE! | |||||||||||||||||||||||||
75 | 54 | water bottle | #VALUE! | |||||||||||||||||||||||||
76 | 55 | soda | #VALUE! | |||||||||||||||||||||||||
77 | 56 | keys | #VALUE! | |||||||||||||||||||||||||
78 | 57 | cigarette | #VALUE! | |||||||||||||||||||||||||
79 | 58 | cigar | #VALUE! | |||||||||||||||||||||||||
80 | 59 | sleeping pills | #VALUE! | |||||||||||||||||||||||||
81 | 60 | computer | #VALUE! | |||||||||||||||||||||||||
82 | 61 | dumbbells | #VALUE! | |||||||||||||||||||||||||
83 | 62 | basketball | #VALUE! | |||||||||||||||||||||||||
84 | 63 | books | #VALUE! | |||||||||||||||||||||||||
85 | #VALUE! | |||||||||||||||||||||||||||
86 | #VALUE! | |||||||||||||||||||||||||||
87 | #VALUE! | |||||||||||||||||||||||||||
88 | #VALUE! | |||||||||||||||||||||||||||
89 | #VALUE! | |||||||||||||||||||||||||||
90 | #VALUE! | |||||||||||||||||||||||||||
91 | #VALUE! | |||||||||||||||||||||||||||
92 | #VALUE! | |||||||||||||||||||||||||||
93 | #VALUE! | |||||||||||||||||||||||||||
94 | #VALUE! | |||||||||||||||||||||||||||
95 | #VALUE! | |||||||||||||||||||||||||||
96 | #VALUE! | |||||||||||||||||||||||||||
97 | #VALUE! | |||||||||||||||||||||||||||
98 | #VALUE! | |||||||||||||||||||||||||||
99 | #VALUE! | |||||||||||||||||||||||||||
100 | #VALUE! |