.com.unity Forums

.com.unity Forums (http://forum.shrapnelgames.com/index.php)
-   Scenarios, Maps and Mods (http://forum.shrapnelgames.com/forumdisplay.php?f=146)
-   -   Monster SCENARIO Project (http://forum.shrapnelgames.com/showthread.php?t=39304)

rdonj January 1st, 2009 05:55 PM

Re: Monster SCENARIO Project
 
Maybe if you gave it a #terrainshape? If it is supposed to be a different unit at the province it's at, it should change. Which might get rid of the hide command if said form can't hide.

Gandalf Parker January 1st, 2009 06:04 PM

Re: Monster SCENARIO Project
 
That might work. But then Id have to know each time what terrain its in.
Hmmmm maybe if I gave it both a water shape and a land shape. That would force it to change no matter where it is

lch January 1st, 2009 06:44 PM

Re: Monster SCENARIO Project
 
Quote:

Originally Posted by Aezeal (Post 663210)
Anyway Ich since I read just now you are the creator of the spell guide I was wondering if you knew the answer to a question I put up somewhere on this forum about remote summons and getting commanders when summoning troops and vice versa.. can that be stopped?

I am not the author of the Spell Guide, DrPraetorius is. I just had a look at the data that he prepared and compared it against the other data tables that I already identified, since the design is pretty similar. I should get back to DrP about that at some time.

As I said before, if you want a question answered then either ask the whole question again in full, or give me a link to where that question is. I don't know what you're referring to and I can't read minds, yet. :re:

Aezeal January 1st, 2009 06:59 PM

Re: Monster SCENARIO Project
 
well that was the whole question really: when I remote summon I get a commander with the troops (which I didn't specify, a trooper just as commander) and when I summon a commander I get a troops with it (the commander just as trooper) I don't really want either, can it stopped/helped?

lch January 1st, 2009 07:32 PM

Re: Monster SCENARIO Project
 
Well, it clearly makes no sense to farsummon units without a commander, as they'll instantly route then in the resulting battle. But you can of course farsummon only a single commander if you send the numeffects to 1, the spell "Send Horror" is an example of this. Does that answer the question?

Aezeal January 1st, 2009 07:41 PM

Re: Monster SCENARIO Project
 
hmm well the spell I had was summoning a commander... and then troops of a different type (clearly since unlike wolves we don't have commanders beloning to troops (well for me he does but probably not for the game)

one of the troopers thus automatically becomes a leader..

by setting commander summon to one I'm pretty sure I still got a trooper and a commander. I'll need to check it again though I guess since it's been a while

Quote:

#newspell
#name "Drop Pod Strike Force"
#descr "The Black Knights are the elite troops used in behind enemy lines drop pod attacks."
#school -1
#restricted 75
#researchlevel 0
#path 0 4
#pathlevel 0 1
#path 1 3
#pathlevel 1 1
#effect 10037
#fatiguecost 100
#damage 2583
#nreff 2
#end

#newspell
#name "Med Priest Strike Force"
#descr "The Black Knights are the elite troops used in behind enemy lines drop pod attacks."
#school -1
#restricted 75
#researchlevel 0
#path 0 4
#pathlevel 0 1
#path 1 3
#pathlevel 1 1
#effect 10037
#fatiguecost 100
#damage 2623
#nreff 1
#nextspell "Drop Pod Strike Force"
#end

#newspell
#name "General Strike Force"
#descr "The Black Knights are the elite troops used in behind enemy lines drop pod attacks."
#school -1
#restricted 75
#researchlevel 0
#path 0 4
#pathlevel 0 1
#path 1 3
#pathlevel 1 1
#effect 10037
#fatiguecost 100
#damage 2621
#nreff 1
#nextspell "Med Priest Strike Force"
#end

#newspell
#name "Deploy Black Knight Strike Force"
#descr "The Black Knights are the elite troops used in behind enemy lines drop pod attacks."
#school 2
#restricted 75
#researchlevel 7
#path 0 4
#pathlevel 0 1
#path 1 3
#pathlevel 1 3
#effect 10037
#fatiguecost 3000
#damage 2602
#nreff 15
#nextspell "General Strike Force"
#end
This was the spell, if I recall correctly I getmy black knights AND a black knight commander (which I don't want) a general (commander) and a general trooper (which I don't want) a med-priest (commander/mage) and a med priest trooper (which is also pretty useless) and then a droppod (which is a trooper and should be)

I guess the command I use for the summoning of commanders should be different and that might remove the troopers I don't want.. but I can't think how I could remove the excess black knight commander (which is just a trooper with leadership and who I don't want there since they are provided with ample leadership in the form of the general and med-priest.

lch January 1st, 2009 07:52 PM

Re: Monster SCENARIO Project
 
The spells like Ghost Riders and Send Horror use #effect 10038, try that.

Aezeal January 2nd, 2009 06:40 AM

Re: Monster SCENARIO Project
 
I will, I've never used either spell but I was under the impression that it would summon multiple thingies at least with ghost riders, it won't be come independant then?.

Sombre January 2nd, 2009 06:54 AM

Re: Monster SCENARIO Project
 
I'm pretty sure you can farsummon a single commander unit that isn't an indy. I'll look it up when I get home from work.

Aezeal January 2nd, 2009 08:08 AM

Re: Monster SCENARIO Project
 
That would be great Sombre since I can't think of a spell which farsummons an owned commander (so I could check the spell guide for the code)

I just tested and Ich and I where both right: 10038 does summon single commanders, but they are not owned by you, they are "special monsters"

lch January 2nd, 2009 08:42 AM

Re: Monster SCENARIO Project
 
Ah, now I understand what you want. Farsummon a commander, but under your control. Have you tried setting the number of effects to 0 for that?

Sombre January 2nd, 2009 09:59 AM

Re: Monster SCENARIO Project
 
Is the Bukavac an indy? I forget.

Aezeal January 2nd, 2009 12:06 PM

Re: Monster SCENARIO Project
 
strange idea to summon 0, but in the game logic it might be a very good idea ich I'll try. I'm also gonna try if summoning the commander first maybe doesn't give a commander with the troops (but I'm 99% sure it won't work since now it summons first 15 troops, then commander 1, then commander 2, then 3 other troops and that last one still gives a commander.)

Aezeal January 2nd, 2009 12:57 PM

Re: Monster SCENARIO Project
 
it doesn't work though same results as with summoning 1 and trooper still get their own commander

Sombre January 2nd, 2009 03:57 PM

Re: Monster SCENARIO Project
 
You can't stop the farsummoned troops from getting their own commander afaik.

You might be able to do a farsummoned commander on his own though, to go with the troops as a nextspell.

What exactly was the result of setting effect to 10037 and nreff to 0?

Sombre January 2nd, 2009 04:04 PM

Re: Monster SCENARIO Project
 
Actually one trick you might like to use to get an interesting effect is to start out with a teleport spell, then chain a nextspell summon commander and nextspell summon monsters.

I haven't tested it but I think it would give you a unique effect. Teleport somewhere and arrive with a load of troops and a commander.

Aezeal January 2nd, 2009 05:34 PM

Re: Monster SCENARIO Project
 
0 just gave a commander and a trooper.

Adding teleport would be interesting.. but also a completely other spell than intended here.. the mage casting this usually is meant to stay savely behind enemy lines. On the other hand it WOULD give you one powerfull mage in addtion to this force which you could script (I there is a small mage priest coming with the spell but it's unscripted and thus in effect pretty useless (though in my test he DID cast healing spells which is what he's about :D)

Gandalf Parker January 2nd, 2009 06:49 PM

Re: Monster SCENARIO Project
 
Maybe you could follow it with a return. Jump in, drop them off, jump back.

Endoperez January 2nd, 2009 08:55 PM

Re: Monster SCENARIO Project
 
#onebattlespell "Returning" on the mage?

Sombre January 2nd, 2009 09:11 PM

Re: Monster SCENARIO Project
 
There's no clean way to follow it with a return afaik.

I can't seem to find a way of farsummoning friendly commanders individually. I'll turn it over in my head this weekend, but I think there's no perfect way to do it. You already have the imperfect way.

Aezeal January 3rd, 2009 09:15 AM

Re: Monster SCENARIO Project
 
yeah I've pretty much searched the spell db.. there are some spells which I think are summons with other numbers but I don't think they are friendly commander farsummons.

The spell works well enough.. just a few guys which aren't what they shouldn't be, no real harm, a commander without leadership is just a trooper and those extra commanders you get are not overpowering the spell in anyway either. (I could probably give the troop types I summon leadership 0 to cancel out the extra leadership I get but that would not be fair if I'd want to GoR one (which is pretty useless anyway :D) for some reason.

Endoperez January 3rd, 2009 11:56 AM

Re: Monster SCENARIO Project
 
I have few untested ideas for how to create a force in enemy province. Basically, you use either #nextspell or #onebattlespell to create a chain that goes like this:

1) teleport effect
2) summon units/commander effects
3) returning (that only affects the caster)

It might go like this:
i: ritual teleport, nextspell ii
ii: farsummon/summon 1, nextspell iii
iii: farsummon/summon 2, nextspell iv
iv: returning

Or like this:
i: ritual teleport, nextspell ii
ii: farsummon 1, nextspell iii
iii: farsummon 2, nextspell iiii
The commander that teleports with the force has #onebattlespell "returning". This is a way for the watcher nation to insert troops without losing mages.


I don't know if these work.

Gandalf Parker January 3rd, 2009 01:05 PM

Re: Monster SCENARIO Project
 
That will be great.

To also use it as as an event generator, is there anything that does a random placement for that initial teleport?

lch January 3rd, 2009 09:36 PM

Re: Monster SCENARIO Project
 
Quote:

Originally Posted by Gandalf Parker (Post 663658)
To also use it as as an event generator, is there anything that does a random placement for that initial teleport?

Yup. Put them into the Void, Inferno or Kokytos. :D

Gandalf Parker January 3rd, 2009 09:52 PM

Re: Monster SCENARIO Project
 
Those are the spells I was thinking.
Has anyone dismantled them? DrP or Endo maybe?

lch January 3rd, 2009 10:45 PM

Re: Monster SCENARIO Project
 
Do a teleport / gate effect to their province IDs. The Arena is province number 0 (actually named Ladakh Sanctuary in the fatherlnd files for some reason, maybe KO or JK were on a spiritual journey once?) and those others have the province IDs -1 down to -3.

Gandalf Parker January 3rd, 2009 10:49 PM

Re: Monster SCENARIO Project
 
Interesting. That must be why the 1500 province limit never seems to get me anything above 1495

Aezeal January 4th, 2009 05:38 AM

Re: Monster SCENARIO Project
 
hmmm will you move back after summoning though since I guess the magic movementphase has already passed then (or not happened when summoning)

needs to be tested, but not by me today. Dom 3K has a nice multifarsummon spell though which could be easily adjusted for your purposes.

Gandalf Parker July 10th, 2009 04:26 PM

Re: Monster SCENARIO Project
 
My apologies ahead of time to the DIY crowd. Some stray thoughts on the subject of modding events which has come up again. I guess Im supposed to just make notes on my own computer but Id rather keep public notes in case someone else wants to go with it.

ANYWAY what I was thinking was this....
Most of the events come as messages. Some nice story-line text along with a gift of some sort.

The messages could be easily duplicated by having an admin-run nation in the game (such as the Watchers mod I created) to send them. But it wouldnt be very random that way. Especially for solo play.

But the program AutoHotKey can duplicate the action of typing in a message and sending items. Ive already used it in some Dom3 situations to program long actions to a hot key such as WindowsKey-A or MetaKey-B. But it doesnt have to be a keypress. It can be a playback recording of all mouse movements, clicks, and keyboard typing. Im thinking that an external program could be written to randomly decide each turn to run one of the playbacks.

Besides the usual fairs and merchant gifts and pirate ships, we could expand also. I think that one of the spells that summon an attack group to a far province uses fairly unique units that are not purchasable by others. That means that the mod could keep changing the units between attacks. But Im thinking this would only work for solo play or mp players would have to receive a copy of the new mod each turn.

Some things can be gotten from game logs and used as events. Such as a message saying that a wandering merchant brings a tale of a great fight in xxxxxx province between xxxxx and xxxxxx. Or maybe that the merchant was part of a caravan delivering a gift of xxxxxx sent from one player to another.


All times are GMT -4. The time now is 02:18 PM.

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