diff options
author | wushin <pasekei@gmail.com> | 2013-10-25 12:20:26 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2013-10-25 12:20:26 -0500 |
commit | c3912f6f0ebdc0de532d0a5190d4c652993e054b (patch) | |
tree | 2c8c48a2a67ad00980d0d44c423e6313974b061d /world/map/npc/items/restricted_item.txt | |
parent | fe6734cc128de24dfb553d9a48bab311f566a27b (diff) | |
download | serverdata-c3912f6f0ebdc0de532d0a5190d4c652993e054b.tar.gz serverdata-c3912f6f0ebdc0de532d0a5190d4c652993e054b.tar.bz2 serverdata-c3912f6f0ebdc0de532d0a5190d4c652993e054b.tar.xz serverdata-c3912f6f0ebdc0de532d0a5190d4c652993e054b.zip |
Required Stats, Restricted Items, and Unreleased
Items properly Unequip on condition failure
Bonuses or Bonus Bugs do not appear
Item stays unequipped
Added unequipcb script
Added Timer to RequireStat, RestrictedItem and UnreleasedItem
Diffstat (limited to 'world/map/npc/items/restricted_item.txt')
-rw-r--r-- | world/map/npc/items/restricted_item.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/world/map/npc/items/restricted_item.txt b/world/map/npc/items/restricted_item.txt index 2aa69c7e..7e3213c0 100644 --- a/world/map/npc/items/restricted_item.txt +++ b/world/map/npc/items/restricted_item.txt @@ -11,11 +11,10 @@ function|script|RestrictedItem|, if (!@minLvl) set @minLvl, 60; if (debug || getgmlevel() >= @minLvl) goto L_Return; // If the active character is staff, do nothing. message strcharinfo(0), "This item repells you with extreme force. It does not seem to be meant for you."; - unequipbyid @slotId; + callfunc "UnequipLater"; if (getgmlevel()) goto L_Return; gmcommand "@wgm Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; gmcommand "@l Restricted item '" + @itemId + "' used by character '" + strcharinfo(0) + "'."; - end; L_Return: return; |