• Check out the results of the Techtree Contest #19!
  • Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

[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