AOC_PRC8/_module/nss/final_conv5.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

23 lines
622 B
Plaintext

#include "in_g_cutscene"
void main()
{
object oPC = GetLastSpeaker();
int iScore = GetLocalInt(oPC, "a_score");
int iFs;
int iDied = GetLocalInt (oPC,"iDied");
int iKilled = GetLocalInt (oPC,"iKilled");
int iDam = GetLocalInt(oPC, "player_dd");
int iHit = GetLocalInt(oPC, "pc_hit");
int iSwing = GetLocalInt(oPC, "pc_swing");
string sRank = GetLocalString(oPC, "rank");
int iRankNo = GetLocalInt(oPC, "status");
GestaltSpeak(0.0, OBJECT_SELF,
"You achieved "+IntToString(iKilled)+" victories and "+IntToString(iDied)+
" defeats"
,ANIMATION_FIREFORGET_VICTORY1);
}