Coming Soon: Discussion Thread (2021)

Moderators: Moderator, Quality Control, Developer, DM

User avatar
Ravial
Custom Content
Posts: 913
Joined: Sat Nov 14, 2015 9:11 am
Location: Poland

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Ravial »

I'm sorry but allowing anyone to pick they're from Evermeet or Evereska is just contradictory to lore, lol.

Also, I can't find Evereska!
"I sometimes wonder if Ravial is actually rav'ialquessir irl" ~ Colonic 2017

~Viridiana Lydhaer - Retired. Silverymoon!
~Arundae Dyraalis - Retired.
~Amaevael Laelyssil - Retired, Selu'Taar on Evermeet
~Laeria Amarillis - #HideThePainLaeria

Ravial ~ By CommanderKrieg ~
User avatar
matelener
Retired Staff
Posts: 973
Joined: Thu Jun 19, 2014 6:02 am

Re: Coming Soon: Shifter PRC

Unread post by matelener »

The class is released. Make sure to level up to get the Shifter Qualification feat.
User avatar
Aspect of Sorrow
Custom Content
Posts: 2636
Joined: Fri Mar 28, 2014 7:11 pm
Location: Reliquary

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Aspect of Sorrow »

Planetouch is selectable without being planetouched, intended?
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Rhifox »

Ravial wrote: Sun Aug 01, 2021 8:53 am I'm sorry but allowing anyone to pick they're from Evermeet or Evereska is just contradictory to lore, lol.

Also, I can't find Evereska!
I am aware. The NPC does not allow picking Evermeet as a non-elf. However, backgrounds 2da does not have a race prereq column, so I was unable to set racial prereqs in chargen.
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Rhifox »

Aspect of Sorrow wrote: Sun Aug 01, 2021 9:21 am Planetouch is selectable without being planetouched, intended?
See above. The 2da does not allow restricting by race. Ergo, in most cases, the NPC does not, either. For special cases like Evermeet, the NPC refuses to give it, but in the case of planetouched, I generally didn't bother.
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
Aspect of Sorrow
Custom Content
Posts: 2636
Joined: Fri Mar 28, 2014 7:11 pm
Location: Reliquary

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Aspect of Sorrow »

Should be able to add another column specific for restriction, most 2das are supportive of this type of expansion. (whitespace delmiter)
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Rhifox »

Aspect of Sorrow wrote: Sun Aug 01, 2021 9:27 am Should be able to add another column specific for restriction, most 2das are supportive of this type of expansion. (whitespace delmiter)
I can look into it later. I'm still new to all this dev stuff, and expanding columns is strange and unusual to me since it's not supported inside the toolset. Once the column is added, how to get it to actually register in the code?
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
izzul
Posts: 970
Joined: Wed Jun 23, 2010 8:12 pm

Re: New/Updated Spells (Split 1.2)

Unread post by izzul »

Anchor wrote: Sun Aug 01, 2021 7:28 am Great addition of spells, especially with Move Earth giving a movement tool for UD druids/shamans!
need a Tree Stride version. single teleport and lvl 4 spell.
Azzizuleia Tyrielmrande-[Permadeath PC]
Eilondruil Eldanyar-Corellon Larethian[Battle Historian]
Iz Azul-Red Knight[Active]
Krueger-Trader viewtopic.php?f=55&t=56617
Mystera Electra-Mystra[Goat Girl]

"give to yourself, took from others-Integrity and Justice"
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: New/Updated Spells (Split 1.2)

Unread post by Rhifox »

izzul wrote: Sun Aug 01, 2021 10:02 am
Anchor wrote: Sun Aug 01, 2021 7:28 am Great addition of spells, especially with Move Earth giving a movement tool for UD druids/shamans!
need a Tree Stride version. single teleport and lvl 4 spell.
Tree Stride already exists.
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
Aspect of Sorrow
Custom Content
Posts: 2636
Joined: Fri Mar 28, 2014 7:11 pm
Location: Reliquary

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Aspect of Sorrow »

