[Only registered and activated users can see links. Click Here To Register...]
HowTo:
Go in root/localeinfo.py and search
Code:
def SecondToHM(time):
after this def add:
Code:
def PlayerTimeTextIntroSel(time):
if time == 0:
return "0" + MINUTE
minute = int(time) % 60
hour = int(time / 60) % 24
day = int((time / 60) / 24)
text = ""
if day > 0:
text += str(day) + DAY
text += " "
if hour > 0:
text += str(hour) + HOUR
text += " "
if minute > 0:
text += str(minute) + MINUTE
return text
________________________________
________________________________
go in root/introselect.py
search in "def SelectSlot" this:
Code:
self.PlayTime.SetText(str(playTime))
replace that with this:
Code:
timeText = (localeInfo.PlayerTimeTextIntroSel(playTime))
self.PlayTime.SetText(str(timeText))