summaryrefslogtreecommitdiff
path: root/npc/functions/music.txt
blob: c8937583164f6ad4c93c225e5bb0324c7eee1d1a (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
// The Mana World Script
// Author:
//  Jesusalva
//  Gumi
// Description:
//  Music functions
//
// NOTE: This NPC uses the new public/private function call system to avoid
//       the use of doevent.
// Syntax:
//      "jukebox"::HurnscaldPrompt(); → Makes a menuint for selecting hurns tracks
//      "jukebox"::JukeboxMusic(ID); → Changes music based on prompted ID
//      "jukebox"::BroadcastMusic(MAP, ID); → Changes music based on prompted ID

-	script	jukebox	32767,{
    end;

// Helpers
public function JukeboxMusic {
    changeplayermusic .MUSIC_ARRAY[getarg(0)];
    return;
}

public function BroadcastMusic {
    changemusic getarg(0), .MUSIC_ARRAY[getarg(1)];
    return;
}

// public function listing
//  * Hurnscald

public function HurnscaldPrompt {
    menuint
        "Cancel", -1,
        "Forest of Birches", 0,
        "Adventure Begins", 1,
        "Magick Real", 5;
    mes "";
    if (@menuret == -1)
        close;
    return @menuret;
}

// Initialize stuff which will be needed
OnInit:
    .MUSIC_ARRAY[0] = "bartk - in the forest of the birches.ogg";
    .MUSIC_ARRAY[1] = "bartk - the adventure begins.ogg";
    .MUSIC_ARRAY[2] = "eric matyas - ghoulish fun.ogg";
    .MUSIC_ARRAY[3] = "eric matyas - surreal place.ogg";
    .MUSIC_ARRAY[4] = "ezili - ocean sounds.ogg";
    .MUSIC_ARRAY[5] = "magick - real.ogg";
    end;
}