diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-02-25 13:17:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-02-25 13:17:01 -0300 |
commit | 459c130d50a207dc2f99a169fed918e680147062 (patch) | |
tree | b8f398aa45ad34f191ecf32ad79c8ca0f59dca01 /npc/003-9/recepcionist.txt | |
parent | 000f22ab664a161098c119601373dc46413c5be8 (diff) | |
download | serverdata-459c130d50a207dc2f99a169fed918e680147062.tar.gz serverdata-459c130d50a207dc2f99a169fed918e680147062.tar.bz2 serverdata-459c130d50a207dc2f99a169fed918e680147062.tar.xz serverdata-459c130d50a207dc2f99a169fed918e680147062.zip |
After some live testing, Inn Cutscene is complete :3
Diffstat (limited to 'npc/003-9/recepcionist.txt')
-rw-r--r-- | npc/003-9/recepcionist.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/npc/003-9/recepcionist.txt b/npc/003-9/recepcionist.txt index 69b0ad890..a4efdd6ea 100644 --- a/npc/003-9/recepcionist.txt +++ b/npc/003-9/recepcionist.txt @@ -37,15 +37,21 @@ close; L_Cutscene: - mesc l("continues"), 1; - close; + mesn strcharinfo(0); + mesq l("Hello, Lua told me she booked a room for me."); + next; + mesn; + mesq l("Ah, so you must be %s, the new guy! Yes, it is on the rooms upstairs. I'll bring you there, don't you worry a thing!", strcharinfo(0)); + tutmes l("During cutscenes, you cannot move. If you do, you'll be forcibly pushed back."), l("Cutscenes"); + next; + closeclientdialog; .@mapn$="tinn@"+getcharid(0); .@inst = instance_create("Tulim Inn "+getcharid(0), getcharid(3), IOT_CHAR); instance_attachmap("003-9", .@inst, false, .@mapn$); // Instance lasts 6 minutes instance_set_timeout(360, 360, .@inst); instance_init(.@inst); - warp .@man$, 36, 47; + warp .@mapn$, 36, 47; setpcblock(255, true); addtimer 1000, "#TulimInnStory::OnEvent1"; close; |