Battledale_PRC8/_module/nss/idcust_modweapa.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

35 lines
1019 B
Plaintext

#include "idcust_weap_idex"
void main()
{
object oPlayer = GetPCSpeaker();
int iSlot = GetLocalInt( OBJECT_SELF, "iSlot");
object oItem = GetItemInSlot( iSlot, oPlayer);
//int iIndex = GetLocalInt( OBJECT_SELF, "iIndex");
int iIndex = GetItemAppearance( oItem, ITEM_APPR_TYPE_WEAPON_MODEL, ITEM_APPR_WEAPON_MODEL_TOP);
int iItemType = GetBaseItemType( oItem);
if( GetIsDM( oPlayer))
SendMessageToPC( oPlayer, "The index before is: " + IntToString( iIndex));
iIndex++;
iIndex = GetNextWeaponIndex( iIndex, iItemType, ITEM_APPR_WEAPON_MODEL_TOP);
if( GetIsDM( oPlayer))
SendMessageToPC( oPlayer, "The index after is: " + IntToString( iIndex));
//SetLocalInt( OBJECT_SELF, "iIndex", iIndex);
object oNewItem = CopyItemAndModify( oItem, ITEM_APPR_TYPE_WEAPON_MODEL, ITEM_APPR_WEAPON_MODEL_TOP, iIndex, TRUE);
if( GetIsObjectValid( oNewItem))
{
AssignCommand( oPlayer, ActionEquipItem( oNewItem, iSlot));
DestroyObject( oItem);
}
else
DestroyObject( oNewItem);
}