summaryrefslogtreecommitdiff
path: root/npc/024-14
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2024-01-20 11:49:57 -0300
committerJesusaves <cpntb1@ymail.com>2024-01-20 11:49:57 -0300
commit03cbbf5e2ba23f9714baf42df157c0001599fb85 (patch)
tree6ec7d8a8183a5ac8034ffe08170c91d86ad5a97d /npc/024-14
parentd786c3b3977ef72b4b64248099274dd79b642258 (diff)
downloadserverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.gz
serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.bz2
serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.xz
serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.zip
This is the initial version of Cooking System (work in progress).
In particular: - You cannot learn how to cook - You cannot learn any recipe - You cannot make flour - You cannot cook Fruit Salad, Zombie Nachos nor Pancake This also introduces changes to drops, as well as new items, incl. Donuts. Partly Tested.
Diffstat (limited to 'npc/024-14')
-rw-r--r--npc/024-14/doorbell.txt1
-rw-r--r--npc/024-14/utils.txt11
2 files changed, 12 insertions, 0 deletions
diff --git a/npc/024-14/doorbell.txt b/npc/024-14/doorbell.txt
index ac6452a17..b8b6c8842 100644
--- a/npc/024-14/doorbell.txt
+++ b/npc/024-14/doorbell.txt
@@ -219,6 +219,7 @@ OnInit:
create_object("Beer Shelf" , 1, 2000, 32, 37, 26, 37, 26);
create_object("Piano" , 3, 10000, 1, 31, 26, 33, 26);
+ create_object("Stove" , 3, 42000, 2, 30, 26, 31, 27);
create_object("Right Desk" , 2, 5000, 2, 36, 30, 38, 32);
diff --git a/npc/024-14/utils.txt b/npc/024-14/utils.txt
index ad9c51134..69656594c 100644
--- a/npc/024-14/utils.txt
+++ b/npc/024-14/utils.txt
@@ -45,6 +45,7 @@ OnReload:
load_npc("Wardrobe#RES_PPL", "ples@"+getcharid(0), 25, 26);
load_npc("Cauldron#RES_PPL", "ples@"+getcharid(0), 28, 27);
load_npc("Piano#RES_PPL" , "ples@"+getcharid(0), 32, 26);
+ load_npc("Stove#RES_PPL" , "ples@"+getcharid(0), 30, 27);
end;
}
@@ -78,3 +79,13 @@ OnInit:
end;
}
+
+024-14,30,27,0 script Stove#RES_PPL NPC_STOVE,{
+ realestate_stove();
+ close;
+
+OnInit:
+ .distance=3;
+ end;
+}
+