• 🏆 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!

[Solved] Initializer not working on vJass library

Status
Not open for further replies.
Level 19
Joined
Aug 8, 2007
Messages
2,765
JASS:
library DATA initializer onInit

  // SETUP'S DATA MANAGER
  globals

// other triggers

    private function onInit takes nothing returns nothing
        local trigger t
        local integer i = 0
        loop
            call TriggerRegisterPlayerChatEvent(t, Player(i), "-write", true)
            call print("Good")
            set i = i + 1
            exitwhen i == 11
        endloop
        call TriggerAddAction(t, function WritePlayerData)
    endfunction
endlibrary

It doesnt print "Good" 11 times and WritePlayerData doesn't function. What did i do wrong?

(btw im still beginning vJass lol
 
Level 3
Joined
Nov 12, 2010
Messages
43
globals
// it sould give you compile errors
endglobals <--

in onInit Function

local trigger t <- this trigger isn't initializated and you are calling it

local trigger t = CreateTrigger()
 
Status
Not open for further replies.
Top