Battledale_PRC8/_module/nss/idcust_modthigh.nss
Jaysyn904 4dba880acb Added ACP v4.1
Added ACP v4.1. Full compile.  Updated module name.  Updated release archive.
2024-09-08 18:23:43 -04:00

67 lines
1.5 KiB
Plaintext

int GetNextThighIndex( int iIndex)
{
if( iIndex == 2)
iIndex = 3;
else if( iIndex == 17)
iIndex = 63;
else if( iIndex == 64)
iIndex = 80; //CEP2.2
else if( iIndex == 95)
iIndex = 112;
else if( iIndex == 119)
iIndex = 120;
else if( iIndex == 123)
iIndex = 150;
else if( iIndex == 163)
iIndex = 175;
else if( iIndex == 176)
iIndex = 180;
else if( iIndex == 182)
iIndex = 186;
else if( iIndex == 187)
iIndex = 1;
return iIndex;
}
void main()
{
//First line of the item customization script
object oPlayer = GetPCSpeaker();
int iSlot = GetLocalInt( OBJECT_SELF, "iSlot");
object oItem = GetItemInSlot( iSlot, oPlayer);
int iIndex = GetItemAppearance( oItem, ITEM_APPR_TYPE_ARMOR_MODEL, ITEM_APPR_ARMOR_MODEL_LTHIGH);
if( GetIsDM( oPlayer))
SendMessageToPC( oPlayer, "The index before is: " + IntToString( iIndex));
iIndex++;
iIndex = GetNextThighIndex( iIndex);
if( GetIsDM( oPlayer))
SendMessageToPC( oPlayer, "The index after is: " + IntToString( iIndex));
object oNewItem = CopyItemAndModify( oItem, ITEM_APPR_TYPE_ARMOR_MODEL, ITEM_APPR_ARMOR_MODEL_LTHIGH, iIndex, TRUE);
object oNewItem2 = CopyItemAndModify( oNewItem, ITEM_APPR_TYPE_ARMOR_MODEL, ITEM_APPR_ARMOR_MODEL_RTHIGH, iIndex, TRUE);
DestroyObject( oNewItem);
if( GetIsObjectValid( oNewItem2))
{
AssignCommand( oPlayer, ActionEquipItem( oNewItem2, iSlot));
DestroyObject( oItem);
}
else
DestroyObject( oNewItem2);
}