diff options
Diffstat (limited to 'npc')
-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"; |