SCTX |
scn CGBladesEquipmentScript
; this script disables everything in the world after Baurus speaks to you, to make sure the player doesn't leave with it
begin gamemode
if getstage CharacterGen == 88
if getcontainer == 0
if getdisabled == 0
disable
endif
elseif getcontainer != GlenroyRef
removeMe
endif
endif
end
begin OnAdd player
set MQ01.heavyarmor to 1
end
begin OnEquip player
set MQ01.heavyArmorEquip to 1
end
|