diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-04-19 10:04:31 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-04-19 10:04:31 -0300 |
commit | c5ff4deb50096b73e3191d2fd44a872a2212fa35 (patch) | |
tree | 6104c6a930f02713b728dba736121d014b4345c5 | |
parent | 8ff7dee5332e9056747dd2ee3f51430cb7f68e4e (diff) | |
download | serverdata-c5ff4deb50096b73e3191d2fd44a872a2212fa35.tar.gz serverdata-c5ff4deb50096b73e3191d2fd44a872a2212fa35.tar.bz2 serverdata-c5ff4deb50096b73e3191d2fd44a872a2212fa35.tar.xz serverdata-c5ff4deb50096b73e3191d2fd44a872a2212fa35.zip |
Serena: React differently when you're able to leave
-rw-r--r-- | npc/001-2-32/serena.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/001-2-32/serena.txt b/npc/001-2-32/serena.txt index 04ac2852..8fe7d34c 100644 --- a/npc/001-2-32/serena.txt +++ b/npc/001-2-32/serena.txt @@ -34,7 +34,10 @@ OnInit: if (.atlf) { // TODO: We should check if the timers are running //doevent(instance_npcname(.name$)+"::OnVerify"); - npctalk l("Focus on the fight!"); + if (getq(Artis_Legion_Progress) == 4) + npctalk l("You're already done with the training, so feel free to leave."); + else + npctalk l("Focus on the fight!"); end; } |