PoA_PRC8/_module/nss/mind.nss

10 lines
193 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oPC = GetEnteringObject();
if (GetIsPC(oPC)){
if (GetWillSavingThrow(oPC) >= d20() ){
ApplyEffectToObject(DURATION_TYPE_TEMPORARY, EffectConfused(), oPC, 10.0);
}
}
}