• 🏆 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] How to get Zinc working?

Status
Not open for further replies.
Level 11
Joined
Apr 6, 2008
Messages
760
I've looked in too zinc some i and looks interesting, but i can get it too work i tiered this and a lot more

JASS:
//! zinc

    library Test
    {
        function onInit()
        {
            BJDebugMsg("Test")
        }
    }

//! endzinc

but it wont work, any idea how too get zinc to work? i have the latest jasshelper
 
function onInit() is the initializer

He doesn't initialize it -_-

I've never used ZINC so I don't know if initializers are different.

JASS:
//! zinc

    library Test initializer onInit
    {
        function onInit()
        {
            BJDebugMsg("Test")
        }
    }

//! endzinc

But it may also not work because he is trying to show a message on map init.
 
Status
Not open for further replies.
Top