.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
World Supremacy- Save $9.00

   







Go Back   .com.unity Forums > Illwinter Game Design > Dominions 3: The Awakening > Scenarios, Maps and Mods

Reply
 
Thread Tools Display Modes
  #1  
Old July 10th, 2009, 06:55 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Removing restricted nations tag from summons

I am trying to figure out besides using #clear, how to allow all nations to cast a specific nations unique summons? Can it be done? or must I clear the monster and rebuild the stats manually?

Specifically, any way to remove the restricted tag from summons?
Reply With Quote
  #2  
Old July 10th, 2009, 07:14 AM

Sombre Sombre is offline
BANNED USER
 
Join Date: Feb 2007
Posts: 5,463
Thanks: 165
Thanked 324 Times in 190 Posts
Sombre is on a distinguished road
Default Re: Removing restricted nations tag from summons

If it's a unique summon with a random selection from a limited set of uniques, like the tlaloques etc, then you're out of luck I believe. If it's a unique summon with a single target you just overwrite the national spell with your own non national version of it.
Reply With Quote
  #3  
Old July 10th, 2009, 09:16 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Re: Removing restricted nations tag from summons

Quote:
Originally Posted by Sombre View Post
If it's a unique summon with a single target you just overwrite the national spell with your own non national version of it.
This one.

So essentially, i have to create a totally new spell which summons a say, Monster Boar and not use #copyspell which presumably would still copy the #restricted tag?

If i have to create a new spell to achive this, how many new spell slots are there?
Reply With Quote
  #4  
Old July 10th, 2009, 09:51 AM

Sombre Sombre is offline
BANNED USER
 
Join Date: Feb 2007
Posts: 5,463
Thanks: 165
Thanked 324 Times in 190 Posts
Sombre is on a distinguished road
Default Re: Removing restricted nations tag from summons

You wouldn't need to use a new spell slot, you'd just selectspell the original and overwrite it. At least I think that'd work.

And yes, afaik (I don't have the modding pdf here) you can't use the copyspell command because you can't undo a nation restriction.
Reply With Quote
The Following User Says Thank You to Sombre For This Useful Post:
  #5  
Old July 10th, 2009, 10:48 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Re: Removing restricted nations tag from summons

Quote:
Originally Posted by Sombre View Post
You wouldn't need to use a new spell slot, you'd just selectspell the original and overwrite it. At least I think that'd work.

And yes, afaik (I don't have the modding pdf here) you can't use the copyspell command because you can't undo a nation restriction.
How is selectspell different than copyspell? Doesn't select spell still obtain the original atributes and allow you to extend them? Hmmm, I'll have to look into it.

One other thing if i may, How does one go about creating a new misc item and giving it the same capabilites as a Shrowd? ie, Can i create a misc item to produce a blessed/holy effect? The PDF is a bit vague on this - or I am, but i cant seem to find the info.

Thanks for your help Sombre!
Reply With Quote
  #6  
Old July 10th, 2009, 11:32 AM

Sombre Sombre is offline
BANNED USER
 
Join Date: Feb 2007
Posts: 5,463
Thanks: 165
Thanked 324 Times in 190 Posts
Sombre is on a distinguished road
Default Re: Removing restricted nations tag from summons

Quote:
How is selectspell different than copyspell? Doesn't select spell still obtain the original atributes and allow you to extend them? Hmmm, I'll have to look into it.

One other thing if i may, How does one go about creating a new misc item and giving it the same capabilites as a Shrowd? ie, Can i create a misc item to produce a blessed/holy effect? The PDF is a bit vague on this - or I am, but i cant seem to find the info.

Thanks for your help Sombre!
Selectspell actually changes the spell you've selected, it doesn't copy it to a new slot then make changes. Same thing with #selectmonster and #copystats/#copyspr.

Item modding is limited to cost/paths/research level/sprite and the weapon/armor assigned when the item is equipped. So you can't do anything like the shroud effect, though you could turn the shroud into a helmet graphic called "Helm of God" or something and have it give a head armour also called "Helm of God" with some incredible prot value.
Reply With Quote
  #7  
Old July 11th, 2009, 02:31 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Re: Removing restricted nations tag from summons

[quote=Sombre;700766]
Quote:

Item modding is limited to cost/paths/research level/sprite and the weapon/armor assigned when the item is equipped. So you can't do anything like the shroud effect, though you could turn the shroud into a helmet graphic called "Helm of God" or something and have it give a head armour also called "Helm of God" with some incredible prot value.
Now this is cool, check this out:

#newitem
#selectitem 168
#name "Shroud of the Battle Saint"
#descr "A handy pocket sized Shroud"
#Constlevel 0
#mainpath 4
#mainlevel 1
#copyspr 168
#type 8
#end

Now we have an Misc item with the Shroud of the Battle Saint effect. I'm going to put this to use.
Reply With Quote
  #8  
Old July 11th, 2009, 02:51 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Re: Removing restricted nations tag from summons

er false alarm. Now it doesn't work - whats going on..
Reply With Quote
  #9  
Old July 11th, 2009, 03:02 AM
Burnsaber's Avatar

Burnsaber Burnsaber is offline
Colonel
 
Join Date: Jun 2007
Location: Finland
Posts: 1,617
Thanks: 179
Thanked 304 Times in 123 Posts
Burnsaber is on a distinguished road
Default Re: Removing restricted nations tag from summons

You have a capital letter in the #constlevel line...
Reply With Quote
The Following User Says Thank You to Burnsaber For This Useful Post:
  #10  
Old July 11th, 2009, 03:34 AM
hEad's Avatar

hEad hEad is offline
Sergeant
 
Join Date: Dec 2007
Location: WA, Australia
Posts: 228
Thanks: 18
Thanked 7 Times in 5 Posts
hEad is on a distinguished road
Default Re: Removing restricted nations tag from summons

Quote:
Originally Posted by Burnsaber View Post
You have a capital letter in the #constlevel line...
You bloody champion. - the nail the hoof the mod!

A quirk however, it doesn't like being in the astral path. In fire however, it works a treat.

#selectitem 168
#name "Shroud of the Battle Saint"
#descr "A handy pocket sized Shroud"
#constlevel 0
#mainpath 0
#mainlevel 1
#copyspr 168
#type 8
#end

Thanks for the eyeball Burnsabre - that was getting me a tad wound up!
Reply With Quote
Reply

Bookmarks


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 On

Forum Jump


All times are GMT -4. The time now is 03:20 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.