diff options
author | wushin <pasekei@gmail.com> | 2014-11-01 20:49:28 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2014-11-01 20:54:24 -0500 |
commit | 037a54dca1d8dca3a74ae8aa4f068561f0f294a6 (patch) | |
tree | d2a0cf283d53cb38fc88b7078ca5bbf5f715a0b9 /world/map/npc/010-2/band.txt | |
parent | 04bbfd617fd238f8650b892de350cb24e82ab7d6 (diff) | |
download | serverdata-037a54dca1d8dca3a74ae8aa4f068561f0f294a6.tar.gz serverdata-037a54dca1d8dca3a74ae8aa4f068561f0f294a6.tar.bz2 serverdata-037a54dca1d8dca3a74ae8aa4f068561f0f294a6.tar.xz serverdata-037a54dca1d8dca3a74ae8aa4f068561f0f294a6.zip |
Change Band in Dimonds Dialogue
Diffstat (limited to 'world/map/npc/010-2/band.txt')
-rw-r--r-- | world/map/npc/010-2/band.txt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/world/map/npc/010-2/band.txt b/world/map/npc/010-2/band.txt new file mode 100644 index 00000000..d0783d8d --- /dev/null +++ b/world/map/npc/010-2/band.txt @@ -0,0 +1,42 @@ +// dimonds band +010-2.gat,40,35,0|script|Phil|157, +{ + callfunc "DimondBand"; + end; +} + +010-2.gat,40,37,0|script|Jerry|160, +{ + callfunc "DimondBand"; + end; +} + +010-2.gat,42,36,0|script|Robert|162, +{ + callfunc "DimondBand"; + end; +} +function|script|DimondBand|, +{ + npctalk $@SongLyrics$[$@LyricSpot]; + set $@LyricSpot, ($@LyricSpot + 1); + if (getarraysize($@SongLyrics$) <= $@LyricSpot) + set $@LyricSpot, 0; + goto L_Return; + +L_Return: + return; +} +-|script|#BandConfig|-1, +{ + end; + +OnInit: + set $@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; +} |