summaryrefslogtreecommitdiff
path: root/npc/010-2/band.txt
blob: a94fc3a7a91f433cabc713246cca00dcb12d044f (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
010-2,40,35,0	script	Phil	NPC157,{
    callfunc "DimondBand";
    end;
}

010-2,40,37,0	script	Jerry	NPC160,{
    callfunc "DimondBand";
    end;
}

010-2,42,36,0	script	Robert	NPC162,{
    callfunc "DimondBand";
    end;
}
function	script	DimondBand	{
    npctalk strnpcinfo(0), $@SongLyrics$[$@LyricSpot];
    $@LyricSpot = ($@LyricSpot + 1);
    if (getarraysize($@SongLyrics$) <= $@LyricSpot)
        $@LyricSpot = 0;
    goto L_Return;

L_Return:
    return;
}
-	script	#BandConfig	NPC32767,{
    end;

OnInit:
    $@LyricSpot = 0;
    setarray $@SongLyrics$, "Laid back in Hurnscald, with a GP in my hand,",
                            "Watchin' GMs and players on the street,",
                            "And I catch a glimpse of cheap rares on ManaMarket once a while,",
                            "There's a woman who wants me to save their child.",
                            "I got the Argean blues!";
    end;
}