diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-0-2/saves.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/npc/003-0-2/saves.txt b/npc/003-0-2/saves.txt index 29aa77e67..3038e4299 100644 --- a/npc/003-0-2/saves.txt +++ b/npc/003-0-2/saves.txt @@ -21,7 +21,7 @@ if (!.saul) mes l("─ Saulc should be on his residence, going over the plans again."); if (!.jak1) - mes l("─ Jak1 should be on the Mirror Lake or verifying the troops."); + mes l("─ Jak1 should be on the Mirror Lake or verifying the infrastructure."); if (!.lawn) mes l("─ LawnCable is likely on his room doing research, I wouldn't disturb him if I were you."); if (!.craz) @@ -40,16 +40,14 @@ OnInit: .sex = G_MALE; .distance = 5; .session = false; - .saul = false; - .jak1 = false; - .lawn = false; - .craz = false; -OnMinute33: +OnMinute17: +OnMinute44: disablenpc "HC Saulc"; disablenpc "HC Jak1"; disablenpc "HC LawnCable"; disablenpc "HC Crazyfefe"; + .saul = false; .jak1 = false; .lawn = false; .craz = false; @@ -73,6 +71,7 @@ OnMinute33: enablenpc "HC Crazyfefe"; enablenpc "High Council Secretary"; setcells "003-0-2", 32, 35, 37, 37, 1, "HCouncilGate"; + .session = true; npctalk "The council is now in session."; maptimer("003-0-2", 100, "HC Jesusalva::OnDeloc"); end; |