Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System
Register FAQ Community Today's Posts Search

Notices

Reply
 
Thread Tools Display Modes
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old November 18th, 2012, 04:51 AM
Quote:
Originally Posted by OverTheSwamp View Post
I've just finished creating a prestige class for the Master Specialist, Conjurer version. Willing to share. Still need to figure out how to working the pre-reqs though.
You can post it here or email it to me using my username here on gmail. I'll take a look at the pre-reqs and will include it in the community set.
Sendric is offline   #11 Reply With Quote
OverTheSwamp
Junior Member
 
Join Date: Nov 2011
Location: Oregon
Posts: 21

Old November 18th, 2012, 10:48 AM
I either copied he Master Transmogrifist or the Alienist and modified from there. I've added the Expr-reqs on the Class Level tab, but somehow I think it is the Pre-reqs scripts that are needed, which is out of my comfort zone at the moment.

If I've done an acceptable job of creating this. I can make up another. Or let me know if I need to up my editing skillz before submitting! Ha!
Attached Files
File Type: email MasSpConj.user (11.3 KB, 17 views)

Cheers.
OverTheSwamp is offline   #12 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old November 19th, 2012, 05:58 AM
Ok, so I took a look. I have a recommendation. I would change the name of the class to Master Specialist, then for each of the Esoterica class specials, use the Item Selection dialogue and set "Select From..." to "Schools". This way you won't have to make a different class for each school. You could also try "Schools with Spell Focus" though to be honest, I'm not sure what the difference is.

I also might check "User Text is Optional?" for the Expanded Spellbook specials. I only suggest this because the ability allows you to select a new spell for your spellbook. It might be useful for some players to keep track of what spells they choose but since it isn't necessary and doesn't do anything in the code, it might be nice to not have a warning when you don't enter a spell there. Not a big deal either way.

As for the Entry Requirements, it looks like you are missing two. You can use an Expr-Req for the first one (Spellcasting: Must be able to cast 2nd-level arcane spells). Take a look at other classes that have similar reqs, such as Mystic Theurge (use New Copy on the class level) and see how that class handles it. For the other (Special: Must be a specialist wizard), I feel like I tried tackling this once before, but I can't remember what I did. If I come up with anything, I'll let you know.

Overall, I'd say it looks pretty good though. This class appears to be mostly data input with not a lot of actual scripting being required (due to there being so many situational modifiers). That's a good way to get yourself familiar with the editor. I would be more than happy to have you do other things from that book or any other source.
Sendric is offline   #13 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old November 29th, 2012, 09:33 AM
Quote:
Originally Posted by Sendric View Post
Complete Mage has the following items entered:

Abjurant Champion
Shining Blade of Heironeous
Ultimate Magus
Unseen Seer

Feats
Invocations
Spells A-B

Looks like there's plenty of stuff to enter in. If you felt like tackling the spells, go for it. I've started going through the class spell lists checking for duplicates and incorrect levels. Its gonna take me a while, and having someone else work on the CMag spells would be very beneficial. Thanks!
I've just discovered some spells from the Complete Mage are located in a file called CDiv - Staffs. I don't know why they are there, but I'm going to transfer them to a new file (Complete Mage - Spells) and add the ones from the CMag A and B files so they are all in one place. If anyone is working on these spells, you might want to check this file out so you aren't duplicating anything.

Edit: It looks like there are Staffs from Complete Mage mixed into this file along with the Complete Divine staffs. I'm going to try to reorganize them so they are in the proper locations. This won't affect the end-user trying to buy staves, but for people using the editor it should make things a little easier to locate.

Last edited by Sendric; November 29th, 2012 at 09:40 AM.
Sendric is offline   #14 Reply With Quote
CptCoots
Senior Member
 
Join Date: Apr 2013
Location: Poughkeepsie, NY
Posts: 102

Old August 1st, 2013, 08:13 AM
So, as usual if it is not in the distribution I assume it doesn't exist so I made the Master Specialist PrC from scratch without making specific ones. The only thing it doesn't do at this moment is make sure you can cast 2nd level arcane spells because I have no idea how to do that.

It has a lot of dummy checking with the Greater Spell Focus and Skill Focus feats, BUT if those feats are taken before hand it does not default to excluding them from your level progression. The skill focus behaves as it should (if you took Skill Focus (Spellcraft) and THEN a level of master specialist the bonuses do not stack). However, my way to handle the Greater Spell Focus does not correct for selecting the same thing twice (but it does force you to select specialist school).

Looking for some feedback on this build.
Attached Files
File Type: email MasterSpecialist.user (16.9 KB, 4 views)
CptCoots is offline   #15 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old August 1st, 2013, 09:08 AM
Quote:
Originally Posted by CptCoots View Post
The only thing it doesn't do at this moment is make sure you can cast 2nd level arcane spells because I have no idea how to do that.
Typically in HL, this is done using this expr-req:

Code:
tagcount[Hero.Arcane] >= 2 + 1
Sendric is offline   #16 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old August 1st, 2013, 09:23 AM
Two additional comments, with the disclaimer that I have not tried to make any changes to your user file.

1) I'm not sure you need to do Skill Focus: Spellcraft as a custom ability. This could probably just be done as a class special.

2) Have you tried bootstrapping the feat to the Greater Spell Focus ability? One of the things I was looking at here (when I first considered taking a look at this one) was to make each school a separate custom then do all my scripts there for the various school esoterica abilities. Your way seems to work well, too, though.

Otherwise, it looks pretty good to me. I know someone else started working on this a while back, but the only did one of the schools. I gave them some feedback but never heard from them again.

Last edited by Sendric; August 1st, 2013 at 09:28 AM.
Sendric is offline   #17 Reply With Quote
CptCoots
Senior Member
 
Join Date: Apr 2013
Location: Poughkeepsie, NY
Posts: 102

Old August 1st, 2013, 11:23 AM
Quote:
Originally Posted by Sendric View Post
Two additional comments, with the disclaimer that I have not tried to make any changes to your user file.

1) I'm not sure you need to do Skill Focus: Spellcraft as a custom ability. This could probably just be done as a class special.

2) Have you tried bootstrapping the feat to the Greater Spell Focus ability? One of the things I was looking at here (when I first considered taking a look at this one) was to make each school a separate custom then do all my scripts there for the various school esoterica abilities. Your way seems to work well, too, though.

Otherwise, it looks pretty good to me. I know someone else started working on this a while back, but the only did one of the schools. I gave them some feedback but never heard from them again.
So my first attempt has Skill focus and GSF as class specials adding the feats, but the feats weren't idiot proof (you could select other skills and spell schools). So I had made special copies of the feats with the added functionality ONLY for the PrC. That seemed like a dumb idea to me. So i re did them in the way I posted. One think I may do is have the GSF push the HasFeat tag.
CptCoots is offline   #18 Reply With Quote
CptCoots
Senior Member
 
Join Date: Apr 2013
Location: Poughkeepsie, NY
Posts: 102

Old August 1st, 2013, 11:24 AM
Oh and i love how I did the Esoterica. Cuts down on entries.
CptCoots is offline   #19 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old August 1st, 2013, 11:29 AM
Quote:
Originally Posted by CptCoots View Post
Oh and i love how I did the Esoterica. Cuts down on entries.
Yep. No complaints on how that was done from me. Well done.

As far as the Skill Focus, I didn't mean for you to bootstrap it, I just meant you could do the exact same thing as a class special and skip the having to choose it step. Doesn't really make much difference either way, though.
Sendric is offline   #20 Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 05:41 PM.


Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.