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
466 B
Plaintext
17 lines
466 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName tri_checkevil
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7.1.2004 23:59:34
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Restrict based on the player's alignment
|
|
if(GetAlignmentGoodEvil(GetPCSpeaker()) != ALIGNMENT_EVIL)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|