summaryrefslogtreecommitdiff
path: root/npc/000-0-0/sailors.txt
blob: 118bbba7d77d7838f61cefc45d40a99a55191124 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Evol scripts.
// Authors:
//    Ablu
//    Qwerty Dragon
//    Jesusalva
// Description:
//    Introduction scene where two sailors talk about how the player was found on his raft.
//    Elmo will handle dialogs between both NPCs. Modified for TMW2 by Jesusalva

000-0-0,26,23,0	script	Elmo#sailors	NPC_ELMO,{

OnTalk:
    setcamnpc;
    mesn "Elmo";
    mesq lg("This girl is lucky we found her before a shark did. I have no idea where she comes from.", "This guy is lucky we found him before a shark did. I have no idea where he comes from.");
    next;

    mesn "Magic Arpan";
    mesq lg("Yaya, it certainly was not from a trade ship, but it doesn't looks like it was from a pirate ship either.");
    next;

    mesn "Elmo";
    mesq l("It could be from a warship to a random civilian vessel. Well, this is not important now.");
    next;

    mesn "Magic Arpan";
    mesq l("Yeye.");
    next;

    mesn "Elmo";
    mesq lg("Alright, I'm going to the capt'n room, keep an eye on her, we still don't know if she's friend or foe...", "Alright, I'm going to the capt'n room, keep an eye on him, we still don't know if he's friend or foe...");
    next;

    mesn "Magic Arpan";
    mesq l("I will yaying do.");
    next;

    mesn "Elmo";
    mesq lg("Oh, and give her some clothes, the poor girl, the ones she had were in an even worse condition than the ones we have.", "Oh, and give him some clothes, the poor guy, the ones he had were in an even worse condition than the ones we have.");
    next;

    mesn "Magic Arpan";
    mesq l("Yayayaya, it's the first time someone is dressed worse than us!");
    next;

    mesn "Elmo";
    mesq lg("Hehe... Ok, I'm going to inform the capt'n up there that the girl is fine.", "Hehe... Ok, I'm going to inform the capt'n up there that the boy is fine.");
    next;

    mesn "Magic Arpan";
    mesq lg("I'll give her everything she needs, don't worry.", "I'll give him everything he needs, don't worry.");
    next;

    //mesn "Elmo";
    //mesq lg("Ok, I think she's waking up, go see her.", "Ok, I think he's waking up, go see him.");
    //next;

    mesn "Narrator";
    mes col(l("It seems like you're finally safe. You shut your eyes and fall asleep."), 9);
    next;

    restorecam;
    adddefaultskills;
    setq General_Narrator, 0;
    warp "002-1", 53, 38;
    savepoint "002-1", 55, 40;
    closedialog;
    close;

OnInit:
    .sex = G_MALE;
    end;
}

000-0-0,25,23,0	script	Magic Arpan#sailors	NPC_MAGIC_ARPAN,{
    doevent "Elmo#sailors::OnTalk";
    close;

OnInit:
    .sex = G_MALE;
    end;
}