Project Zomboid

Project Zomboid

Simple Status
dtoxic 29. sep. 2022 kl. 14:24
[Feature Request/Suggestion]
Add also temperature stats + ability to change the font/bar size also Vertical/Horizontal and we are golden...if you would be so kind :)
< >
Viser 1-15 af 58 kommentarer
Damaskox 29. sep. 2022 kl. 16:05 
Would be cool to see calories too!
Amgis 29. sep. 2022 kl. 19:59 
can you change code for can translate to other language? f wanna translate to korean :)
Vagitus  [udvikler] 29. sep. 2022 kl. 20:38 
@Nos, @Damaskox
more stats and i18n will be added in next update
dtoxic 30. sep. 2022 kl. 0:42 
Rejoice fellow zomboids our prayers will be answered (launches fireworks in celebration)
Amgis 1. okt. 2022 kl. 4:59 
@vagitus thanks for update, here is korean translate

*must have to save as UTF-16LE

IGUI_KO = {
IGUI_SS_BARTITLE_HEALTH = "체력",
IGUI_SS_BARTITLE_ENDURANCE = "지구력",
IGUI_SS_BARTITLE_HUNGER = "배고픔",
IGUI_SS_BARTITLE_THIRST = "갈증",
IGUI_SS_BARTITLE_FATIGUE = "피로",
IGUI_SS_BARTITLE_HAPPY = "행복",
IGUI_SS_BARTITLE_BOREDOM = "지루함",
IGUI_SS_BARTITLE_BODYTEMP = "체온",
IGUI_SS_BARTITLE_BODYHEATGEN = "체열생성",
IGUI_SS_BARTITLE_CALORIES = "칼로리",
IGUI_SS_BARTITLE_WEIGHT = "몸무게",
IGUI_SS_BARTITLE_ANGER = "분노",
IGUI_SS_BARTITLE_FEAR = "공포",
IGUI_SS_BARTITLE_PAIN = "고통",
IGUI_SS_BARTITLE_PANIC = "패닉",
IGUI_SS_BARTITLE_STRESS = "스트레스",
}
xBuLLeTx 2. okt. 2022 kl. 6:52 
*must have to save as ANSI

IGUI_RU = {
IGUI_SS_BARTITLE_HEALTH = "Здоровье",
IGUI_SS_BARTITLE_ENDURANCE = "Запас сил",
IGUI_SS_BARTITLE_HUNGER = "Голод",
IGUI_SS_BARTITLE_THIRST = "Жажда",
IGUI_SS_BARTITLE_FATIGUE = "Усталость",
IGUI_SS_BARTITLE_HAPPY = "Счастливый",
IGUI_SS_BARTITLE_BOREDOM = "Скука",
IGUI_SS_BARTITLE_BODYTEMP = "Темп-ра тела",
IGUI_SS_BARTITLE_BODYHEATGEN = "Отклик тела",
IGUI_SS_BARTITLE_CALORIES = "Калории",
IGUI_SS_BARTITLE_WEIGHT = "Вес",
IGUI_SS_BARTITLE_ANGER = "Гнев",
IGUI_SS_BARTITLE_FEAR = "Страх",
IGUI_SS_BARTITLE_PAIN = "Боль",
IGUI_SS_BARTITLE_PANIC = "Паника",
IGUI_SS_BARTITLE_STRESS = "Стресс",

IGUI_SS_BARTITLE_CARBOHYDRATES = "Углеводы",
IGUI_SS_BARTITLE_PROTEINS = "Белки",
IGUI_SS_BARTITLE_LIPIDS = "Жиры",

IGUI_SS_BARTITLE_O_OPTION = "Параметры",
IGUI_SS_BARTITLE_O_VERTICAL = "Вертикально",

IGUI_SS_BARTITLE_DIRTINESS = "Грязь",
IGUI_SS_BARTITLE_CLEANLINESS = "Чистота",
IGUI_SS_BARTITLE_REST = "Отдых",
IGUI_SS_BARTITLE_UNHAPPY = "Несчастье",
IGUI_SS_BARTITLE_TOG_HAPPY = "Переключатель Счастье/Несчастье",
IGUI_SS_BARTITLE_TOG_FATIGUE = "Переключатель Усталость/Отдых",
IGUI_SS_BARTITLE_TOG_DIRTINESS = "Переключатель Грязь/Чистота",
}
Sidst redigeret af xBuLLeTx; 23. okt. 2022 kl. 12:30
star  [udvikler] 5. okt. 2022 kl. 19:43 
Is there a kind of API?
Let's say I have custom scale in my mod and I'd like to add it to your widget.
Vagitus  [udvikler] 6. okt. 2022 kl. 5:37 
Oprindeligt skrevet af star:
Is there a kind of API?
Let's say I have custom scale in my mod and I'd like to add it to your widget.

