- Joined
- Feb 4, 2008
- Messages
- 3,511
Basically, does this work without desyncing the game:
JASS:
function AlternateInvisibility takes unit target, player user returns nothing
call ShowUnit(target. false)
if (GetLocalPlayer() == user) then
call ShowUnit(target. true)
endif
endfunction