Added NWN Dark Sun module contents

Added NWN Dark Sun module contents.
This commit is contained in:
Jaysyn904
2021-07-12 21:24:46 -04:00
parent 556224a658
commit de24f81734
10609 changed files with 146652 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
void main()
{
object oModule = GetModule();
string sText = "--------\n";
int x;
for (x = 1; x <= 10; x++)
{
switch (x)
{
case 1: sText += "First - "; break;
case 2: sText += "Second - "; break;
case 3: sText += "Third - "; break;
case 4: sText += "Fourth - "; break;
case 5: sText += "Fifth - "; break;
case 6: sText += "Sixth - "; break;
case 7: sText += "Seventh - "; break;
case 8: sText += "Eighth - "; break;
case 9: sText += "Ninth - "; break;
case 10: sText += "Tenth - "; break;
}
sText += GetLocalString(oModule, "sPlayerKills" + IntToString(x)) + "\n";
}
SpeakString(sText);
}