NWNDS/nwnds_module/ps_pspcheck.nss

14 lines
248 B
Plaintext
Raw Normal View History

#include "lib_psionic"
void main()
{
object oPC=OBJECT_SELF;
PSPCheck(oPC);
int nPSP=GetPSP(oPC);
int nPSPMax=GetMaxPSP(oPC);
FloatingTextStringOnCreature("PSP: "+IntToString(nPSP)+" / "+IntToString(nPSPMax), oPC, FALSE);
}