diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-15 13:45:15 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-15 13:45:15 -0300 |
commit | 01391a41fe43599b0d5b696cade8d976bae944a9 (patch) | |
tree | c75b17b65ff8612b3ea5a07e4ccc1c115eb7498d /npc | |
parent | 99769dd446ad9458bdaa3daa573228e77f2472f1 (diff) | |
download | serverdata-01391a41fe43599b0d5b696cade8d976bae944a9.tar.gz serverdata-01391a41fe43599b0d5b696cade8d976bae944a9.tar.bz2 serverdata-01391a41fe43599b0d5b696cade8d976bae944a9.tar.xz serverdata-01391a41fe43599b0d5b696cade8d976bae944a9.zip |
You now need level 20 to rent a mount
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/mounts.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/mounts.txt b/npc/functions/mounts.txt index 24fc558ce..12d56d71f 100644 --- a/npc/functions/mounts.txt +++ b/npc/functions/mounts.txt @@ -7,7 +7,7 @@ // MoubooRent( NPC Name ) function script MoubooRent { .@n$=getarg(0, strnpcinfo(0)); - if (MOUBOO_RENTTIME > gettimetick(2)) { + if (MOUBOO_RENTTIME > gettimetick(2) || BaseLevel < 20) { mesn .@n$; mesq l("Moo!"); return; |