diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-28 17:29:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-28 17:29:01 -0300 |
commit | fb1ecf9e9a9c6072058df25f30b410d5e0b02b2b (patch) | |
tree | 76346f46fe852ec18c1a894e5bc1a9a76a57d77f /npc | |
parent | 962ef2cde08a5c62a99ec2b08975a3a07919a853 (diff) | |
parent | e478440a8fb70fa0cbc67020f68a849de9949365 (diff) | |
download | serverdata-jesusalva/dailymundane.tar.gz serverdata-jesusalva/dailymundane.tar.bz2 serverdata-jesusalva/dailymundane.tar.xz serverdata-jesusalva/dailymundane.zip |
Merge branch 'master' into jesusalva/dailymundanejesusalva/dailymundane
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/cookie.txt | 18 | ||||
-rw-r--r-- | npc/scripts.conf | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/npc/items/cookie.txt b/npc/items/cookie.txt new file mode 100644 index 00000000..80ff591e --- /dev/null +++ b/npc/items/cookie.txt @@ -0,0 +1,18 @@ +// Evol script. +// Author: +// Jesusalva +// Reid (?) +// Description: +// Prevents cookie from being used for too long + +- script #DeliciousCookie NPC_HIDDEN,{ + end; + +OnPCLogoutEvent: +OnUnequip: + if (getequipid(EQI_HEAD_MID) == DeliciousCookie) + unequip(EQI_HEAD_MID); + end; + +} + diff --git a/npc/scripts.conf b/npc/scripts.conf index 1b7e85e6..f593cade 100644 --- a/npc/scripts.conf +++ b/npc/scripts.conf @@ -98,6 +98,7 @@ "npc/functions/quest-debug/042-General_Brotherhood.txt", // Item functions +"npc/items/cookie.txt", "npc/items/croconut.txt", "npc/items/shovel.txt", "npc/items/rand_sc_heal.txt", |