Jump to content

Oblivion / How to make summoned creature follow the player through different cells?


Roseoblv

Recommended Posts

Hello, I've finished the summoning spell for my creature, the only trouble I've got now is that it doesn't follow me through cells, which once the Spell ends, kills the player since it cannot find the creature.

Is there any way I can make it work somehow? Either with teleportation or simply entering doors.

Link to comment
Share on other sites

Creatures for summon have unticked "No Low Level Processing" and ticked "Quest Item" flags. Also such problems were discused in "Strange glitch hapenning with custom summon" thread not too long ago.

Edited by RomanR
Name of the thread.
Link to comment
Share on other sites

Well my death problem seem to begone, now I just have one little trouble, it seems my Land Dreugh summoning automatically wants to end the life of everybody around, even tho I gave him the same stats/personality/faction as every other creatures.

Also I do not use the same script as the one of the thread, they keep the creatures in a cell, I spawn them.

This is the Spell Script:

scriptname A01SummonOldOneScript



ref oldone

ref refcaster



begin ScriptEffectStart



    set refcaster to GetSelf

    set oldone to refcaster.placeatme A01SummonOldOne, 1, 128, 0



end



begin ScriptEffectUpdate



    if oldone.getdead == 1

        player.dispel A02SummonOldOne

    endif



end



begin ScriptEffectFinish



    pms EffectSummonMythicDawn 1

    oldone.kill

        

end


This is the Creature Script:

scriptname A01SummonOldOneLoadScript



begin OnLoad



saa 1.0

pms effectSummonMythicDawn 1



end



begin OnDeath



pms effectSummonMythicDawn 1

disable



end

 

Link to comment
Share on other sites

Posted (edited)

I'm talking about the two other creatures I've made, they have PlayerFaction, and yet he still aggro random NPC and myself while the other two don't.

Edited by Roseoblv
Link to comment
Share on other sites

After some tests with Deadroth I found that you need to lower Aggression (in AI part, like to 25) and add Personality (I set 50). With original aggression (100) it attacked everything on sight and with original personality (only 10) it was attacked by anyone too.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...