RoT2_PRC8/_module/nss/tab_tell_age.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

14 lines
386 B
Plaintext

// Will tell the player his/her age... draws info from data base . Tab
void main()
{
object oPC = GetLastUsedBy();
object oMOD = GetModule();
string sName = GetName(oPC);
string CDKey = GetPCPublicCDKey(oPC);
string sHID = sName+CDKey; // Hcr Style;
int iAge = GetLocalInt(oMOD,sHID+"AGE");
ActionSpeakString("You are "+IntToString(iAge)+" Years old.");
}