Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System

Notices

Reply
 
Thread Tools Display Modes
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old August 13th, 2021, 07:07 PM
Does anyone have the Lamia Matriach Xanesha from The Skinsaw Murders book created?
Provos is offline   #41 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 8th, 2021, 10:50 AM
Started working on this again. I seem to manage to forget everything I had known when I started. Hate when that happens.
Provos is offline   #42 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 8th, 2021, 01:36 PM
How do you use the special ablity xAbilDrain? The eval script on it is the following.
Code:
~ Set the first part of our name (Damage) based on User.? tags
if (tagis[User.1_1] <> 0) then
  field[livename].text = field[name].text & " - 1"
elseif (tagis[User.1d2_2] <> 0) then
  field[livename].text = field[name].text & " - 1d2"
elseif (tagis[User.1d3_3] <> 0) then
  field[livename].text = field[name].text & " - 1d3"
elseif (tagis[User.1d4_4] <> 0) then
  field[livename].text = field[name].text & " - 1d4"
elseif (tagis[User.1d6_5] <> 0) then
  field[livename].text = field[name].text & " - 1d6"
elseif (tagis[User.1d8_6] <> 0) then
  field[livename].text = field[name].text & " - 1d8"
elseif (tagis[User.1d10_304] <> 0) then
  field[livename].text = field[name].text & " - 1d10"
elseif (tagis[User.1d12_404] <> 0) then
  field[livename].text = field[name].text & " - 1d12"
elseif (tagis[User.2d4_6] <> 0) then
  field[livename].text = field[name].text & " - 2d4"
elseif (tagis[User.2d6_104] <> 0) then
  field[livename].text = field[name].text & " - 2d6"
elseif (tagis[User.2d8_204] + tagis[User.2d8_305] <> 0) then
  field[livename].text = field[name].text & " - 2d8"
elseif (tagis[User.2d10_205] <> 0) then
  field[livename].text = field[name].text & " - 2d10"
elseif (tagis[User.3d6_8] <> 0) then
  field[livename].text = field[name].text & " - 3d6"
elseif (tagis[User.3d8_306] <> 0) then
  field[livename].text = field[name].text & " - 3d8"
elseif (tagis[User.4d6_106] <> 0) then
  field[livename].text = field[name].text & " - 4d6"
elseif (tagis[User.4d8_307] <> 0) then
  field[livename].text = field[name].text & " - 4d8"
endif

~ Build the second part of our name based on looking for statistic user tag on us.
if (tagis[User.PriSTR] <> 0) then
  field[livename].text = field[livename].text & " Strength"
elseif (tagis[User.PriDEX] <> 0) then
  field[livename].text = field[livename].text & " Dexterity"
elseif (tagis[User.PriCON] <> 0) then
  field[livename].text = field[livename].text & " Constitution"
elseif (tagis[User.PriINT] <> 0) then
  field[livename].text = field[livename].text & " Intelligence"
elseif (tagis[User.PriWIS] <> 0) then
  field[livename].text = field[livename].text & " Wisdom"
elseif (tagis[User.PriCHA] <> 0) then
  field[livename].text = field[livename].text & " Charisma"
endif
I copied the Lamia for the Lamia Matriarch but the Matriach has 1d6 instead of a d4 wisdom damage and I can't figure out how this works to set it.
Provos is offline   #43 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 8th, 2021, 07:25 PM
OK I gave up ability drain and created one for the wisdom drain I need. It doesn't create the attack Touch x damage but I can manage. Another issue I have is Alternate Form. After some reading on the forums it seems complicated so not worth implementing I will just put it under abilities and leave it at that.
Provos is offline   #44 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old September 9th, 2021, 05:45 AM
Quote:
Originally Posted by Provos View Post
OK I gave up ability drain and created one for the wisdom drain I need. It doesn't create the attack Touch x damage but I can manage.
You apply tags to it when you bootstrap it based on what you want it to look like:

User.1d6_5 & User.PriWis would create the following livename:

Ability Drain - 1d6 Wisdom

Quote:
Originally Posted by Provos View Post
Another issue I have is Alternate Form. After some reading on the forums it seems complicated so not worth implementing I will just put it under abilities and leave it at that.
What is the issue with Alternate Form?

Last edited by Sendric; September 9th, 2021 at 05:49 AM.
Sendric is offline   #45 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 9th, 2021, 06:55 AM
The Lamia Matriarch can take 3 alternate forms; Human, Half-Elf, and Elf. In those forms it has different abilities and stats. I looked at the Gold Dragon and Silver Dragon who also have similar abilities but they don't have that listed. I read though alternate form search for d20 in this forum and it doesn't look like it was ever done really.

from this post https://forums.wolflair.com/showthre...alternate+form

Kendall-DM
Quote:
In fact, there are a few I gave up on because they just couldn't be "fixed" the way I wanted (Alternate Form and Change Shape abilities come to mind).
Provos is offline   #46 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,144

Old September 9th, 2021, 07:05 AM
Quote:
Originally Posted by Provos View Post
The Lamia Matriarch can take 3 alternate forms; Human, Half-Elf, and Elf. In those forms it has different abilities and stats. I looked at the Gold Dragon and Silver Dragon who also have similar abilities but they don't have that listed. I read though alternate form search for d20 in this forum and it doesn't look like it was ever done really.

from this post https://forums.wolflair.com/showthre...alternate+form

Kendall-DM
Hmm..not sure about the Dragons or Kendall's specific issues, but I suspect the Lamia might have an easier solution. I would set this up with a chooser (for d20, that would be a feat, class skill or adjustment) that allows you to select which form she's in then bootstrap whatever abilities she gains based on the selection.
Sendric is offline   #47 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 9th, 2021, 02:41 PM
nevermind this post

Last edited by Provos; September 9th, 2021 at 03:11 PM. Reason: duh moment
Provos is offline   #48 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 9th, 2021, 03:54 PM
So I mostly have the Lamia Matriarch done. The problem I have now is when I try to add class levels to it the Racial Spells tab disappears. Lamia Matriarch have arcane spells and cleric spell list available. With a class added you lose the additonal spells from cleric added in the race.
Attached Files
File Type: email Paizo - Rise of the Runelords.user (68.2 KB, 1 views)
File Type: email Lamia Matriarch.por (24.1 KB, 1 views)

Last edited by Provos; September 9th, 2021 at 03:59 PM.
Provos is offline   #49 Reply With Quote
Provos
Senior Member
 
Join Date: Mar 2011
Location: USA
Posts: 383

Old September 10th, 2021, 10:28 AM
OK so it seems when adding sorcerer levels to a creature that auto has it it makes racial spells go away. not sure how to fix it though.
Provos is offline   #50 Reply With Quote
Reply

Thread Tools
Display Modes

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 06:51 PM.


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