Amon_PRC8/_module/nss/no_scr_logeq.nss

14 lines
294 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
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 );
}
}