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!
How can I make a special effect visible only to a specific player? I'm using a dummy with perma invi but can be seen with sentry wards..? any help appreciated =D
There's a very good tutorial explaining that by Purge.
Here's a code from that tutorial that would create a special effect only visible for the first player (aka red player).
JASS:
function Test takes nothing returns nothing
//this is the proper method
local string s = "war3mapImported\\FX.mdl"
if GetLocalPlayer() != Player(0) then
set s = ""
endif
call DestroyEffect(AddSpecialEffect(s,0.,0.))
endfunction
EDIT: Blah, too late. But Maker, I don't think you need to null strings, right?
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.