Jump to content
Sign in to follow this  
aeroson

Wiki Editing

Recommended Posts

Can someone bright minded tell me how do i contribute to community.bistudio.com/wiki/ ?

I've been trying to figure it out for a while.

I need to be registered and logged in to be able to do so, okay. But once i try to register ...

http://community.bistudio.com/wiki/Special:UserLogin/signup

You do not have permission to create this user account, for the following reason:

The action you have requested is limited to users in the group: Administrators.

I guess i need to contact one of the admins and request account creation. But still its rather unfriendly and should at least be mentioned somewhere.

Edited by aeroson

Share this post


Link to post
Share on other sites

Well I suppose you have to be BIS employee to edit it and right so. It is a bible of Arma coding and you really want hard facts there.

Share this post


Link to post
Share on other sites

Well then if anyone capable of editing http://community.bistudio.com/wiki/cfgMarkers would be so nice to add Arma 3 cfgMarkers. D:

Xf7rme4.png

Code that generated it:

_start=[100,3000];
_config=configfile >> "cfgMarkers";
_count=count _config;
_widthcount=6;
_widthspace=500;
_heightcount=ceil(_count/_widthcount); 
_heightspace=80;


for "_i" from 0 to 10 do {
_marker = format["bg%1",_i];
deleteMarkerLocal _marker;
createMarkerLocal[ _marker, [(_start select 0) + _widthspace*_widthcount/2 , (_start select 1) - _heightspace*_heightcount/2 ] ];
_marker setMarkerShapeLocal "RECTANGLE";
_marker setMarkerColorLocal "ColorWhite";
_marker setMarkerAlphaLocal 1;
_marker setMarkerBrushLocal "Solid";
_marker setMarkerSizeLocal [_widthspace*_widthcount, _heightspace*_heightcount]; 
};


for "_i" from 0 to _count-1 do {
_current = _config select _i;
_x =(_start select 0)+ _widthspace*(_i mod _widthcount);
_y = (_start select 1) - _heightspace*floor(_i/_widthcount);

_marker = format["tm%1",_i];
deleteMarkerLocal _marker;
createMarkerLocal[ _marker, [_x,_y]];
_marker setMarkerSizeLocal [0.9, 0.9];
_marker setMarkerTypeLocal (configName _current);

_marker = format["tmt%1",_i];
deleteMarkerLocal _marker;
createMarkerLocal[ _marker, [_x+50,_y] ];
_marker setMarkerTypeLocal "hd_dot";
_marker setMarkerColorLocal "ColorBlack";
_marker setMarkerSizeLocal [0, 0];
_marker setMarkerTextLocal (configName _current); 
};

Edited by aeroson

Share this post


Link to post
Share on other sites

That's nice but without proper moderation you will get more harm than good allowing general public to edit

Share this post


Link to post
Share on other sites

Yup totally agree. Just wanted to help/share >_<

Share this post


Link to post
Share on other sites
Yup totally agree. Just wanted to help/share >_<

And you did! Copied for reference :)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×