View Single Post
  #142  
Old November 17th, 2010, 09:29 AM
Stavis_L's Avatar

Stavis_L Stavis_L is offline
Second Lieutenant
 
Join Date: Sep 2008
Posts: 466
Thanks: 35
Thanked 95 Times in 60 Posts
Stavis_L is on a distinguished road
Default Re: Remove Curses and Horror Marks?

Quote:
Originally Posted by Zogundar View Post
To double check on sites: I'm seeing conflicting reports. Some of you said you can overwrite, others say you can only delete.

Here's one example of what I've done so far:

Code:
#selectsite 492
#path 7
#level 2
#rarity 2
#loc 223
#gems 5 1
#end
Would this have the desired effect, or do I need to add the #clear tag? You can add stuff -after- #clear, right?
You could handle this a couple of ways. If you just want to remove the site, the easiest way is to set the rarity to 5 so it never gets randomly assigned.

If you want to keep the site but remove the horror marking/cursing effect (and not that I'm not 100% sure this will work if the effects are hard coded to the site number) then you'd want to do:

Code:
 
#selectsite 123 --whatever site you're modding
#clear
-- add back whatever other attributes you want
#end
You *might* need to use the #clear command as a separate step, e.g.:

Code:
 
#selectsite 123 --whatever site you're modding
#clear
#end

#selectsite 123 --whatever site you're modding
-- add back whatever other attributes you want
#end
That's not normally necessary, but since this is one of the special effects, it might work if doing all in one operation doesn't (I only say that because that trick works when removing OKLEADER from copystatted units.)

If the above still doesn't work, then the effects are hard coded to the site number, and you'll need to remove it (but you could add back in a new site with the same name/other attributes, if you want):

Code:
 
#selectsite 123 --whatever site you're modding
#rarity 5
#end

#newsite 999 --choose an empty site number
-- add whatever other attributes of the site you disabled you want
#end
__________________
A nation mod I created:
Mistica: A Magocratic Police State
Micro-mods by me you might find useful:
Brainless Soulless - a fix for Life after Death/Ankh "exploit", Bogarus Scout Fix
Reply With Quote