Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
(I didn't save the original sheets like I should have, and I added some classes, so my line numbers will probably be very off. Hopefully the ones I included can get you close at least!)
1) Do the workaround as described above. Not sure why that works, but it does, at least for getting the words to show up. (Still working on getting the checkboxes to show checks, but they do still let you check them at least).
2) The Class name would show up, and HP would update correctly when I changed the level, but not the BAB, REF, etc. Around line 1490, where it lists all of the class stuff, in each line is a bit that checks for the level, saying
if savedDataTable.ClassName1 ~= nil and savedDataTable.ClassLVL1 == 1 and savedDataTable.ClassName1 == tostring("Envoy") then BABClass1 = 0; FORTClass1 = 0; REFClass1 = 2; WILLClass1 = 2
Change the bold section to say tonumber(savedDataTable.ClassLVL1) == 1 and it should start autoupdating those stats. You just have to do it for all of those blocks...
3) Around line 3250, where it calculates the AC and maximum DEX, etc. I changed the code to the following to make it add the DEX correctly:
--AC
ACDEXtemp = 0
if tonumber(savedDataTable.ACDEX) >= tonumber (DEXmod) then ACDEXtemp = DEXmod
else ACDEXtemp = savedDataTable.ACDEX end
if tonumber(BulkAC) <= tonumber(ACDEXtemp) then ACDEXfinal = tonumber(BulkAC)
else ACDEXfinal = ACDEXtemp end
Then have it calculate the EACTotal and ACTotal as originally programmed.
As far as I know, those are all of the changes I made, and my sheets are mostly working now. My current campaign doesn't have drones or starships yet, so I haven't looked at those sheets yet, but I'm sure they will have similar fixes if they don't work.
Hope this helps somebody get their game moving! Thanks to RezMar for creating this system, it is beautiful and a great resource for those of us running campaigns from a distance! :)