14 lines
386 B
Plaintext
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.");
|
||
|
}
|