15 lines
387 B
Plaintext
15 lines
387 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
int nEvilScore = GetLocalInt(OBJECT_SELF, "m_nEvilScore");
|
||
|
int nGoodScore = GetLocalInt(OBJECT_SELF, "m_nGoodScore");
|
||
|
string sEvilScore = IntToString(nEvilScore);
|
||
|
string sGoodScore = IntToString(nGoodScore);
|
||
|
|
||
|
string sSpeakScore = " Good " +
|
||
|
sGoodScore + ", Evil " + sEvilScore + ".";
|
||
|
|
||
|
ActionSpeakString(sSpeakScore, TALKVOLUME_TALK);
|
||
|
|
||
|
}
|