Jump to content

Recommended Posts

Hello.

 

I've finished my BW_Ranksign Addon. With this addon it's possible to add german ranks to the bw-mod units. The second modul is for the respawn with the equiment what  the player had when he died.

You can choose:

- set the rank on arm

- show the rank and name above the head

- show your own rank in the right upper corner

for BluFor, OpFor or AAF

 

 

For the ranksign there are tow different ways.

1. the unit has not the DOF_Rank variable.

 -- The script chekc the rank which is set in the editor.

 

2. the unit has the DOF_Rank variable

 -- now its possible to set 23 different ranks to the uniform. 1 = private : 23 = 4 star general. No matter witch rank is set in the editor.

 

With a small script you can set the highst rank as leader of your group.

 

The video i've made is in german, because it's to hard for me to translate everything.

 

The mod required:

BW_Mod

CBA_A3

 

Download: https://www.dropbox.com/s/kco6n5cu1mz2l28/%40BW_Ranksign.zip?dl=0

 

 

Here is a video:

 

 

Here is a examaple for the controll script. In my case the group has the variable "Tango31". Start this script inside the init.sqf.

[] spawn

        {

            private ["_cnt"];

            _cnt = 0;

            _grparray = [];

                while {true} do

                {

                    waitUntil {sleep 3; count units tango31 != _cnt};    

                    _grparray = [];

                    private ["_index", "_highest"];

                        _index = -1;

                        _highest = -1;

                        { _grparray = _grparray + [_x] } count units tango31;

                        {

                            if(_x getVariable ["DOF_RANK", -1] > _highest) then {

                                _highest = _x getVariable ["DOF_RANK", -1];

                                _index = _forEachIndex;

                            };

                        //player sideChat format ["INDEX: %1 Name: %2", _index, (_grparray select _index)];

                        

                        } forEach units tango31;

                                                

                        tango31 selectleader (_grparray select _index);

                        _cnt = count units tango31;

            };

        };   
  • Like 1

Share this post


Link to post
Share on other sites
Guest
Release frontpaged on the Armaholic homepage.

 

news_download_a3_3.png


 

required_addons.png


 

 

==================================================

 

You are not registered on Armaholic, or at least not that we are aware of. Soon we offer the possibility to authors to maintain their own pages.

If you wish to be able to do this as well please register on Armaholic and let me know about it.

This is not mandatory at all! Only if you wish to control your own content you are welcome to join, otherwise we will continue to follow your work like we have always done ;)

 

When you have any questions already feel free to PM or email me!

Share this post


Link to post
Share on other sites

Hi,

 

why did i read this thread only now?!

Great idea, great script, but nobody is interested in this, hmmmm.....

It is too bad about all your work, you put into this project.

 

Thank you for this and keep it up, well done.

 

Greetings

McLupo

Share this post


Link to post
Share on other sites
Guest
Thanks for informing us about the release of the updated version.
Update frontpaged on the Armaholic homepage.
 
news_download_a3_3.png
 
required_addons.png
 
 
==================================================
 
You are not registered on Armaholic, or at least not that we are aware of. Soon we offer the possibility to authors to maintain their own pages.
If you wish to be able to do this as well please register on Armaholic and let me know about it.
This is not mandatory at all! Only if you wish to control your own content you are welcome to join, otherwise we will continue to follow your work like we have always done  ;)
 
When you have any questions already feel free to PM or email me!

Share this post


Link to post
Share on other sites

Foxhound you're the best, you have an eye for those seemingly unimportant details.  ;)

Share this post


Link to post
Share on other sites

Hi,

 

I have a quick question. Is it possible to just show the Name and rank above the target if you go target them? My clan are using the Insignias from the BWMod and so we don't need your Insignias. But the feature with Rank and Rank next to the Ammonationbar is rly good. So is there a possibility to just have the this feature??

Share this post


Link to post
Share on other sites

Hey ich hab mal ne frage,

