Recent comments

  • Master world   1 day 14 hours ago

    In version 3, I will sell books that increase the maximum level of single talent. Now I just don't understand how easy it is to modify the assortment of the store. :(

  • Youkai Pack   1 week 3 days ago

    Seems the mod is incompatible with the Wilder Balance mod https://te4.org/games/addons/tome/wilder-balance that adds a psiblade side to the class. Using Psiblades as a Takonyudo doesn't let psiblades appear, keeping talents that depend on them disabled. Bug doesn't seem to appear on vanilla races with Wilder Balance enabled, tested with Human.

  • Daeron's Beginning   2 weeks 17 hours ago

    ToME is my jam, so I'm completely prejudiced about it. Always glad to see new players.

  • Daeron's Beginning   2 weeks 19 hours ago

    Just wanted to let you know that there are at least a couple of folks out there watching. It's always nice to see new people try their hand at this game. Good luck, and I hope you don't give up!

  • Are you still out there? Our DardGod!   3 weeks 2 days ago

    we love you! ty for your gifts to us <3 be well

  • Daeron's Beginning   3 weeks 4 days ago

    Heya, I am brand new as well only logged about 25ish hours in last weekish lmao,

    Keen to watch your journey and your content!

  • Daeron's Beginning   3 weeks 4 days ago
    P.S

    Absolutely love the in-game chat and blog systems. Feels very close-knit and classic WoW vibes. Everything online is very dehumanised and this is quite refreshing, despite being a single-player game.

  • A brand new, ultra rare, blog post.   4 weeks 5 days ago

    It warms my heart that in 2025 people are still finding and loving this game, it does have a timeless appeal. Have fun!

  • The Pikataclysm is upon us! RUN FOR YOUR LIVES!   5 weeks 5 days ago

    From what I've read he's sadly been dealing with health problems the last few years, hence the lack of updates on ToME. I think people were saying he's on the road to recovering, so hopefully we'll hear from him soon! :)

  • Steam Review   5 weeks 6 days ago

    Great read, these comments are.
    True, TOME by its nature is extremely flexible, much more so than some commercial games you find on Steam. I can live with some occasional bugs. And honestly so far I haven't found commercial roguelikes that seem to be as fun and varied as TOME, but I'll keep searching. Gandolf's review is pretty spot-on.

    Side notes:
    As for T-Engine's world and content, it would be immensely fun if DarkGod managed to have a word with these guys:

    http://www.fightingfantasy.com/

    I think the game engine is perfect for adapting RPG classics such as Warlock of Firetop Mountain or Citadel of Chaos.

    Even if stuff like Dragonriders or Tolkien content is not available, there are many game-suitable alternative scenarios that could be used if authorization could be secured.

    On another note, regarding the music: I like all the styles Gandolf described, but blues and 60s soul kind of kill the medieval RPG vibe for me ;-), doesn't fit the ambience. Subjective issue, I guess. Love B.B. King and Aretha, but when I'm playing TOME I open up a streaming service, web radio or my albums collection and mostly go for rock and metal: 70's prog rock and heavy metal works pretty well (Yes, Hawkwind, Black Sabbath, Uriah Heep). 80's, 90s and 00s metal also does the trick (anything from Iron Maiden, Kreator and Cirith Ungol to Dimmu Borgir and Electric WIzard).

    In any case: I agree that TOME is still lacking in the sound department, but since the gameplay is not dependant on sound feedback, no worries.

  • Infinite Dungeon Merchants   6 weeks 2 days ago

    -removed-

  • Class+Race Pack   7 weeks 1 day ago
    no

    You (along with another commenter below) misunderstand the description of Distracted Tail. It's not supposed to double the effective levels of all other talents at all times; it doubles the effective levels of all other talents *while using the talent it is attached to*.
    Your suggested change breaks every minor tail except Focused and Twitching and improves nothing.

  • Lost Land Beta soon! Next dlc already in the works! What the hell DarkGod?!   7 weeks 5 days ago

    Is the dlc even still being worked on? don't really care about a release date it would just be nice to know if it's still in the works

  • Master world   8 weeks 17 hours ago

    Yeah definitely but I was suggesting it to mirror the behavior of escort rewards, especially since you can see the description of talents on the tooltip. The skill level could stay fixed and have a chance to be +1, +2 +x? I find it more fun to directly choose talents, I basically always choose this option at escorts. I'm less keen on having to choose between big lists of talent categories

  • Rider Evolutions   8 weeks 2 days ago
  • Master world   8 weeks 2 days ago

    Hi, sorry for slow answer :)

    Individual talents cannot be swayed by skill points. They do not appear in the level-up window. Directly increase skill levels decision is dubious. Then talents mastery will become useless...

    In version 2, powerful artifactors will be added. They compensate for some lack of skills.

  • Are you still out there? Our DardGod!   10 weeks 2 days ago

    Rejoice! HE is alive! HE is speak! It`s really good news! Will be pray for our Dark but kind!

  • Master world   10 weeks 3 days ago

    Maybe as an option, would it be possible to have merchants sell some individual talents, spells, etc, instead of categories?

  • Are you still out there? Our DardGod!   10 weeks 5 days ago

    Thank you Darkgod for the awesome game.

    Hope life is good for your avatar here in the material plane.

  • This hard   10 weeks 6 days ago

    Is Insane!!!
    Or Madness!!!
    Pick your poison..

  • Improved Auto-explore and Rest vNext   10 weeks 6 days ago

    So far it just seems like you've removed a bunch of compatibility with other mods. What exactly does this add that we are missing out on by using the original version?

  • Are you still out there? Our DardGod!   10 weeks 6 days ago

    I still live! Hope shall prevail

  • Youkai Pack   13 weeks 1 day ago

    Found another problem, in your superloaded Actor:canWearObject():

    local base_canWearObject = _M.canWearObject
    function _M:canWearObject(o, try_slot)
            local ret = base_canWearObject(self, o, try_slot)
            [...]
            return ret
    

    The problem is that the base Actor:canWearObject() returns multiple values, and you're only passing through one of them; the value you're dropping is the message explaining why the player can't wear the object, so we end up with messages like "player can not wear: Special Thing (nil)." instead of "player can not wear: Special Thing (not enough stat)." What you need to be doing here is something like:

      
    local base_canWearObject = _M.canWearObject
    function _M:canWearObject(o, try_slot)
            local ret = { base_canWearObject(self, o, try_slot) }
            [...]
            return unpack(ret)
    

    to pass through all the returned values from the base method.

  • Youkai Pack   13 weeks 2 days ago

    Lots of interesting races in this addon [you should probably update the addon description to mention them... ;) ]. Small bug to report: the Mekurabe talent calls Actor:combatSteampower() without checking whether the method is actually present, which causes the game to go into an infinite error loop if the Embers of Rage DLC isn't active for the character.

  • Less Proper Possession   14 weeks 4 days ago

    when you return to your body while monsters are nearby, you can't heal even though you're not under "assume form" effect.