Initial upload

Initial upload
This commit is contained in:
Jaysyn904
2022-10-07 14:20:31 -04:00
parent 0bbbd2678a
commit 128e7e59a4
7060 changed files with 4955665 additions and 0 deletions

26
module/nss/ac_pccheck.nss Normal file
View File

@@ -0,0 +1,26 @@
//////////////////////////////////////////
//** Created By **Guile / Genisys**
//on 4/24/2008
//This script will check to make sure
//The player is playing a legal character
//By checking AC / Hit Points / Feats / Ability Scores
//Based Upon Level & Certain Classes
//Note this script will Spam the message to all DMs and thet Server Log if..
//The Player meets multiple Conditions, if it's only one message
//I would would investigate first.
//////////////////Main Script/////////////
void main()
{
//Declare Major Variables:
object oPC;
object oTarget;
object oItem;
oPC = GetItemActivatedTarget();
oTarget = oPC;
oItem = GetItemActivated();
if(!GetIsPC(oPC)) return;
ExecuteScript("cheatercheck1", oTarget);
}