Files
Anphillia_PRC8/_module/nss/pat_tst.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

26 lines
653 B
Plaintext

/************************************************************************
* script name : pat_tst
* created by : eyesolated
* date : 2018/7/31
*
* description : Test script for PAT
*
* changes : 2018/7/31 - eyesolated - Initial creation
************************************************************************/
#include "pat_cfg"
void main()
{
object oUser = GetLastUsedBy();
string sTest = GetTag(OBJECT_SELF);
// Get target CR
int nCR = StringToInt(GetStringRight(sTest, 2));
// Get Area
object oArea = GetArea(OBJECT_SELF);
// Set PAT CR on the Area
SetLocalInt(oArea, PAT_VAR_CR, nCR);
}