Jump to content
  • 0

Humanity List


Robert261171

Question

Is there a script out there to display players Humanity in the trader zones?

It would be good for heroes to hunt bandits or bandits to hunt heroes.

Im looking for some kind of board that you look at and you can see a list of players Humanity on the server..

Edited by Robert261171
more info
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
On 22/4/2017 at 7:27 AM, Robert261171 said:

Thanks but I was looking for something like a display board that you look at for all players..

you can use the zupa´s plotmanagement 1.0.5.1 display.

you can adapt this code to get the humanity of each players.

private ["_close"];
lbClear 7001;
_allUnits = player nearEntities ["CAManBase", 12000];
Humans = [];
{
    if (_x isKindOf "Man" and !(_x isKindOf "zZombie_base") and (isPlayer _x)) then {        
        _friendName = name  _x;
        Humans  =  Humans + [[_friendName]] ;    
        lbAdd [7001, _friendName];
    };
} forEach _allUnits;

 

take a look on his files.. also you can rebuild GUI menu to get it working.

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...