diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-09-14 23:10:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-09-14 23:10:00 -0300 |
commit | 9284a1c3406be2783c68aa05f11afee435887e57 (patch) | |
tree | 5684cc3c4f3c838952aeb92c723a33dbb6d90667 /npc/functions/permissions.txt | |
parent | efe9a4e6e1eb60ab5d2015acbfbbce82b0be70e9 (diff) | |
download | serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.gz serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.bz2 serverdata-9284a1c3406be2783c68aa05f11afee435887e57.tar.xz serverdata-9284a1c3406be2783c68aa05f11afee435887e57.zip |
Alchemy Table: Now you should be able to brew multiple instances at once!
However, this is expensive. Sponsors, who pay for hardware, can brew up to 25x at once.
Everyone else like me, who lives with other ppl money, will be capped to 10x at once.
I think 10 will be plenty without putting too much burden on the server.
Diffstat (limited to 'npc/functions/permissions.txt')
-rw-r--r-- | npc/functions/permissions.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/npc/functions/permissions.txt b/npc/functions/permissions.txt index eaedcce92..2838f7a92 100644 --- a/npc/functions/permissions.txt +++ b/npc/functions/permissions.txt @@ -19,3 +19,7 @@ function script is_admin { function script is_staff { return (getgmlevel() >= 5); } + +function script is_sponsor { + return (getgmlevel()); +} |