diff options
Diffstat (limited to 'npc/functions/shops.txt')
-rw-r--r-- | npc/functions/shops.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/functions/shops.txt b/npc/functions/shops.txt index 79890e815..915964bfc 100644 --- a/npc/functions/shops.txt +++ b/npc/functions/shops.txt @@ -1,13 +1,14 @@ // Evol functions. // Author: // 4144 +// Jesusalva // Description: // Shops utility functions // Variables: -// none +// Item ID, Item Price, Item Amount function script restoreshopitem { if (shopcount(getarg(0)) < getarg(1)) - sellitem getarg(0), -1, getarg(1); + sellitem getarg(0), getarg(1), getarg(2); return; } |