WB Other Nasıl Oyundaki Tarihi Değiştiririm ?

Users who are viewing this thread

Benzer bir muhabbet ingilizce soru-cevap kısmında geçmişti.
Kısaca açıklarsam "game_get_date_text" scriptini değiştirmen gerekiyor. (module_scripts.py dosyası)
#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),
(assign, ":try_range", 99999),
Gördüğün üzere başlangıç tarihi 23 Mart 1257. Sırasıyla gün, ay ve yıl.
 
Back
Top Bottom