diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-22 16:28:40 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-22 16:28:40 -0300 |
commit | 92a251f498a485ef2cff39f94f87e9e6e145de12 (patch) | |
tree | f15526861be6e54c9cf1fee830262e87f11620c5 /npc | |
parent | 898ad77faa9ed091298ae4b0da9d2b9fdec89f96 (diff) | |
download | serverdata-92a251f498a485ef2cff39f94f87e9e6e145de12.tar.gz serverdata-92a251f498a485ef2cff39f94f87e9e6e145de12.tar.bz2 serverdata-92a251f498a485ef2cff39f94f87e9e6e145de12.tar.xz serverdata-92a251f498a485ef2cff39f94f87e9e6e145de12.zip |
Ops, new abizit() → ShowAbizit()
Diffstat (limited to 'npc')
-rw-r--r-- | npc/config/magic.txt | 4 | ||||
-rw-r--r-- | npc/items/books.txt | 2 | ||||
-rw-r--r-- | npc/magic/abizit.txt | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/npc/config/magic.txt b/npc/config/magic.txt index 6516a2609..b5239e9f2 100644 --- a/npc/config/magic.txt +++ b/npc/config/magic.txt @@ -87,8 +87,8 @@ function script mescordialog { return; } -// abizit({dialog=1}) -function script abizit { +// ShowAbizit({dialog=1}) +function script ShowAbizit { .@dial=getarg(0, true); if (.@dial) mesn l("Current Magic Control"); diff --git a/npc/items/books.txt b/npc/items/books.txt index b0a18c083..23469db7b 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -235,7 +235,7 @@ OnInit: mesc l("Summon Plants - @sk-plantkingdom"); next; - abizit(); + ShowAbizit(true); next; break; case 3: diff --git a/npc/magic/abizit.txt b/npc/magic/abizit.txt index 311498b87..53ddbe260 100644 --- a/npc/magic/abizit.txt +++ b/npc/magic/abizit.txt @@ -19,7 +19,7 @@ OnCall: end; } - abizit(false); + ShowAbizit(false); // set cooldown @abizit_at=gettimetick(2); |