Aantioch_Infernum/_module/nss/no_scr_logeq.nss
EpicValor f6270c3cb8 Tweaked several areas, mobs, and added
the codi ai to some mobs.
2023-09-28 23:01:25 -05: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 );
}
}