Initial upload
Initial upload
This commit is contained in:
13
_module/nss/tab_tell_age.nss
Normal file
13
_module/nss/tab_tell_age.nss
Normal file
@@ -0,0 +1,13 @@
|
||||
// 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.");
|
||||
}
|
||||
Reference in New Issue
Block a user