21 lines
348 B
Plaintext
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);
|
||
|
}
|
||
|
|
||
|
}
|