Severe class restrictions in a module

This is a viable method and I have considered it. My setting however makes the availablity of trainers not very likely.

I will either go for a classes2da.hak OR allow players to ignore the restrictions and enjoy gameplay where almost every faction is outright hostile to them. And when I say “enjoy”, it’s not meant to be sarcasm - there are always players who actually like to play their games “the hard way”.

True - I was just thinking the back end - the level-up script - is where you can control this - you actually mention something like this earlier in this thread. Below is an edit of the removing and returning of XP from my mess:

int nHD=GetHitDice(oPC);
int nNewXP = ((nHD * (nHD-1)) / 2 * 1000)-1;
int nPCXP = GetXP(oPC);
SendMessageToPC(oPC, “You must Level Up in a non-spellcasting class”);
SetXP(oPC, nNewXP);//This removes the offending level
DelayCommand(0.3, SetXP(oPC, nPCXP));//This brings them back up to being able to level again
return;

“For story/lore reason, this module is for characters with no spellcasting abilities, characters with spellcasting classes are unsupported.”

Done.

5 Likes

That description (compared to what he has described so far) would piss me off enough to consider the description dishonest and the writer a liar. I would never touch it again.

Because it’s not spellcasting, it’s magic. Monks aren’t even available.

And calling friendly/neutral factions turning hostile “unsupported” isn’t descriptive enough.

I know I’m splitting hairs here and that is kind of the point, because I would do that when downloading modules also and I’m not the only one.

I don’t think you quite get it, Charles.  :| i think kamal’s saying … forget the behind-the-scenes code, forget about the this-goes-hostile and you-can’t-do-that stuff. Let anyone who plays the module do what they want; and simply put in the description of said module, well, pretty much what kamal put in quotes.

and … done.

“unsupported” in this sense could mean “you’ll have a hard time finding scrolls” etc.

3 Likes

That’s exactly what I’m saying. Don’t put put any work into coding up restrictions ingame to enforce the desired limitations. Just tell the player in the module description “this adventure is designed for good aligned clerics, only good aligned clerics are supported” or whatever restriction you’d like to have, and if someone complains that their rogue/blackguard isn’t working in the module then you can tell them ¯_(ツ)_/¯

I mean it’s not like class focused (for example A Dance with Rogues, or Wizard’s Apprentice in nwn2) material is looked down on. Just be clear in the module description on what it is. If I want to play a rogue/blackguard, I can look elsewhere.

4 Likes

Couldn’t you just edit claases. 2da and make those classes unplayable?

@Cleitanious - Yes. See my post above.