Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
Can I make a special effect (An Attachment) only visible to certain players? For example, can I have a quest mark above an NPC's head only visible to players that completed a previous quest?
Let's say every player who completes the test is automaticaly added to force 'Completed' (you can also make use of array boolean parameters). Now to create the effect without desync only for given players use:
Set Estring = // custom path here
Custom script: if not IsPlayerinForce(GetLocalPlyaer(), udg_Completed) then
Set Estring = <Empty string>
Custom script: endif
Special Effect - Create special effect (...) using Estring
Jass version, if you prefer scripting:
JASS:
local string s = "path herel"
if not IsPlayerinForce(GetLocalPlyaer(), udg_Completed) then
set s = ""
endif
call AddSpecialEffectTarget(... <using string 's' ofcourse>)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.