Added ACP v4.1
Added ACP v4.1. Full compile. Updated module name. Updated release archive.
This commit is contained in:
31
_module/nss/vfx_t_next.nss
Normal file
31
_module/nss/vfx_t_next.nss
Normal file
@@ -0,0 +1,31 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
int nTailType = GetCreatureTailType(oPC) + 1;
|
||||
|
||||
//Skip right to VFXs!
|
||||
if(nTailType <=615)
|
||||
{
|
||||
nTailType = 616; //CEP2.1 Tails
|
||||
}
|
||||
else if (nTailType == 618)
|
||||
{
|
||||
nTailType = 619;
|
||||
}
|
||||
else if (nTailType == 623)
|
||||
{
|
||||
nTailType = 624;
|
||||
}
|
||||
else if (nTailType == 650)
|
||||
{
|
||||
nTailType = 657;
|
||||
}
|
||||
else if (nTailType >=816)
|
||||
{
|
||||
nTailType = 616;
|
||||
}
|
||||
|
||||
SendMessageToPC(oPC, "Your Current VFX = " + IntToString(nTailType));
|
||||
|
||||
SetCreatureTailType(nTailType, oPC);
|
||||
}
|
||||
Reference in New Issue
Block a user