diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-06 19:12:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-06 19:12:29 -0300 |
commit | 60c4d2a730bdce0a79d67a9fa13c79267811b03e (patch) | |
tree | 7c788d681bdf2cdb73db1ac26a0deec921463cfc /npc | |
parent | a35c646fee0d3733f8f1a67f65a4bcd6103f7971 (diff) | |
download | serverdata-60c4d2a730bdce0a79d67a9fa13c79267811b03e.tar.gz serverdata-60c4d2a730bdce0a79d67a9fa13c79267811b03e.tar.bz2 serverdata-60c4d2a730bdce0a79d67a9fa13c79267811b03e.tar.xz serverdata-60c4d2a730bdce0a79d67a9fa13c79267811b03e.zip |
You can bury stuff on Aeros, and GM can bury undroppable items too.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/items/shovel.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index f58565975..eb1d88cbe 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -158,7 +158,11 @@ function script shovel_scatter { .@id = requestitem(); - if (.@id < 1 || countitem(.@id) < 1 || .@id == IronShovel || checkbound(.@id) || !getiteminfo(.@id, ITEMINFO_MAXCHANCE)) { + // If ID is invalid, there's not enough items, it is an Iron Shovel, it is bound = Cannot bury + // GMs bypass rarity check. (A trade restriction check would be better) + if (.@id < 1 || countitem(.@id) < 1 || .@id == IronShovel || checkbound(.@id) || + (!is_gm() && !getiteminfo(.@id, ITEMINFO_MAXCHANCE)) + ) { @ShovelLastUsed = 0; if (.@id == IronShovel || checkbound(.@id)) mesc l("You cannot bury this item!"); @@ -253,6 +257,9 @@ OnInit: AddDigRect("011-1", 20, 20, 180, 180); AddDigRect("015-1", 20, 20, 180, 180); + // Aeros can be used too (for events) + AddDigRect("001-1", 20, 20, 342, 158); + OnHour00: // Clear random treasure deletearray $@WBT_Random_id; |