diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/cookie.txt | 18 |
1 files changed, 18 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; + +} + |