Initial upload
Initial upload
This commit is contained in:
30
_module/nss/vfx_t_prev.nss
Normal file
30
_module/nss/vfx_t_prev.nss
Normal file
@@ -0,0 +1,30 @@
|
||||
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);
|
||||
|
||||
}
|
Reference in New Issue
Block a user