Alright, this question may be a bit of a doosy.
I want to create a spell for my game that allows the player to summon a monster, only have 1 monster summoned at a time, follow the caster, and attack anything the caster attacks or anyone that attacks the caster (unless of course the caster hits himself from being too close to a blast radius from another spell.)
And of course, the summon will also attack anything which attacks the summon itself...unless it is the caster who called him.
I know this is alot to ask, but I have finally gotten through most of my code and I am ready to start work on AIs and figure this would be a great starting point. Any tips and advice are very welcome.
ID:162429
![]() Jan 9 2008, 12:08 pm
|
|
![]() Jan 9 2008, 2:05 pm
|
|
All of these can be made with variables. An "owner" variable can tell the monster what to follow, what not to attack, etc. And the owner can have a variable with how many monsters they own.
|
I guess I should start at the top:
How do I spawn a monster? spawn() just causes a command to be processed so not to interfere with a proc. New seems like it would be the trick, but I am not sure how to use it to create a monster. |
Something like this?
Summon_Fire_Elemental |
That returns a bad variable at compile time. [spellsystem.dm:601:error:monster:undefined var]
I take it I first need to set a variable somewhere in this spell that defines monster? If so, am I just defining the path to the monster I want to summon? |
Presumably you'd define mob/var/mob/monster (or mob/player/var...), so that you always are able to find the monster you've summoned.
Note that this would cause the monster to be saved along with the player. If you don't want that, change it to mob/var/tmp/mob/monster. If you do want it saved, though, remember to change the Read() proc for summoned monsters so that they're properly placed on the map when the owner logs back on (and to remove the monster after a player logs out, either way). |
Summon_Fire_Elemental This should work then? |
Well, it works... unless I am completely missing something. The way Garthor told me to do it (while I appricate his help) didn't make much sense to me...but then again I am very new.
If I defined the variable already as the monster I want to summon why type out the entire path again? Even when I did, and had the variable defined it wouldn't spawn a monster. |