summaryrefslogtreecommitdiff
path: root/npc/025-2/guard.txt
blob: 0a00f0cfda7dce1d6c5f5be7478f39f024cb3716 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// TMW-2 Script.
// Author:
//    Jesusalva
// Notes:
//    Generic Guard from the Alliance

025-2,108,23,0	script	Alliance Guard	NPC_BRGUARD_BOW,{
    .@q=getq(General_Narrator);
    if (.@q >= 21)
        goto L_ShortSummary;
    setpcblock(255, true);
    mesn;
    mesq l("Hey %s, I was informed about your arrival. You are here, good!");
    setpcblock(255, false);
    close;

L_ShortSummary:
    .@open$=l("We have set some stalls which should be useful if you plan into raiding the Impregnable Fortress.");
    .@lock$=l("It is locked but %s should be able to coordinate a raid on it.", $MOST_HEROIC$);
    mesn;
    mesq l("Past this point is the Fortress Island. %s Even so, be careful, the town should not exist.", ($FORTRESS_STATE ? .@open$ : .@lock$));

    // Endtrail
    mes "";
    mesc l("@@ You need to wait further releases to continue this quest!", b(l("WARNING:"))), 1;
    close;
}