Im sure its an easy script or something but i havnt a clue where to start
- Hypno
Scriptname SetBanditFriendEvent OnEffectStart(Actor Target, Actor Caster)debug.MessageBox("You are now a friend to Bandits")Target.AddToFaction (BanditFriendFaction)EndEventScriptname SetBanditFriend extends ActiveMagicEffectFaction Property BanditFriendFaction Auto Event OnEffectStart(Actor Target, Actor Caster)debug.MessageBox("You are now a friend to Bandits")Target.AddToFaction (BanditFriendFaction)EndEventscriptName SetToBanditFriendSCRIPT extends ActiveMagicEffectEvent OnEffectStart(Actor Target, Actor Caster) debug.Notification("You are now a friend to Bandits") Target.AddToFaction (BanditFriendFaction)EndEventEvent OnEffectFinish(Actor Target, Actor Caster) debug.Notification("Bandit Friendship Effect wearing off.") Utility.Wait(5.0) Target.RemoveFromFaction (BanditFriendFaction)EndEvent