• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

[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