I have been making a sword with the same functionality as Sting from LOTR. The idea its that it glows when orcs/goblins are nearby.
So far I have the sword working by using effectshaders which works really well in first person but obviously is strange in third person as it makes the entire character glow. Is there any way around this?
Also I have made the sword work on goblins but only the ones that have factions (ie. GoblinTribeA etc). Is there any way to identify all goblins?
Script so far...
Scn StingScriptref curActorshort cantWait; set to 1 if we find a hostile actorshort doOncebegin gameMode set cantWait to 0 set curActor to GetFirstRef 69 ; find the first actor within the player's area Label 10; use a loop to iterate over all actors in the area if (curActor); did we get a valid actor? if (curActor.GetDead == 0) if (curActor.GetDistance player <= 2500 && ((curActor.GetInFaction GoblinTribeA == 1) || (curActor.GetInFaction GoblinTribeB == 1) || (curActor.GetInFaction GoblinTribeC == 1) || (curActor.GetInFaction GoblinTribeD == 1) || (curActor.GetInFaction GoblinTribeE == 1) || (curActor.GetInFaction GoblinTribeF == 1) || (curActor.GetInFaction GoblinTribeG == 1))); is true if actor goblin within 2500 set cantWait to 1 endif endif if (cantWait == 0); if we didn't find any hostile actors yet... set curActor to GetNextRef; then get next actor... Goto 10; and go to top of loop endif endif ; end of loop if cantWait == 1 if doOnce == 0 if ((player.getequipped sting == 1) && (player.isweaponout == 1) && ((getcurrenttime < 5) || (getcurrenttime > 19)) || (player.IsInInterior == 1) || (IsRaining == 1)) Player.PlayMagicShaderVisuals effectSting2, 300 set doOnce to 1 endif endif else Player.StopMagicShaderVisuals effectSting2 set doOnce to 0 endifEnd
Thanks a lot.