Everything posted by rjshae
-
Talent trees?
True, but then Fallout was a skill-based system so perks make more sense in that context. In a class-based system, talent trees can be better targeted toward individual classes. They may even provide a multi-class (or prestige class) like capability.
-
Talent trees?
How do you guys feel about the possible use of talent trees in OE? (That is, a branching tree of capabilities that you use to customize your character at level-up.) I have seen some nice implementations of talent trees, and others that were decidedly weak.
-
Day/Night system
I only hope I don't see vendors standing around their stalls at midnight waiting to sell you some fruit (or whatever). I distinctly remember that from the BG series games.
-
Curses!
Unless a game is built from the ground up with curses in mind, I don't think they are worth the bother. They are a minor aspect whose main purpose seems to be to confound players who are too eager to use magical treasure. At best, they can be useful as motivators for unexpected NPC behavior.
- Suggestion: Merchant class?
-
What if current health limited current max stamina?
If you're willing to do this, then you may as well make Health damage impact other attributes as well, such as Strength and Dexterity. The Drakensang/RoT cRPG uses a system where you can get up to four wounds, with each decreasing a number of stats. Of course, in that game you have an available means of repairing wounds during combat. Perhaps the developers didn't want to go too far in that direction? Those injuries do tend to significantly cripple the combat capabilities of the wounded character.
- Do you care about a realistic world map?
-
Weapon familiarity.
While an approach like this is interesting, it may be too much of a detail to be worthwhile implementing. However, if it was included, I could see weapon type familiarity being implemented as an 'Accomplishment' with some suitable benefit (such as a bonus [or non-penalty] to special attacks like disarm or feint).
-
Identifying unknown items in PE
I think it wasn't so much that it was bad, as that it didn't match people's PnP experiences. I didn't have a problem with the IE approach, and it's probably one of the easiest way to code up the identification process.
- How combat resources should work in PE?
- Armor class
- Destroy environment?
- Do you care about a realistic world map?
-
How can they solve the massive texture problems?
Please explain. Given the limitations of the human visual system there is no reason not to go lossy. You simply need to make sure not to go overboard, and no one will be able to tell the difference. They could perhaps do a hybrid approach: lossy compression for the background, accompanied by non- or low-lossy overlays for regions that display obvious compression artifacts.
-
Do you care about a realistic world map?
I live in a state (much smaller than Spain) where the biomes range from rain forest to semi-arid, with old growth forests, rolling planes, glacial mountains, islands, wide rivers, rapids, volcanoes, earthquakes, brush fires, floods, landslides, avalanches, beaches, waterfalls, and so forth. Hence, it's entirely possible to have a good mix of conditions yet retain environmental realism.
- Walking and Running
- Walking and Running
-
RPG cliches you hope to see avoided and/or mocked
rjshae replied to Death Machine Miyagi's topic in Pillars of Eternity: General Discussion (NO SPOILERS)I'd like to second BasaltineBadger's comments above; this has been so overdone. If powerful items are made available, the process of acquiring them should somehow be made very exclusive. The other one, of course, is a generic +X weapon, armor, or shield. Every magical item should have some form of distinctiveness, even if it is only minor. This could be a small skill or save bonus, or perhaps a minor attack-only bonus against particular enemies. I'd also like to find useful items that include negative qualities so that the player must make tradeoff decisions.
-
Another weapons topic
The only reason games used a nice even distribution of damage like 1d8 is because anything else is more complicated and time consuming. But there's no reason they need to do this on a computer. A more realistic approach would likely use a normal distribution, putting the damage on a bell curve. This is very easy to implement using the Box-Muller transform; requiring just two U(0,1) random numbers plus the log, sin, and cos functions. Doing this is trivial on a computer. The game designers would just vary the mean and deviation of the distribution depending on the weapon type and other factors.
- What's Everyone Looking For In Strongholds?
-
Party Tactics System
Yes, the AI for DA:O was pretty decent and I can definitely live with something like that. What I really want though, is to control the party's tactical positioning. In DA:O, the party size of 4 was too small and it didn't even allow you to form a front. As a result, all the battles just felt like the same roaming skirmishes. I hated the fact that I formed a bottleneck at an opening but the enemy just squirted through at will. (It felt even worse in DA2.) Hopefully that will be much improved with the six member troupe in OE.
-
Identifying unknown items in PE
The problem with cursed items is the problem with traps: game reloads. To avoid this, the curse effect would have to be insidious, gradually working its magic over the course of a significant length of game play. Alternatively, cursed items have benefits that must be weighed against the imposed penalties.
- Enemy respawn
- Update #28: What We're Up To
-
On lights and shadows
My understanding is that the elements of the scene are initially being rendered in 3D, then projected onto 2D followed by artistic touch-ups. That means they will have the 3D information and can use that to determine shadows from the Sun/Moon directional lighting as well as from fixed point sources. If they wanted to, they could use the 3D information to generate the shadows only for each Sun/Moon position (and other lights), then turn that into an overlay. It should be monochromatic data, so I wouldn't think it would take up much disk space.