Hmm, I did install this one but seems like I can't even start the game ._.
Hmm, I did install this one but seems like I can't even start the game ._.
same, game is not starting when i choose a difficultyHmm, I did install this one but seems like I can't even start the game ._.
I am in no way an expert on this, but let's see.need help with new regex
the line I want to translate
体力:100/100=Stamina: 100/100
the regex I tried to write
r:"^体力:([0-9,]+)$/([0-9,]+)$"=Stamina: $1/$1 (not sure where it got wrong)
can someone help how to write it?
Still not working for me
it does the job now works for me. Thanksi closed my torrent and stop seeding and remove it and suddenly playable.
yes same for me lol, thanks.i closed my torrent and stop seeding and remove it and suddenly playable.
How about use like below.I am in no way an expert on this, but let's see.
I think the commas can be removed, because the stamina counters are always integers. So [0-9,] can be just [0-9].
The dollar sign before the slash should not be there I think, it's looking for the end of the string.
I think the frontslash should be escaped by a backslash, so ([0-9]+)\/([0-9]+)
And in the output we want the two separate parts, so =Stamina: $1/$2
In total:
r:"^体力:([0-9]+)\/([0-9]+)$"=Stamina: $1/$2
Can you check it? I cannot easily. Let me know it if works.
Owh damn, thanks xDi closed my torrent and stop seeding and remove it and suddenly playable.
damn, this will take a while to read. did all of those regex are working?How about use like below.
r:^体力(?<num_i>[::][0-9\/]+)$=Stamina:${num_i}
r:^所持金(?<num_i>[::][0-9,]+)円$=Money:${num_i} en
r:^所持金(?<num_i>[::][0-9,]+)$=Money:${num_i}
r:^(?<num_i>[0-9,]+)円$=${num_i} en
r:^(?<num_i>[0-9]+)個$=${num_i} EA
r:^(?<num_i>[0-9]+)回$=${num_i} Times
r:^(?<num_i>[0-9]+)番線$=${num_i} Line
r:^(?<num_i>[0-9]+) 号 車\\n$=$Car No. {num_i}\n
r:^(?<num_i>[0-9]+)号車$=Car No.{num_i}
r:^不審度を(?<num_i>[0-9]+)減少させる$=Decrease Suspicion ${num_i}
r:^体力を(?<num_i>[0-9]+)回復する$=Recover Stamina ${num_i}
r:^不信?<num1_i>[0-9-]+)\s体力?<num2_i>[0-9-]+)\s回数?<num3_i>[0-9-]+)$=Suspicion:${num1_i} Stamina:${num2_i} Times:${num3_i}
r:^プレイヤー体力( (?<num_i>[0-9\s\/]+))$=Player Stamina (${num_i})
sr:^(?<month_i>[0-9]+)月(?<day_i>[0-9]+\s?)日((?<str>.))$=${str} ${day_i} / ${month_i}
sr:^(?<skill>[^ ]{2,10}) 残り回数:(?<num1_i>[0-9]+) 消費体力:(?<num2_i>[0-9]+) 不信度(?<num3_i>[0-9]+)$=${skill} Rest:${num1_i} Stamina Consume:${num2_i} Suspicion ${num1_i}
sr:^鞄から、スマホを抜き出して戻した。\\n(?<str1>.{2,20})は(?<str2>.{2,30})のようだ。$=I pulled out the smartphone from the bag and returned it.\nLooks like that ${str1} is ${str2}.
and add below.
日=SUN
月=MON
火=TUW
水=WED
木=THU
金=FRI
土=SAT
This actually help a LOT, I will credit this in my translation.How about use like below.
r:^体力(?<num_i>[::][0-9\/]+)$=Stamina:${num_i}
r:^所持金(?<num_i>[::][0-9,]+)円$=Money:${num_i} en
r:^所持金(?<num_i>[::][0-9,]+)$=Money:${num_i}
r:^(?<num_i>[0-9,]+)円$=${num_i} en
r:^(?<num_i>[0-9]+)個$=${num_i} EA
r:^(?<num_i>[0-9]+)回$=${num_i} Times
r:^(?<num_i>[0-9]+)番線$=${num_i} Line
r:^(?<num_i>[0-9]+) 号 車\\n$=$Car No. {num_i}\n
r:^(?<num_i>[0-9]+)号車$=Car No.{num_i}
r:^不審度を(?<num_i>[0-9]+)減少させる$=Decrease Suspicion ${num_i}
r:^体力を(?<num_i>[0-9]+)回復する$=Recover Stamina ${num_i}
r:^不信?<num1_i>[0-9-]+)\s体力?<num2_i>[0-9-]+)\s回数?<num3_i>[0-9-]+)$=Suspicion:${num1_i} Stamina:${num2_i} Times:${num3_i}
r:^プレイヤー体力( (?<num_i>[0-9\s\/]+))$=Player Stamina (${num_i})
sr:^(?<month_i>[0-9]+)月(?<day_i>[0-9]+\s?)日((?<str>.))$=${str} ${day_i} / ${month_i}
sr:^(?<skill>[^ ]{2,10}) 残り回数:(?<num1_i>[0-9]+) 消費体力:(?<num2_i>[0-9]+) 不信度(?<num3_i>[0-9]+)$=${skill} Rest:${num1_i} Stamina Consume:${num2_i} Suspicion ${num1_i}
sr:^鞄から、スマホを抜き出して戻した。\\n(?<str1>.{2,20})は(?<str2>.{2,30})のようだ。$=I pulled out the smartphone from the bag and returned it.\nLooks like that ${str1} is ${str2}.
and add below.
日=SUN
月=MON
火=TUW
水=WED
木=THU
金=FRI
土=SAT