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

fade filter

Status
Not open for further replies.
Level 14
Joined
Jul 1, 2008
Messages
1,314
yes there is a function, that Gets the Local Player, wich means it returns the local player on each computer.

That means clearly, that Player 1's local player is Player 1, Player 2's is Player 2 and so on.

You only can use this at actions like fadefilter, other Video Effects and Waether things, Messages and so on. Be carefull, you could generate Problems, that crahs Wc3.

You could do it like this:

JASS:
function ReturnFadeFilter takes player P returns nothing
if P == GetLocalPlayer() then
 // your FadeFilter here
endif
endfunction

You should call this function by giving the player of your choice to it.

Example:

call ReturnFadeFilter(Player(0)) will create your filter for Player 1.

Greets
 
Status
Not open for further replies.
Top