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/unreleased_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/unreleased_item.txt')
-rw-r--r-- | world/map/npc/items/unreleased_item.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/world/map/npc/items/unreleased_item.txt b/world/map/npc/items/unreleased_item.txt index 708cc1e0..457c2bcb 100644 --- a/world/map/npc/items/unreleased_item.txt +++ b/world/map/npc/items/unreleased_item.txt @@ -5,8 +5,12 @@ function|script|UnreleasedItem|, { - if (debug || getgmlevel()) end; // If the server allows equipping unreleased items or if the active character is staff, do nothing. + // If the server allows equipping unreleased items or if the active character is staff, do nothing. + if (debug || getgmlevel()) + goto L_Return; message strcharinfo(0), "You have difficulties equipping this item, as if it is not yet fully in this world."; - unequipbyid @slotId; - end; + callfunc "UnequipLater"; + +L_Return: + return; } |