-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyaya_plugin_main.dic
More file actions
137 lines (113 loc) · 2.25 KB
/
Copy pathyaya_plugin_main.dic
File metadata and controls
137 lines (113 loc) · 2.25 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
//O evento que ocorre quando você clica no menu de plugins (SSP > Menu de Desenho do Proprietário > Plugins > [Nome deste plugin])
OnMenuExec : all
{
res_marker = "Plugin CD Player"
"\0\_q\*\b[2]Choose the track from the CD that you want to play.\n\n"
--
"\![*]\q[1,OnCd1]\n/
\![*]\q[2,OnCd2]\n/
\![*]\q[3,OnCd3]\n/
\![*]\q[4,OnCd4]\n/
\![*]\q[5,OnCd5]\n/
\![*]\q[6,OnCd6]\n/
\![*]\q[7,OnCd7]\n/
\![*]\q[8,OnCd8]\n/
\![*]\q[9,OnCd9]\n/
\![*]\q[10,OnC10]\n/
\![*]\q[11,OnCd11]\n/
\![*]\q[12,OnCd12]\n/
\![*]\q[13,OnCd13]\n/
\![*]\q[14,OnCd14]\n/
\![*]\q[15,OnCd15]\n/
\![*]\q[Stop playing the CD.,OnCdStop]\n\n/
\![*]\q[Exit this menu.,OnClose]\e"
}
// funções de cada faixa de CD
OnCd1
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,1]\e"
}
OnCd2
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,2]\e"
}
OnCd3
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,3]\e"
}
OnCd4
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,4]\e"
}
OnCd5
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,5]\e"
}
OnCd6
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,6]\e"
}
OnCd7
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,7]\e"
}
OnCd8
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,8]\e"
}
OnCd9
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,9]\e"
}
OnCd10
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,10]\e"
}
OnCd11
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,11]\e"
}
OnCd12
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,12]\e"
}
OnCd13
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,13]\e"
}
OnCd14
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,14]\e"
}
OnCd15
{
"\0\s[0]\![sound,stop]\e"
"\0\s[0]Starting the music.\![sound,cdplay,15]\e"
}
OnCdStop
{
"\0\s[0]\![sound,stop]\e"
}
OnClose
{
"\e"
}
//Versão do plugin
version
{
"CD Player/1.0"
}