[MOD] World Tooltips
- Ralzar
- Posts: 1762
- Joined: Mon Oct 07, 2019 4:11 pm
- Location: Norway
Re: [MOD] World Tooltips
Nono, in DFU, they open at 11 and close at 16(I think) but there os no way to get the opening times by using Info Mode. So I suspect the data simply isn’t there.
My released mods
"I feel like Ralzar specifically wrote those mods for me and then said "Use them". Just so he could watch me die more."
-FuzzyBeanPlays
"I feel like Ralzar specifically wrote those mods for me and then said "Use them". Just so he could watch me die more."
-FuzzyBeanPlays
-
- Posts: 145
- Joined: Wed Oct 02, 2019 6:26 am
Re: [MOD] World Tooltips
On the topic of removing modes, we could add functionality instead of remove it for the same reason i want language skills bolstered rather than buckled.
The interact modes could be tied to skills, strenghthening their use.
I made a post with the possible changes that could be added.
viewtopic.php?f=12&t=1042&p=48533&hilit=Grab#p48533
I just want the skills you choose to make the game play differently.
The interact modes could be tied to skills, strenghthening their use.
I made a post with the possible changes that could be added.
viewtopic.php?f=12&t=1042&p=48533&hilit=Grab#p48533
I just want the skills you choose to make the game play differently.
- emmathepony
- Posts: 182
- Joined: Sat Jun 29, 2019 5:26 pm
Re: [MOD] World Tooltips
I officially cannot play DF without this mod anymore, I always felt like something was "missing" but couldn't quite put my finger on it and I guess one of those was the real-time tooltips ala Morrowind.
- jefetienne
- Posts: 134
- Joined: Thu Jan 16, 2020 8:14 pm
- Location: Gallomont, Wayrest
- Contact:
Re: [MOD] World Tooltips
I felt the same during development whenever I'd turn it offemmathepony wrote: ↑Wed Dec 16, 2020 12:41 am I officially cannot play DF without this mod anymore, I always felt like something was "missing" but couldn't quite put my finger on it and I guess one of those was the real-time tooltips ala Morrowind.

Sorry I haven't made any updates lately, I've been preoccupied with life matters along with other side programming tasks. I definitely will update this sometime with more tooltip options and a few minor fixes.
- Hazelnut
- Posts: 2664
- Joined: Sat Aug 26, 2017 2:46 pm
- Contact:
Re: [MOD] World Tooltips
I was curious about how you did this, it's pretty neat. Couldn't find the code on your github though.
See my mod code for examples of how to change various aspects of DFU: https://github.com/ajrb/dfunity-mods
- jefetienne
- Posts: 134
- Joined: Thu Jan 16, 2020 8:14 pm
- Location: Gallomont, Wayrest
- Contact:
Re: [MOD] World Tooltips
Sorry about that, the branch is here. I put all of the logic into one file out of laziness but essentially it does some C# reflection hacks to add itself to the HUD without class overrides, reimplements the tooltip class to my own needs, and does more C# reflection hacks to grab private and protected methods in PlayerActivate, and I optimized it as best as I could to reduce the number of tooltip text re-evaluations.
A PR I made a while ago publicized certain parts that I no longer need to do reflection on, but I'll make changes once I have the time to sit down and add new features to the mod.
-
- Posts: 760
- Joined: Mon Aug 12, 2019 4:32 pm
- Contact:
Re: [MOD] World Tooltips
What script is it in that branch? I was interested in seeing your GUI code, but I can't locate it in the folders and directories.
My Beth Mods: l3lessed Nexus Page
Daggerfall Unity mods: Combat Overhaul Mod
Enjoy the free work I'm doing? Consider lending your support.
Daggerfall Unity mods: Combat Overhaul Mod
Enjoy the free work I'm doing? Consider lending your support.
- jefetienne
- Posts: 134
- Joined: Thu Jan 16, 2020 8:14 pm
- Location: Gallomont, Wayrest
- Contact:
Re: [MOD] World Tooltips
https://github.com/jefetienne/daggerfal ... pWindow.cs
You can look at the branch, hit the "Compare" button to show all the added commits, then go to the "Files Changed" tab to see which files have been added or modified.