Loading

Paste #paubadsyy

  1. dayh=1
  2.     if (_dayn > _settings_game.game_creation.slow_time_factor){
  3.         _dayn  = 1;
  4.         _date++;
  5.         OnNewDayS();
  6.         }
  7.  
  8. other variant
  9. dayh=0
  10.     if (_dayn == _settings_game.game_creation.slow_time_factor){
  11.         _dayn  = 0;
  12.         _date++;
  13.         OnNewDayS();
  14.         }
  15.  
  16. both of them will be true after daym incremental steps so both  would execute at same time??
  17. but its not the case?/
  18. what i am missing here??
  19.  
  20.  
  21. this 2 are not equal ??

Comments