• 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!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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,255
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