diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
commit | cf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch) | |
tree | f9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/010-2/band.txt | |
parent | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff) | |
download | serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2 serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip |
Override
Diffstat (limited to 'npc/010-2/band.txt')
-rwxr-xr-x | npc/010-2/band.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/npc/010-2/band.txt b/npc/010-2/band.txt new file mode 100755 index 00000000..a94fc3a7 --- /dev/null +++ b/npc/010-2/band.txt @@ -0,0 +1,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; +} |