diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-15 21:57:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-15 21:57:50 -0300 |
commit | 052ad3cbfd5edaeea24b187129b7d2c2b2756ac7 (patch) | |
tree | 218eacdfa0f2a1bb1effc8a60b4bd029aed444f0 /npc/012-1/guards.txt | |
parent | d219a873543c28856d57e75ef78ae7544890b2a2 (diff) | |
download | serverdata-052ad3cbfd5edaeea24b187129b7d2c2b2756ac7.tar.gz serverdata-052ad3cbfd5edaeea24b187129b7d2c2b2756ac7.tar.bz2 serverdata-052ad3cbfd5edaeea24b187129b7d2c2b2756ac7.tar.xz serverdata-052ad3cbfd5edaeea24b187129b7d2c2b2756ac7.zip |
Bugfix
Diffstat (limited to 'npc/012-1/guards.txt')
-rw-r--r-- | npc/012-1/guards.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/012-1/guards.txt b/npc/012-1/guards.txt index df0efce16..60acace5b 100644 --- a/npc/012-1/guards.txt +++ b/npc/012-1/guards.txt @@ -20,7 +20,7 @@ L_Admus: mes col("Protip: Use @hide to don't interfer.", 9); - mes l("Determine Team Size (If everyone is ready and stdby at Tulimshar, use: @@. Minimum 2 players.)", getusers(1)); + mes l("Determine Team Size (If everyone is ready and stdby at Tulimshar, use: @@. Minimum 2 players.)", getusers(1)-1); input $@BG1_SIZE; if ($@BG1_SIZE < 2) close; $@BG1_SIZE=$@BG1_SIZE+1; @@ -52,7 +52,7 @@ L_Admus: disablenpc "Richard"; disablenpc "Soul Menhir#hurns"; disablenpc "HurnsShip"; - announce l("##1Hear ya, hear ya! There are @@ vacant slots at Hurnsguard to LIBERATE HURNSCALD!", $@BG1_SIZE), bc_all | bc_npc; + announce l("##1Hear ya, hear ya! There are @@ vacant slots at Hurnsguard to LIBERATE HURNSCALD!", $@BG1_SIZE-1), bc_all | bc_npc; mes "##1You are assigned to Monster Forces. Do not leave Hurnscald."; close; @@ -472,7 +472,7 @@ OnPlayerDeath: OnReadyCheck: .@Alliance = getwaitingroomstate(0,"start#hurns_lib"); - if ( .@Alliance < 1 ) + if ( .@Alliance < $@BG1_SIZE-1 ) end; donpcevent "Hurnsguard::OnEnterBG"; donpcevent "Hurnsguard::OnDoEvent"; |