Ka-Oz 10 Posted August 7, 2009 since 1.03 when opening a dialog with a map control, it popup an error about no entries for RscMapControl/Task.iconCreated'. RscMapControl/Task.iconCanceled'. RscMapControl/Task.iconDone'. RscMapControl/Task.iconFailed'. RscMapControl/Task.colorCreated'. RscMapControl/Task.colorCanceled'. RscMapControl/Task.colorDone'. RscMapControl/Task.colorFailed'. as anyone figured out how to fix / define those ? Share this post Link to post Share on other sites
Ka-Oz 10 Posted August 7, 2009 i found my answer in the revive script topic thks xeno You have to add the following to class Task in class NORRNRscMapControl in revive_sqf\dialogs\define.hpp file: iconCreated = "#(argb,8,8,3)color(1,1,1,1)"; iconCanceled = "#(argb,8,8,3)color(0,0,1,1)"; iconDone = "#(argb,8,8,3)color(0,0,0,1)"; iconFailed = "#(argb,8,8,3)color(1,0,0,1)"; colorCreated[] = {1,1,1,1}; colorCanceled[] = {1,1,1,1}; colorDone[] = {1,1,1,1}; colorFailed[] = {1,1,1,1}; It should look like this then: class Task { icon = "\ca\ui\data\map_waypoint_ca.paa"; iconCreated = "#(argb,8,8,3)color(1,1,1,1)"; iconCanceled = "#(argb,8,8,3)color(0,0,1,1)"; iconDone = "#(argb,8,8,3)color(0,0,0,1)"; iconFailed = "#(argb,8,8,3)color(1,0,0,1)"; colorCreated[] = {1,1,1,1}; colorCanceled[] = {1,1,1,1}; colorDone[] = {1,1,1,1}; colorFailed[] = {1,1,1,1}; size = 20; color[] = {0, 0.900000, 0, 1}; importance = "1.2 * 16 * 0.05"; coefMin = 0.900000; coefMax = 4; }; Actually that part is also missing in the artillery module in 1.03. Xeno Share this post Link to post Share on other sites