Aantioch_Infernum/_module/nss/forcefield_wolf1.nss
Jaysyn904 22947ad4b6 Initial Upload
Initial Upload
2023-08-08 16:22:17 -04:00

21 lines
348 B
Plaintext

//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);
}
}