Gamma Age module files

Added internal Gamma Age module files.
This commit is contained in:
Jaysyn904
2021-07-14 16:40:26 -04:00
parent c6517c8942
commit ac0d96bd74
877 changed files with 53029 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
int StartingConditional()
{
int nMyNum = GetLocalInt(OBJECT_SELF, "dmfi_dmwOffset");
SetLocalInt(OBJECT_SELF, "dmfi_dmwOffset", nMyNum+1);
object oMySpeaker = GetPCSpeaker();
object oMyTarget = GetLocalObject(oMySpeaker, "dmfi_univ_target");
location lMyLoc = GetLocalLocation(oMySpeaker, "dmfi_univ_location");
string sMyString = GetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nMyNum));
if(sMyString == "")
{
return FALSE;
}
else
{
SetCustomToken(8000 + nMyNum, sMyString);
return TRUE;
}
}