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!
There is Floating Text - Hide/Show For Force. So you just have to pick yourself a force that contains everyone but the unit's owner or you first hide the text for everyone and then display it to a force consisting only of the owner.
Are you serious about creating a force in the local block? Then it should be killed in same right away to not cause a desync. But you do not need the local block.
JASS:
function ShowTextTagForceBJ takes boolean show, texttag tt, force whichForce returns nothing
if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then
// Use only local code (no net traffic) within this block to avoid desyncs.
call SetTextTagVisibility(tt, show)
endif
endfunction
Not sure what you mean by Force, and I don't know what to change in that custom script for, owner of unit, the trigger isn't triggered by a player or even a unit. It's being set by a variable.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.