RoT2_PRC8/_module/nss/cb_chk_30.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

27 lines
523 B
Plaintext

string sDeny;
/* Script generated by
Lilac Soul's NWN Script Generator, v. 1.5
For download info, please visit:
http://www.lilacsoul.revility.com */
//Put this OnUsed
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (!(GetHitDice(oPC) >= 30))
{
sDeny="You are not of the Epic level of 30, you cannot pass beyond this point. DO not push through the wall, a trigger on the other side will check your level and send you to jail.";
SendMessageToPC(oPC, sDeny);
return;
}
}