• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

[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