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
426 B
Plaintext
17 lines
426 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_speechtrigrnd
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/6/2002 2:22:48 PM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Add the randomness
|
|
if(Random(100) <= 5)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|