Page MenuHomeFeedback Tracker

Multiple issues when export mission.sqm to sqf
New, NormalPublic

Description

  • Duplicated ; at the end of statements
	_this setname "Liam Rollins";;
	_this setface "GreekHead_A3_09";;
	_this setspeaker "Male12ENG";;
	_this setpitch 0.99;;
  • Attributes using "%s" as variable name are not parsed correctly
  • Attributes are exported even if _value is equal to the defaultValue set in config

Attribute: expression = "if (!is3DEN && !isMultiplayer) then {_this setVariable ['%s', _value]}";

Result: if (!is3DEN && !isMultiplayer) then {_this setVariable ['s', 0]};

  • Layer names converted to missionNamespace variables can be duplicated as layer names in Eden Editor don't have to be unique. Variable names should have their layer ID as suffix
if (_layer13870) then {missionNamespace setVariable ["3denenhanced_Electronics",[[_item13774,_item15097,_item15099,_item15100,_item15101,_item15102,_item15106,_item15107,_item15109,_item15118],[]]];};
if (_layer67405) then {missionNamespace setVariable ["3denenhanced_Animation",[[_item13857,_item13914,_item13918,_item14373,_item14387,_item13828,_item77607],[]]];};
if (_layer14300) then {missionNamespace setVariable ["3denenhanced_Camp Endurance",[[_item13857,_item13914,_item13918,_item14373,_item14387,_item13828,_item77607,_item13774,_item15097,_item15099,_item15100,_item15101,

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 11 x64
Category
Eden Editor

Event Timeline

R3vo created this task.Sep 24 2024, 5:16 PM
R3vo updated the task description. (Show Details)Sep 24 2024, 5:19 PM
R3vo updated the task description. (Show Details)Sep 24 2024, 5:22 PM

i think to recall "things" were fixed with the to SQF export from Eden - if so, does anyone have FT or changelog at hand?

  1. doesnt covert bool correctly in setVariable

_this setVariable ['SPE_ARTY_AI_DIR',1,true]; (_this setVariable ['Enable_Dir',0,true]);
=>
_this setVariable ['SPE_ARTY_AI_DIR',true,true]; (_this setVariable ['Enable_Dir',false,true]);

  1. double semicolon at times
_this setname "Reinhold Poehler";; 
_this setspeaker "spe_male02ger";; 
_this setpitch 0.979453;;
  1. faulty case for some sqf commands
  2. obsolete space at end of each line
R3vo updated the task description. (Show Details)Sep 24 2024, 5:45 PM