nicebag 0 Posted August 19, 2002 If the mission time is longer then 30 min, in-game browser reports all the time 15min, and it doesn't count down. Same goes for any other server report tool, as servers are sending this false info. Share this post Link to post Share on other sites
suma 8 Posted August 19, 2002 </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (nicebag @ Aug. 19 2002,11:43)</td></tr><tr><td id="QUOTE">If the mission time is longer then 30 min, in-game browser reports all the time 15min, and it doesn't count down.<span id='postcolor'> Explanation: Any mission that does not provide any estimate (via estimatedTimeLeft function) is reported as if it will terminate in 15 minutes. Share this post Link to post Share on other sites
nicebag 0 Posted August 19, 2002 Thnx, should be a "must have" for every mission - hope mission builders are reading this. Share this post Link to post Share on other sites
hugo2020 0 Posted August 19, 2002 I saw in the list that some custom missions have the counter implemented, what have editors to add in the mission? Share this post Link to post Share on other sites
suchey 0 Posted August 19, 2002 add the following line to your init.sqs file: estimatedTimeLeft Param1 thats all there is to it Share this post Link to post Share on other sites
suma 8 Posted August 19, 2002 </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Suchey @ Aug. 19 2002,15:35)</td></tr><tr><td id="QUOTE">add the following line to your init.sqs file: estimatedTimeLeft Param1 thats all there is to it <span id='postcolor'> Yes, that is true, but if and only if Param1 is the parameter that is used to define mission duration limit. When there is no mission duration limit or when this limit is defined by some more complicated way, you can still use estimatedTimeLeft, but you have to pass different value to it. This function can be used even in coop missions - you can run time left estimation regulary in some script (for example based on number of ticked objectives, based on waypoints completed, or based on number of enemies alive) and send it to the server browser using estimatedTimeLeft. Share this post Link to post Share on other sites
kegetys 2 Posted August 19, 2002 Where does this 15 minute assumption come from? I think its rather confusing to show that the game is going to last 15 minutes when the server really has no idea how long its going to last. Share this post Link to post Share on other sites
suma 8 Posted August 19, 2002 </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Kegetys @ Aug. 19 2002,16:43)</td></tr><tr><td id="QUOTE">Where does this 15 minute assumption come from?<span id='postcolor'> It came from nowhere - it was just a number different from zero to show you you cannot join the server immediatelly. We can increase this value to some more likely number (like 60 minutes) if you wish. Share this post Link to post Share on other sites
suma 8 Posted August 19, 2002 </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Quote (Suma @ Aug. 19 2002,17:11)</td></tr><tr><td id="QUOTE">It came from nowhere - ...<span id='postcolor'> Well, it was not exacly from nowhere: We estimated that average game with no time limit lasts for 30 minutes. When showing 15 minutes during the whole mission, the total error is minimal - and the information provided to the user is as accurate as possible (more accurate than showing zero). Share this post Link to post Share on other sites
nicebag 0 Posted August 19, 2002 I changed my ServerStatus to show now 'N/A' when server response is showing longer 15 min. To not confuse players. Share this post Link to post Share on other sites
ralphwiggum 6 Posted August 19, 2002 how about creating a forced init.sqs file for mission that is played? or, AFAIK, when admins select missions they can change the time limit at the bottom(right next to score to finish?). can you pass that as a variable and use that to show time left? Share this post Link to post Share on other sites