local function testStatValueFn(p) return round(p:getStats():getEndurance() * 100) end if getActivatedMods():contains("simpleStatus") then if ss_barConfigs ~= nil then table.insert(ss_barConfigs, {name = "test_stat", title = "TEST", valueFn = testStatValueFn, ivalue = 100, shown = true} ) end end
Vagitus  [udvikler] 6. okt. 2022 kl. 5:46 
pls check the file "SimpleStatus.lua" #88 for more usage
dtoxic 6. okt. 2022 kl. 6:30 
any chance on getting Vertical bars option?
Bene.exe 6. okt. 2022 kl. 7:01 
Hello i just saw this mod and thought maybe i can help with the translation to german.
i copy pasted it from the russin fella.

*note: i have no idea how to mod in this game or how u should save that. sry

IGUI_DE = {
IGUI_SS_BARTITLE_HEALTH = "Gesundheit",
IGUI_SS_BARTITLE_ENDURANCE = "Ausdauer",
IGUI_SS_BARTITLE_HUNGER = "Hunger",
IGUI_SS_BARTITLE_THIRST = "Durst",
IGUI_SS_BARTITLE_FATIGUE = "Erschöpfung",
IGUI_SS_BARTITLE_HAPPY = "Freude",
IGUI_SS_BARTITLE_BOREDOM = "Langeweile",
IGUI_SS_BARTITLE_BODYTEMP = "Körpertemperatur",
IGUI_SS_BARTITLE_BODYHEATGEN = "Körperwärme",
IGUI_SS_BARTITLE_CALORIES = "Kalorien",
IGUI_SS_BARTITLE_WEIGHT = "Gewicht",
IGUI_SS_BARTITLE_ANGER = "Wut",
IGUI_SS_BARTITLE_FEAR = "Angst",
IGUI_SS_BARTITLE_PAIN = "Schmerz",
IGUI_SS_BARTITLE_PANIC = "Panik",
IGUI_SS_BARTITLE_STRESS = "Stress",

IGUI_SS_BARTITLE_CARBOHYDRATES = "Kohlenhydrate",
IGUI_SS_BARTITLE_PROTEINS = "Proteine",
IGUI_SS_BARTITLE_LIPIDS = "Fette",
}

hope it helps.
Sidst redigeret af Bene.exe; 6. okt. 2022 kl. 14:33
Vagitus  [udvikler] 6. okt. 2022 kl. 7:06 
Oprindeligt skrevet af dtoxic:
any chance on getting Vertical bars option?

vertical bars are no room show stat titles
and the color changes as the stats changes
It can not be used to distinguish the which stat

if you have any simple way to solve it, pls tell me
Vagitus  [udvikler] 6. okt. 2022 kl. 7:07 
@Bene.exe
it will be in next update, ty
dtoxic 6. okt. 2022 kl. 7:20 
hmmm well look at the minimal display bars "solution" hovering over a bar can show you the stats,another way is to use modle icon inside the bar or on top of it (witch would increase the width size of the bar to be visibly usable i guess) or maybe some kind of a symbol inside the bar?
Vagitus  [udvikler] 6. okt. 2022 kl. 7:28 
i will try to make an vertical with icon version
< >
Viser 1-15 af 58 kommentarer
Per side: 1530 50