HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

Can Fade Filters be displayed to only ONE player?

02-06-2007, 07:03 AM#1
Toink
Just wondering if that is possible..

Sorry for being such a stupid noob.

Thanks in advance!
02-06-2007, 08:14 AM#2
mikke95
It is pretty hard can only be done in JASS.
02-06-2007, 08:38 AM#3
BBDino
You need to GetlocalPlayer, a search should turn up some useful stuff.
02-06-2007, 10:04 PM#4
Ammorth
Make sure you use the "advanced fade filter" equivalent in JASS. The other one reportedly desyncs.
02-07-2007, 12:01 AM#5
Pyrogasm
Use this:
Collapse JASS:
if GetLocalPlayer() == GetTriggerPlayer() then //You can change GetTriggerPlayer() to whatever suits you
//your actions here
endif
Just implement the two lines with a custom script, with the endif after the last action you need regarding a fade filter for one player.

Disclaimer: GetLocalPlayer() is known to cause mass amounts of Desyncs and should not be used in combination with all but a few instances (this one is safe).