[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.
Back
Top