ist es möglich, dass man den Rank und seinen Namen angezeigt bekommt, wenn man mit dem cursor auf einem Zielt, der Soldat aber seinen Rank über das Virutelle Arsenal mit den Insignias ran gemacht hat?

Mein Clan benutzt die Insignias vom Bwmod und unsre eigene die wir erstellt habe, d.h. dass wir nicht die Abzeichen von dir brauchen. Aber wir würden gerne das benutzen dass das Abzeichen über der figur ist und oben rechts neben der Munitionsanzeige. Wäre schön wenn du mir dabei helfen könntest

 

Come on, 54 posts and you still don't know this is an English language forum ?

Share this post


Link to post
Share on other sites

Come on, 54 posts and you still don't know this is an English language forum ?

well i am sry, didnt know that is english only. I wrote it in german because the author is a german. i am sry for that

Share this post


Link to post
Share on other sites

well i am sry, didnt know that is english only. I wrote it in german because the author is a german. i am sry for that

It does clearly state in the forum rules, if you weren't aware of such rule. Maybe its a good idea to familiarise yourself with the forum rules again.

Share this post


Link to post
Share on other sites

It does clearly state in the forum rules, if you weren't aware of such rule. Maybe its a good idea to familiarise yourself with the forum rules again.

ok i have change my post to english language, sry for that. it will not happened again

Share this post


Link to post
Share on other sites
Guest

Thanks for informing us about the release of the updated version.

Update frontpaged on the Armaholic homepage.

 

news_download_a3_3.png

BW-Mod - Ranksign v1.2

 

required_addons.png

- BWMod

- Community Base addons A3

 

 

==================================================

 

You are not registered on Armaholic, or at least not that we are aware of. Soon we offer the possibility to authors to maintain their own pages.

If you wish to be able to do this as well please register on Armaholic and let me know about it.

This is not mandatory at all! Only if you wish to control your own content you are welcome to join, otherwise we will continue to follow your work like we have always done  ;)

 

When you have any questions already feel free to PM or email me!

Share this post


Link to post
Share on other sites

Update


fixed: In the case of a slow connection from the client to the server, it could happen that the texture was not loaded properly if the variable "DOF_RANK" assigned by the server. I have inserted a sleep 10
Link:
 
 
*****
Here is an example, how to add the rank to some players. (maybe inside a community). Guest are level 1. The server-admin has only one script to controll, if someone is promoted inside the community. In all mission, the player gets the same rank.
*****
1. step
Copy this code in your initserver.sqf: (only the server will load ths file)
#include "userconfig\bw_ranksign\ranks.hpp"
 
2. step
Copy this code in your initplayerlocal.sqf
call

{

player setVariable ["DOF_RANK", 1];

{

    if ( (name player) isEqualTo (_x select 0) ) then

    {

        player setVariable ["DOF_RANK", (_x select 1),true];     

    };

} forEach BW_Ranksign_rankzuweisung;



};
 
3. step
 
Create a folder userconfig\Bw_ranksign. Save the following code as "ranks.hpp" (i use notpad for this)
The arma3server.exe have to be in the same arma main folder

BW_Ranksign_rankzuweisung =

[

["NameofPlayer", 14],

["Drunken Officer", 3],

["NameofPlayer", 14],

["NameofPlayer", 9],

["Nameofplayer", 3]

];

//--- no , at the last entry !!!

publicVariable "BW_Ranksign_rankzuweisung";

Share this post


Link to post
Share on other sites
Guest

Thanks for informing us about the release of the updated version.

Update frontpaged on the Armaholic homepage.

 

news_download_a3_3.png

BW-Mod - Ranksign v1.3

 

required_addons.png

- BWMod

- Community Base addons A3

 

 

==================================================

 

You are not registered on Armaholic, or at least not that we are aware of. Soon we offer the possibility to authors to maintain their own pages.

If you wish to be able to do this as well please register on Armaholic and let me know about it.

This is not mandatory at all! Only if you wish to control your own content you are welcome to join, otherwise we will continue to follow your work like we have always done  ;)

 

When you have any questions already feel free to PM or email me!

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

×