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.
16 lines
208 B
Plaintext
16 lines
208 B
Plaintext
void main()
|
|
{
|
|
object oDM = GetLastSpeaker();
|
|
|
|
switch (Random(2))
|
|
{
|
|
case 0: AssignCommand ( oDM, PlaySound("as_an_crow1"));
|
|
break;
|
|
|
|
case 1: AssignCommand ( oDM, PlaySound("as_an_crow2"));
|
|
break;
|
|
}
|
|
|
|
}
|
|
|