diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/kami.txt | 4 | ||||
-rw-r--r-- | npc/commands/shroom.txt | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index 01a28aff5..54dfbdec8 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -20,7 +20,7 @@ OnServMsg: .@request$ = strcharinfo(0)+": "; .@request$ += implode(.@atcmd_parameters$, " "); // This can be slow, beware - .@c = getunits(BL_PC, .@players, 40); + .@c = getunits(BL_PC, .@players, MAX_CYCLE_PC); for (.@i = 0; .@i < .@c; .@i++) { message(.@players[.@i], .@request$); } @@ -28,7 +28,7 @@ OnServMsg: OnBuff: // Disabled command, used for debug purposes - .@c = getunits(BL_PC, .@players, 40); + .@c = getunits(BL_PC, .@players, MAX_CYCLE_PC); for (.@i = 0; .@i < .@c; .@i++) { attachrid(.@players[.@i]); sc_start SC_INCMHPRATE, 300000, 100; diff --git a/npc/commands/shroom.txt b/npc/commands/shroom.txt index 041027424..1b05bbcf8 100644 --- a/npc/commands/shroom.txt +++ b/npc/commands/shroom.txt @@ -29,7 +29,7 @@ OnShroom: .@gmId=monster("boss", 45, 45, strcharinfo(0), .@gmType, 1); // Max 40 connected players for this to work - .@c = getunits(BL_PC, .@players, 40); + .@c = getunits(BL_PC, .@players, MAX_CYCLE_PC); for (.@i = 0; .@i < .@c; .@i++) { debugmes "@shroom: Attach account %d to spawn %d %s (%d)", .@players[.@i], .@mobAm, .@mobName$, .@mobId; attachrid(.@players[.@i]); |