Elementargewalt Posted November 9, 2021 Share Posted November 9, 2021 Hey folks, title says it all... I´ve created a magic effect which casts a spell that carries the real effect plus shows a message...everything works fine, accept of my message is "complemented" by an additional messeage that tells me that a spell has been added...well i know that, and i don´t want to be informed about it, so- how do i get rid of this "additional" message i don´t need? Here is the script i use to add the spell plus the message through the magic effect: Scriptname AAAWeakenedImmuneSystemSpellScript extends activemagiceffectMessage Property WeakenedImmuneSystemMessage Auto Const MandatorySPELL Property WeakenedImmuneSystemSpell Auto Const MandatoryEvent OnEffectStart(Actor akTarget, Actor akCaster)Actor PlayerREF = Game.GetPlayer() WeakenedImmuneSystemMessage.show() PlayerREF.AddSpell(WeakenedImmuneSystemSpell)endEventAgain: Everything works fine aside the fact that the game spells an additional message on top of mine, which tells me about the added spell-is there a way to remove/ avoid that? thanks for the help regards Link to comment Share on other sites More sharing options...
Zorkaz Posted November 9, 2021 Share Posted November 9, 2021 PlayerREF.AddSpell(WeakenedImmuneSystemSpell, false)https://www.creationkit.com/index.php?title=AddSpell_-_Actor Link to comment Share on other sites More sharing options...
Recommended Posts