diff options
author | Jesusaves <cpntb1@ymail.com> | 2023-06-30 23:23:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2023-06-30 23:23:38 -0300 |
commit | db7e2fc8502cf05ef9bc57baf140855314b0055f (patch) | |
tree | cae4ff27844dd9b9e00127ec802b673aaf305dd1 /npc/033-2 | |
parent | 474ea9ec239201219d2aaf64281dbb4c110a4ee9 (diff) | |
download | serverdata-db7e2fc8502cf05ef9bc57baf140855314b0055f.tar.gz serverdata-db7e2fc8502cf05ef9bc57baf140855314b0055f.tar.bz2 serverdata-db7e2fc8502cf05ef9bc57baf140855314b0055f.tar.xz serverdata-db7e2fc8502cf05ef9bc57baf140855314b0055f.zip |
Spawn duration was off, sorry
Diffstat (limited to 'npc/033-2')
-rw-r--r-- | npc/033-2/magic.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/033-2/magic.txt b/npc/033-2/magic.txt index fc5cc91..89989bc 100644 --- a/npc/033-2/magic.txt +++ b/npc/033-2/magic.txt @@ -231,7 +231,7 @@ function script Crossroads_Magic { case Ele_Ghost: .@MB = MisterPrickel; break; default: .@MB = Assassin; break; // ??? } - .@t = 1 + (min(readparam2(bInt), 150) / 15) + (.@PW/10); + .@t = 10 + (min(readparam2(bInt), 150) / 15) + (.@PW/5); .@a = 1 + (.@PW/25) + (.@RG/2); // Amount of spawns // Actual summoning core for (.@i=0; .@i < .@a; .@i++) { |