Amon_PRC8/_module/nss/no_scr_logeq.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

14 lines
294 B
Plaintext

void main()
{
object oL = GetItemInSlot( INVENTORY_SLOT_LEFTHAND );
object oR = GetItemInSlot( INVENTORY_SLOT_RIGHTHAND );
if ( GetIsObjectValid( oL ) )
{
SetLocalObject( OBJECT_SELF, "LHAND", oL );
}
if ( GetIsObjectValid( oR ) )
{
SetLocalObject( OBJECT_SELF, "RHAND", oR );
}
}