HoS_PRC8/_mod/_module/nss/levelup_onenter.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

17 lines
396 B
Plaintext

// set the name of the trigger to the number of experience points you want the player
// to have.
void main()
{
object oPC=GetEnteringObject();
object oWP=GetNearestObjectByTag("LEVELUP_POINT");
string sName=GetName(oWP);
int nX=StringToInt(sName);
if (GetIsPC(oPC)==TRUE)
{ // PC
if (nX>GetXP(oPC))
{ // level up
SetXP(oPC,nX);
} // level up
} // PC
}