Page MenuHomeFeedback Tracker

Creation of markers by scripting generate .rtp and screen error
Closed, ResolvedPublic

Description

If you create a Marker by scripting, or one create a function and then call the function, the marker will be create correctly, but you will have a error message on screen afther the marker creation, and the .rpt file of ArmA 3 will be full of error message like this:

Warning Message: No entry 'bin\config.bin/CfgMarkers.DOT'.
Warning Message: No entry '.icon'.
Warning Message: '/' is not a value
Warning Message: No entry '.size'.
Warning Message: '/' is not a value
Warning Message: No entry '.color'.
Warning Message: Size: '/' not an array
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgMarkers.DOT'.
Warning Message: No entry '.icon'.
Warning Message: '/' is not a value
Warning Message: No entry '.size'.
Warning Message: '/' is not a value
Warning Message: No entry '.color'.
Warning Message: Size: '/' not an array
Warning Message: Size: '/' not an array

Details

Legacy ID
596797583
Severity
Major
Resolution
Not A Bug
Reproducibility
Always
Category
Error Message
Steps To Reproduce

Create a trigger by a .sqf script file with the follow code:

                _mrk_dim = 200;
		_mrk_size_x = _mrk_dim; 
		_mrk_size_y = _mrk_dim; 
		_mrk_dir 	= 0; 	
		_mrk_shape 	= "ELLIPSE"; 
		_mrk_brush	= "FDiagonal"; 	
		_mrk_color 	= "ColorRed";	
		_mrk_text 	= "mymarker"; 
		_mrk_type = "Objective"; 
		_mrk_name = ""; 
		_mrk_pos = player; //or your position
		_marker = createMarker[_mrk_name,[0,0]];
		_marker setMarkerSize [_mrk_size_x, _mrk_size_y];
		_marker setMarkerDir _mrk_dir;
		_marker setMarkerShape 	_mrk_shape;
		_marker setMarkerBrush _mrk_brush;
		_marker setMarkerColor _mrk_color;
		_marker setMarkerText _mrk_text;
		_marker setMarkerType _mrk_type;
		_marker setMarkerPos getMarkerPos _mrk_pos;
Additional Information

My system:

CPU: Intel core i5-3570k 3.40Ghz
Mobo: Asrock Z77 Extreme 4
Ram: 2 x 4GB Corsair vengeance
GPU: Sapphire Radeon HD 6850
1 TB SATA standard hard driver

Event Timeline

privitan edited Steps To Reproduce. (Show Details)Mar 11 2013, 9:59 PM
privitan edited Additional Information. (Show Details)
privitan set Category to Error Message.
privitan set Reproducibility to Always.
privitan set Severity to Major.
privitan set Resolution to Not A Bug.
privitan set Legacy ID to 596797583.May 7 2016, 12:20 PM
privitan added a subscriber: privitan.

DON'T TAKE IT IN COSIDERATION IT'S WAS MY MISTAKES. I WAS CALLING THE OLDS ARMA 2 ICON THAT'S GENERETATE THE ERROR.

SORRY

NEED MORE CAPS !!

:P

LOOKS LIKE THIS ONE SOLVED ITSELF!