Added PnP Dire Rat.

Added PnP Dire Rat.
This commit is contained in:
Jaysyn904
2021-07-21 17:48:43 -04:00
parent 552f1686c8
commit b01c5cc7db
10849 changed files with 171143 additions and 1 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);
}