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.
15 lines
283 B
Plaintext
15 lines
283 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetEnteringObject();
|
|
|
|
if(GetIsPC(oPC) == TRUE)
|
|
{
|
|
object oTarget = GetObjectByTag("fr_iwd_fog");
|
|
int nType = DURATION_TYPE_PERMANENT;
|
|
effect eFX = EffectVisualEffect(APPEARANCE_TYPE_ZOMBIE_TYRANT_FOG, FALSE);
|
|
|
|
ApplyEffectToObject(nType, eFX, oTarget);
|
|
}
|
|
}
|
|
|