HoS_PRC8/_mod/_module/nss/levelup_onenter.nss

17 lines
396 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// 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
}