UW2_PRC8/_module/nss/vfx_t_prev.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

31 lines
536 B
Plaintext

void main()
{
object oPC = GetPCSpeaker();
int nTailType = GetCreatureTailType(oPC) - 1;
//Skip to VFXs!
if (nTailType <= 616) //Lower than VFX #s
{
nTailType = 815; //Then Start over..
}
else if (nTailType ==656)
{
nTailType = 649;
}
else if(nTailType == 623)
{
nTailType = 622;
}
else if(nTailType == 618)
{
nTailType = 617;
}
SendMessageToPC(oPC, "Your Current # = " + IntToString(nTailType));
SetCreatureTailType(nTailType, oPC);
}