diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-09-24 20:41:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-09-24 20:41:52 -0300 |
commit | 2962623c188b76ffd41592d724788adc3f7d6893 (patch) | |
tree | 19b8be3d169d38e89e4498ab46369a53fdca06f5 /npc | |
parent | 4d78c7e356cbb63409887f92f5f1d9f5669cc461 (diff) | |
download | serverdata-2962623c188b76ffd41592d724788adc3f7d6893.tar.gz serverdata-2962623c188b76ffd41592d724788adc3f7d6893.tar.bz2 serverdata-2962623c188b76ffd41592d724788adc3f7d6893.tar.xz serverdata-2962623c188b76ffd41592d724788adc3f7d6893.zip |
Add a couple reminders for the n00bs like NetSysFire.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-7/homunculus.txt | 2 | ||||
-rw-r--r-- | npc/023-3-1/logic.txt | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/npc/001-7/homunculus.txt b/npc/001-7/homunculus.txt index 8ab51ac02..5a34e0fdb 100644 --- a/npc/001-7/homunculus.txt +++ b/npc/001-7/homunculus.txt @@ -72,6 +72,8 @@ OnTouch: if (.@q != 511) Exception("Invalid quest state: "+.@q, RB_DEFAULT|RB_SPEECH|RB_ISFATAL); mesc l("Are you sure you want to proceed? You CANNOT COME BACK!"), 1; + if (TUTORIAL) + mesc l("Reminder: Keep an eye out for traps."); if (askyesno() == ASK_NO) close; } diff --git a/npc/023-3-1/logic.txt b/npc/023-3-1/logic.txt index 6715b8ca4..205598828 100644 --- a/npc/023-3-1/logic.txt +++ b/npc/023-3-1/logic.txt @@ -255,6 +255,10 @@ OnW01: unittalk(@ISBAMUTH, l("Be cursed, you fool!")); sc_start(SC_CURSE, 3000, 1, 10000, SCFLAG_NOAVOID|SCFLAG_FIXEDTICK); + // Maybe you're stupidly ignoring what we just said? + if (TUTORIAL) + dispbottom col(l("REMINDER: You do not need to kill anything, you need to ##BSURVIVE##b!"), 3); + addtimer(45000, .@n$+"::OnW01"); end; |