Rhifox wrote: Sun Aug 01, 2021 9:38 am
Aspect of Sorrow wrote: Sun Aug 01, 2021 9:27 am Should be able to add another column specific for restriction, most 2das are supportive of this type of expansion. (whitespace delmiter)
I can look into it later. I'm still new to all this dev stuff, and expanding columns is strange and unusual to me since it's not supported inside the toolset. Once the column is added, how to get it to actually register in the code?

Code: Select all

string Get2DAString(
    string s2DA,
    string sColumn,
    int nRow
);
Should be able then to make a conditional for exclusivity for the dialogue on if there is a race that is supported or not. You can use -1 treated as "All" or a blanket value.

Code: Select all

if (Get2DAString("race2da", "bgbackgroundfeat", 6) == "1") { . . . } 
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Rhifox »

Aspect of Sorrow wrote: Sun Aug 01, 2021 10:15 am
Rhifox wrote: Sun Aug 01, 2021 9:38 am
Aspect of Sorrow wrote: Sun Aug 01, 2021 9:27 am Should be able to add another column specific for restriction, most 2das are supportive of this type of expansion. (whitespace delmiter)
I can look into it later. I'm still new to all this dev stuff, and expanding columns is strange and unusual to me since it's not supported inside the toolset. Once the column is added, how to get it to actually register in the code?

Code: Select all

string Get2DAString(
    string s2DA,
    string sColumn,
    int nRow
);
Should be able then to make a conditional for exclusivity for the dialogue on if there is a race that is supported or not. You can use -1 treated as "All" or a blanket value.

Code: Select all

if (Get2DAString("race2da", "bgbackgroundfeat", 6) == "1") { . . . } 
The dialogue already supports preventing races taking it. The issue is blocking it during character creation.
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
YYA
Posts: 380
Joined: Thu Jul 30, 2020 8:52 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by YYA »

Add it to "Mystra."

"There is something odd about your background, go talk to 'Insert NPC name here'.

Thus even if you select wrong one at character creation, you cannot get out of nexus without changing it.
If you are offended by what I said have said above, I have recieved my last warning, I have discussed Intuitive Attack, so report - for I do not mind. Getting me banned is nothing special, it happens every week. But you could also choose not to be offended, this place needs more banter, your choice.
User avatar
Rhifox
Custom Content
Posts: 3964
Joined: Wed Jan 13, 2016 2:34 am

Re: Coming Soon: Regional History Feats and Human Subraces (Split 1.2)

Unread post by Rhifox »

YYA wrote: Sun Aug 01, 2021 11:30 am Add it to "Mystra."

"There is something odd about your background, go talk to 'Insert NPC name here'.

Thus even if you select wrong one at character creation, you cannot get out of nexus without changing it.
That's a good idea.
Tarina — The Witch of Darkhold, a dealer in spirits and black magic
User avatar
mrm3ntalist
Retired Staff
Posts: 7746
Joined: Wed Feb 29, 2012 5:31 pm
Location: US of A

Re: Coming Soon: Shifter PRC

Unread post by mrm3ntalist »

I got alertness, toughness, 13WIS, 3rd lvl spells and did not get any quali feat. What it do?
Mendel - Villi of En Dharasha Everae | Nikos Berenicus - Initiate of the Mirari | Efialtes Rodius - Blood Magus | Olaf Garaeif - Dwarven Slayer

Spelling mistakes are purposely entered for your entertainment! ChatGPT "ruined" the fun :(
Kalgain
Posts: 176
Joined: Thu Mar 12, 2015 12:17 pm

Re: Coming Soon: Shifter PRC

Unread post by Kalgain »

Cant take the shifter class. I am the only one with that problem?

druid 4, other spellcasting levels through hospitalier. 13 wis without items, all required feats.
(leveled up once more in hospialier after meeting requirements, but dont get qualificaiton feat, tried resting and transitioning between areas, even RCRed once more)
Post Reply

Return to “Archive”