Amon_PRC8/_module/nss/mage_wizonly.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

14 lines
229 B
Plaintext

void main()
{
object oPC = GetEnteringObject();
if (!GetLevelByClass(CLASS_TYPE_WIZARD, oPC) >= 1){
object oTarget = GetWaypointByTag("WIZ_ONLY");
AssignCommand(oPC, JumpToObject(oTarget));
}
else{}
}