diff options
-rw-r--r-- | npc/017-3/doug.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/npc/017-3/doug.txt b/npc/017-3/doug.txt index bde54a8e0..432629438 100644 --- a/npc/017-3/doug.txt +++ b/npc/017-3/doug.txt @@ -7,6 +7,8 @@ // Weekly Quest 017-3,68,87,0 script Doug NPC_PLAYER,{ + if (BaseLevel < 25) + goto L_Weak; .@q2=getq2(LoFQuest_Doug); if (.@q2 < santime() || gcsantime(.@q2)) { mesn; @@ -38,6 +40,14 @@ close; } +L_Weak: + mesn; + mesq l("Heya dude! Don't you think this room is too dark?"); + next; + mesn; + mesq l("I am trying to invent the light bulb, but my name is not Thomas..."); + close; + OnInit: .@npcId = getnpcid(0, .name$); setunitdata(.@npcId, UDT_HEADTOP, FancyHat); |