PGCC_PRC8/_module/nss/vata_rdd.nss
Jaysyn904 e51634d39b Initial upload
Initial upload.
2024-10-09 14:17:22 -04:00

22 lines
788 B
Plaintext

#include "inc_arenapc"
void main()
{
object oPC = GetPCSpeaker();
object oCreature = ArenaSummon("cs1_rdd");
int iPCLevel = GetLevelByPosition(1, oPC) + GetLevelByPosition(2, oPC) + GetLevelByPosition(3, oPC);
int iLevelUp = 1;
while (iLevelUp < iPCLevel)
{
if (iLevelUp > 4 && iLevelUp < 15) iLevelUp = LevelUpHenchman(oCreature, CLASS_TYPE_DRAGON_DISCIPLE, TRUE);
else iLevelUp = LevelUpHenchman(oCreature, CLASS_TYPE_BARD, TRUE, GetCreatureStartingPackage(oCreature));
}
EquipNPC(oCreature, iLevelUp);
SendMessageToPC(oPC, GetName(oCreature) + "'s level = Bard " + IntToString(GetLevelByClass(CLASS_TYPE_BARD, oCreature)) + ", Red Dragon Disciple " + IntToString(GetLevelByClass(CLASS_TYPE_DRAGON_DISCIPLE, oCreature)));
}