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!
i have a problem at with my map i have some spells for that i have create a fade filter but the fade filter will be showed for all players but i want that only the caster and the tregget see it
hmmm can i do it in gui to because i hav the triggers in gui and im dont know how i can create a filter trigger in jass and how i can combin it with the other
Custom script: if GetLocalPlayer() == Player(i) then
Your GUI actions
Custom script: endif
i in Player(i) (the custom script) is the player number of the player you want the actions to be executed for. Player 1 has index i = 0; player 2 has index i = 1, etc !!
The actions between the 2 custom scripts can cause desyncs if not used properly. For instance: never use a "Unit - create units" action inbetween those scripts. Fogs should work though.
You have to learn the basics of JASS inorder to do this.
You basically have to check if GetLocalPlayer equals the players you want to run the filter, if so then it does you actions. If not then it does nothing (or if that causes sync problems you do A simlar action (same kind of object) but has no affect.
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.