HoS_PRC8/_mod/_module/nss/npcact_cms_about.nss
Jaysyn904 e2f4ba74d5 Merged redundant hak files
Merged redundant hak files.  Moved hak scripts into module.  Updated gitignore.  Full Compile.  Added release folder & archive.
2024-12-12 15:02:17 -05:00

30 lines
1.0 KiB
Plaintext

// npcact_cms_about
int StartingConditional()
{
object oMod=GetModule();
int nN;
object oItem=GetLocalObject(GetPCSpeaker(),"oCMSItem");
int nCurrency=GetLocalInt(oItem,"nCurrency");
int nV;
string sFinal="";
string sS;
sS=GetLocalString(oMod,"sMSCurrencyName"+IntToString(nCurrency));
sFinal=sS+" ";
nN=1;
sS=GetLocalString(oMod,"sMSCoinName"+IntToString(nCurrency)+"_"+IntToString(nN));
while(GetStringLength(sS)>0)
{ // monetary system
sFinal=sFinal+sS+" (abbreviation: ";
sS=GetLocalString(oMod,"sMSCoinAbbr"+IntToString(nCurrency)+"_"+IntToString(nN));
sFinal=sFinal+sS+") Value:";
nV=GetLocalInt(oMod,"nMSCoinValue"+IntToString(nCurrency)+"_"+IntToString(nN));
sFinal=sFinal+IntToString(nV)+" MUs, ";
nN++;
sS=GetLocalString(oMod,"sMSCoinName"+IntToString(nCurrency)+"_"+IntToString(nN));
} // monetary system
sFinal=GetStringLeft(sFinal,GetStringLength(sFinal)-2);
sFinal=sFinal+".";
SetCustomToken(999994,sFinal);
return TRUE;
}