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

[JASS] Adding ability to GetLocalPlayer desyncs?

Status
Not open for further replies.
Level 10
Joined
Sep 19, 2011
Messages
527
Hi people, sorry for the tittle, I did not know what to put on it <.<.

I was wondering if something like this:

JASS:
local unit u
local integer i = 0

loop
    exitwhen i == 12

    set = CreateUnit(Player(i), ...)

    if (Player(i) == GetLocalPlayer()) then
        call UnitAddAbility(u, <rawcode>)
    endif

    set i = i + 1
endloop

desyncs the game.

Greetings and thanks :).
 
Status
Not open for further replies.
Top