generated from Jaysyn/ModuleTemplate
18 lines
209 B
Plaintext
18 lines
209 B
Plaintext
void main()
|
|
{
|
|
object oUser = GetItemActivator();
|
|
|
|
int nRandom=Random(2);
|
|
if (nRandom==1)
|
|
{
|
|
AssignCommand(oUser,PlaySound("as_cv_eulpipe1"));
|
|
}
|
|
else
|
|
{
|
|
AssignCommand(oUser,PlaySound("as_cv_eulpipe2"));
|
|
}
|
|
}
|
|
|
|
|
|
|