Jump to content

Recommended Posts

Is it possible to be able to get the mission revive settings for use in a script?

I guess an ability to to get/read the description.ext file is what I am looking for.

So I can do something like this:

if ( reviveMode == 1 ) then {
   hint "Any player can revive.";
};

Thanks in advance  S

Share this post


Link to post
Share on other sites
if ( getMissionConfigValue[ "ReviveMode", -1 ] isEqualTo 1 ) then {
	
};

getMissionConfigValue

  • Like 2

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

×