Aantioch_Infernum/_module/nss/forcefield_wolf1.nss

21 lines
348 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
//Put this OnEnter
void main()
{
object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return;
if (GetAbilityScore(oPC, ABILITY_INTELLIGENCE)>= 28)
{
object oDeny = GetWaypointByTag("wp_wolfcryptout");
string sDeny="A strange force throws you back";
AssignCommand(oPC, JumpToObject(oDeny));
SendMessageToPC(oPC, sDeny);
}
}