|
|
|
|
|
March 13th, 2010, 04:50 AM
|
|
Major General
|
|
Join Date: Jan 2004
Location: Germany / Bielefeld
Posts: 2,035
Thanks: 33
Thanked 18 Times in 12 Posts
|
|
questions about modding a spell
so, lets reference Call of the Wild here. When cast, it spawns a werewolf leader and a bunch of wolfs in a foreign province, more wolfs if the province is a forest.
I would like to make something similar and/or alter the spell. What i really like would to see the actual spellentry, how would i go about seeing how this spell actually works inside a .dm file ?
Would it be possible to alter the spell to have spawn more than one werewolf leader ? Would it be possible to make it spawn normal werewolves among the stock wolves ?
Is there some kind of list where each spells actual .dm content is visible ?
|
March 14th, 2010, 01:55 AM
|
|
Corporal
|
|
Join Date: Feb 2010
Location: Winston, OR, USA
Posts: 87
Thanks: 153
Thanked 12 Times in 6 Posts
|
|
Re: questions about modding a spell
Ragnarok-X
Quote:
spawns a werewolf leader and a bunch of wolfs in a foreign province
|
Easily done, this can be reproduced by a farsummon (wolves) with a commander farsummon nextspell (werewolf).
Quote:
more wolfs if the province is a forest
|
This effect can't be copied right now - I tried before. You could alter the spell itself with #selectspell, though.
Quote:
I would like to make something similar and/or alter the spell. What i really like would to see the actual spellentry, how would i go about seeing how this spell actually works inside a .dm file?
|
Have you tried the spell list db?
http://forum.shrapnelgames.com/showthread.php?t=43000
Burnsaber pointed me to it, and it's been a *great* help!
Quote:
Would it be possible to alter the spell to have spawn more than one werewolf leader ? Would it be possible to make it spawn normal werewolves among the stock wolves ?
|
Yes and yes. This would actually require at least 2-3 different linked (by nextspell) spell entries though.
Quote:
Is there some kind of list where each spells actual .dm content is visible ?
|
The closest thing, that I know of, is the spell list db. Another method is looking at the user-created spells in community mods. Although, all of my original spells were made purely from scratch using the modding.pdf - so that's perfectly viable too, just not as expansive. I think the cleanest method is making spells from scratch using the spell list db as a reference.
__________________
That is not dead which can eternal lie.
And with strange aeons even death may die.
Last edited by kennydicke; March 14th, 2010 at 02:05 AM..
|
The Following User Says Thank You to kennydicke For This Useful Post:
|
|
March 14th, 2010, 06:02 AM
|
|
Major General
|
|
Join Date: Jan 2004
Location: Germany / Bielefeld
Posts: 2,035
Thanks: 33
Thanked 18 Times in 12 Posts
|
|
Re: questions about modding a spell
Could you please post an example of the "nextspell" entry you mentioned ? I wasnt able to find anything about it in the dm's i searched in. I get the theory i guess. Using that entry, a new spell will be chained after the original.
|
March 14th, 2010, 06:05 AM
|
|
Major General
|
|
Join Date: Sep 2007
Location: Scotland
Posts: 2,066
Thanks: 109
Thanked 162 Times in 118 Posts
|
|
Re: questions about modding a spell
There are plenty of examples in the CPCS mod.
|
March 14th, 2010, 06:53 AM
|
|
Corporal
|
|
Join Date: Feb 2010
Location: Winston, OR, USA
Posts: 87
Thanks: 153
Thanked 12 Times in 6 Posts
|
|
Re: questions about modding a spell
Ragnarok-X
Gregstrom is absolutely right about CPCS, great examples in there.
I modified this from one of mine:
#newspell
#name "farsummon something else"
#descr "companion to farsummon something"
#school -1 - spell cannot researched
#researchlevel 0 - no research required to cast
#path 0 6 - nature path
#pathlevel 0 1 - N1 required
#damage XXX - input monster ID
#effect 10037 - farsummon
#nreff 1 - summons 1 something else
#end
#newspell
#name "Summon Something"
#descr "Farsummons something."
#school X - enter variable for school, conjuration is 0
#researchlevel X - enter level of spell, I use 0 for testing
#path 0 6 - nature path
#pathlevel 0 1 - N1 required
#damage XXX - input monster ID
#effect 10037 - farsummon
#fatiguecost 0 - add 100 for each gem you want the spell to cost
#nextspell "farsummon something else"
#nreff 20 - summons 20 somethings
#end
The nextspell must come first, or else the primary spell can't find it. This is pretty similar to what you're going for. Of course you'll want to adjust the researchlevel, path, pathlevel, etc., to your desired taste.
|
The Following User Says Thank You to kennydicke For This Useful Post:
|
|
March 14th, 2010, 08:32 AM
|
|
Major General
|
|
Join Date: Jan 2004
Location: Germany / Bielefeld
Posts: 2,035
Thanks: 33
Thanked 18 Times in 12 Posts
|
|
Re: questions about modding a spell
thanks a lot.
whats CPCS short for ?
|
March 14th, 2010, 08:33 AM
|
|
Corporal
|
|
Join Date: Feb 2010
Location: Winston, OR, USA
Posts: 87
Thanks: 153
Thanked 12 Times in 6 Posts
|
|
Re: questions about modding a spell
Cross Path Combat Spells
__________________
That is not dead which can eternal lie.
And with strange aeons even death may die.
|
March 14th, 2010, 09:13 AM
|
|
Major General
|
|
Join Date: Jan 2004
Location: Germany / Bielefeld
Posts: 2,035
Thanks: 33
Thanked 18 Times in 12 Posts
|
|
Re: questions about modding a spell
When looking over this, do you think it would work out as intended ?
#newspell
#name "Call of the Wild tier 2"
#descr "Call of the Wild tier 2"
#school -1 - spell cannot researched
#researchlevel 0 - no research required to cast
#path 0 3 - nature path
#pathlevel 0 1 - N1 required
#damage 633 - input monster ID
#effect 10037 - farsummon
#nreff 10 - summons x something else
#end
#selectspell 445
#nextspell "Call of the Wild tier 2"
#pathlevel 0 3
#end
intended effect: spawn 1 leader, the stock wolf pack and 10 more werewolves among the stock wolves.
edit: doesnt work out that well. It spawns the 10 werewolves, but it as well spawns a total of 2 werewolf commanders ?
Last edited by Ragnarok-X; March 14th, 2010 at 09:42 AM..
|
March 14th, 2010, 09:46 AM
|
|
Major General
|
|
Join Date: Jan 2004
Location: Germany / Bielefeld
Posts: 2,035
Thanks: 33
Thanked 18 Times in 12 Posts
|
|
Re: questions about modding a spell
Wondering about pathlevel in the chained spell. Are the magic requirements even checked ? Could you in theory create one spell with a base effect at lvl 1, add 9 more chains, each with one level higher requirements and make a "true" self-scaling spell ?
i.e. call of the wild lvl 1 calls 10 wolfs. tier 2 to 9 (all new spells chaining into each other down the road) add 5 wolfs each, but require nature 2 - 10. Would the game check the caster lvl for exact effect or would it run all 10 spells anyway ?
|
March 14th, 2010, 09:29 AM
|
|
Corporal
|
|
Join Date: Feb 2010
Location: Winston, OR, USA
Posts: 87
Thanks: 153
Thanked 12 Times in 6 Posts
|
|
Re: questions about modding a spell
Looks about right. Some notes:
With selectspell, you can use the spell name in parentheses. This is much faster than looking up the spell ID.
EX: #selectspell "Call of the Wild"
You have to close any #newXXX or #selectXXX tag with a #end tag.
EX:
#selectspell 455
#nextspell "Call of the Wild tier 2"
#end
In my experience, when you farsummon like this, the game automatically changes one of the summoned creatures into a commander - this means it would summon an additional 9 werewolves and 1 werewolf commander. Though this may be an erroneous conclusion.
|
The Following User Says Thank You to kennydicke For This Useful Post:
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is On
|
|
|
|
|