• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[Trigger] can i create a Fade filter only for 1 or 2 players

Status
Not open for further replies.
Level 21
Joined
Aug 21, 2005
Messages
3,699
just do this:

  • Actions
    • 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.
 

Dr Super Good

Spell Reviewer
Level 64
Joined
Jan 18, 2005
Messages
27,202
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.
 
Status
Not open for further replies.
Top