43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
int GetNextShoulderIndex( int iIndex)
|
|
{
|
|
|
|
if( iIndex ==185) //CEP2.2
|
|
iIndex = 122;
|
|
|
|
else if( iIndex == 119)
|
|
iIndex = 25;
|
|
|
|
else if( iIndex == 2)
|
|
iIndex = 0;
|
|
|
|
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_RSHOULDER);
|
|
|
|
if( GetIsDM( oPlayer))
|
|
SendMessageToPC( oPlayer, "The index before is: " + IntToString( iIndex));
|
|
|
|
iIndex--;
|
|
iIndex = GetNextShoulderIndex( 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_RSHOULDER, iIndex, TRUE);
|
|
|
|
if( GetIsObjectValid( oNewItem))
|
|
{
|
|
AssignCommand( oPlayer, ActionEquipItem( oNewItem, iSlot));
|
|
DestroyObject( oItem);
|
|
}
|
|
else
|
|
DestroyObject( oNewItem);
|
|
}
|