diff options
Diffstat (limited to 'npc/018-2-1/dustman.txt')
-rw-r--r-- | npc/018-2-1/dustman.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/018-2-1/dustman.txt b/npc/018-2-1/dustman.txt index 089725d26..03736fe72 100644 --- a/npc/018-2-1/dustman.txt +++ b/npc/018-2-1/dustman.txt @@ -132,6 +132,8 @@ L_SkipIntro: if (.state == 0) { mesn; mesq l("The event starts hourly, when the minute clock hits zero. I'll tell everyone on this room when it starts and ends."); + next; + mesn; mesc l("Do you want to exchange some of your @@ @@ for items?", countitem(BottledDust), getitemlink(BottledDust)); mes ""; if (askyesno() == ASK_YES) { @@ -141,6 +143,7 @@ L_SkipIntro: close; } + mesc l("Do you want to participate on Call Of Dusty?"); // Do you want to participate? if (askyesno() == ASK_YES) { mes ""; @@ -205,13 +208,13 @@ OnInit: OnMinute00: .state=1; donpcevent("#COD_BossManager::OnEventStart"); - npctalk l("Call Of Dusty: Event Start!"); + npctalk("Call Of Dusty: Event Start!"); end; OnCoDEnd: OnMinute15: .state=0; - npctalk l("Call Of Dusty: Event End!"); + npctalk("Call Of Dusty: Event End!"); end; OnMinute30: |