Aantioch_Infernum/_module/nss/69_hench_whatxp.nss
EpicValor 07f4ebed49 Added henchman rental
Many areas, items, and creatures were adjusted for balance and aesthetics.
2023-08-24 15:20:50 -05:00

12 lines
306 B
Plaintext

//69_hench_whatxp
// NPC lets PC know how much XP s/he has
// Created by: 69MEH69 Oct2004
void main()
{
object oPC = GetPCSpeaker();
int nHenchXP = GetLocalInt(OBJECT_SELF, "HENCH_XP");
string sHenchXP = IntToString(nHenchXP);
SendMessageToPC(oPC, "I have " + sHenchXP + " experience points.");
}