diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-01-15 11:12:41 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-01-15 11:12:41 -0300 |
commit | 670449deae5109ecc2cdae7b2483e30c0ac58415 (patch) | |
tree | 7c001afdd498073fea3ec767834d2ae7b1f2b915 | |
parent | 221ab3c5047cf9fa0a4e125fee9326d53bf22f71 (diff) | |
download | serverdata-670449deae5109ecc2cdae7b2483e30c0ac58415.tar.gz serverdata-670449deae5109ecc2cdae7b2483e30c0ac58415.tar.bz2 serverdata-670449deae5109ecc2cdae7b2483e30c0ac58415.tar.xz serverdata-670449deae5109ecc2cdae7b2483e30c0ac58415.zip |
Fix a bug on East Aeros Spawn using @aeros command
Demote @aeros command to GM 80 (was: 99)
-rw-r--r-- | npc/001-1/eventmaster.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/001-1/eventmaster.txt b/npc/001-1/eventmaster.txt index 1676d93ea..6e8d99523 100644 --- a/npc/001-1/eventmaster.txt +++ b/npc/001-1/eventmaster.txt @@ -668,7 +668,7 @@ OnCall: areamonster("001-1", 20, 20, 340, 160, strmobinfo(1, atoi(.@atcmd_parameters$[0])), atoi(.@atcmd_parameters$[0]), atoi(.@atcmd_parameters$[1]), "Mana Being#001-1::OnAerosMobDeath"); break; default: - areamonster("001-1", 171, 320, 158, 340, strmobinfo(1, atoi(.@atcmd_parameters$[0])), atoi(.@atcmd_parameters$[0]), atoi(.@atcmd_parameters$[1]), "Mana Being#001-1::OnAerosMobDeath"); + areamonster("001-1", 171, 20, 340, 160, strmobinfo(1, atoi(.@atcmd_parameters$[0])), atoi(.@atcmd_parameters$[0]), atoi(.@atcmd_parameters$[1]), "Mana Being#001-1::OnAerosMobDeath"); break; } logmes "@aeros "+strmobinfo(1, atoi(.@atcmd_parameters$[0])) + " " + .@atcmd_parameters$[1], LOGMES_ATCOMMAND; @@ -677,6 +677,6 @@ OnCall: end; OnInit: - bindatcmd "aeros", "@aeros::OnCall", 99, 99, 0; + bindatcmd "aeros", "@aeros::OnCall", 80, 99, 0; end; } |