Changed folder name.
Changed folder name.
This commit is contained in:
46
_module/nss/idcust_prevthigh.nss
Normal file
46
_module/nss/idcust_prevthigh.nss
Normal file
@@ -0,0 +1,46 @@
|
||||
int GetNextThighIndex( int iIndex)
|
||||
{
|
||||
|
||||
if( iIndex == 185)
|
||||
iIndex = 63;
|
||||
|
||||
if( iIndex == 62)
|
||||
iIndex = 16;
|
||||
|
||||
if( iIndex == 2)
|
||||
iIndex = 1;
|
||||
if( iIndex == 0)
|
||||
iIndex = 186;
|
||||
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user