问:能移除假发的护甲值吗?
答:请使用SSEEdit将以下脚本应用于假发插件中的“Armor”表单:
unit UserScript;
//============================================================================
function Initialize: integer;
begin
end;
//============================================================================
function Process(e: IInterface): integer;
begin
if Signature(e) <> 'ARMO' then
Exit;
SetElementEditValues(e, 'BOD2\Armor Type', 'Clothing');
SetElementEditValues(e, 'DNAM', '0');
end;
end.