Jump to content
  • 0

Give loadout based on humanity level


THAC0_Gewch

Question

Recommended Posts

  • 0

it needs to be put AFTER the player_monitor.sqf

 

also I put critical scripts like the humanitychange script in

[] spawn {
	waitUntil {!isNil ("PVDZE_plr_LoginRecord")};	//Wait Till logged in
	waitUntil {(!isNull player) and (alive player) and (player == player)};

        [] execVM "custom\changeHumanityClass.sqf";
};

The second waitUntil could be, what's missing for you. "player" is set in the player_monitor.sqf and the script is called by execVM, so it runs parallel to the following.

So your humanity script could be executed without the player is set correctly.

 

Using some more diag_log entries to verify the player or given humanity by getvariable could be helpful to find your issue.

diag_log format ["Humanity Class Log, Player: %1 Humanity: %2", player, _humanity];

regards

Link to comment
Share on other sites

  • 0

Cool  :D I was wondering what could give output for debugging. This writes to the arma2oaserver.rpt, right?

 

I seem to be struggling to get anything outputted to the rpt (I checked the server log, too just to see) xD I tried throwing some diag_log's with random strings in different areas of the init.sqf, too.

 

sorry for such a newbie question x)

 

Thank you much for the help  B)

Link to comment
Share on other sites

  • 0

Ok... So mine is a little different.

Humanity based loadouts in multiple tiers ( Bandit 5 thru Hero 5 ).

All items, weapons, backpacks are randomly generated from arrays, as well as random skin selection based on humanity level.   (So... there's no SET loadout, it's random).

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...