Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
17 lines
207 B
Plaintext
17 lines
207 B
Plaintext
void main()
|
|
{
|
|
object oDM = GetLastSpeaker();
|
|
|
|
switch (Random(1))
|
|
{
|
|
case 0: AssignCommand ( oDM, PlaySound("as_an_cow1"));
|
|
break;
|
|
|
|
case 1: AssignCommand ( oDM, PlaySound("as_an_cow2"));
|
|
break;
|
|
}
|
|
|
|
}
|
|
|
|
|