changing the year (solved)

Users who are viewing this thread

maorr

Regular
how can i chang the yearin the game... i play a mod that the year is not correct and i want to fix it
 
Module_scripts:
  #script_game_get_date_text:
  # This script is called from the game engine when the date needs to be displayed.
  # INPUT: arg1 = number of days passed since the beginning of the game
  # OUTPUT: result string = date
  ("game_get_date_text",
    [
      (store_script_param_2, ":num_hours"),
      (store_div, ":num_days", ":num_hours", 24),
      (store_add, ":cur_day", ":num_days", 23),
      (assign, ":cur_month", 3),
      (assign, ":cur_year", 1257),

Or scripts.txt:
game_get_date_text -1
85 22 1 1224979098644774912 2123 3 1224979098644774913 1224979098644774912 24 2120 3 1224979098644774914 1224979098644774913 23 2133 2 1224979098644774915 3 2133 2 1224979098644774916 1257 2133 2 12249790986447749

 
May I suggest that you change the title to a more meaningful and focused title in an attempt to make life easier or people who may have similar questions (esp when searching).

Also, if WookieWarlord's reply has satisfied your question, put that in the changed subject too, to attract people who wants the answer.

How about

"[resolved]How to change the year in the game"

thanks for reading.
 
Back
Top Bottom