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

pyJass

Status
Not open for further replies.
Level 9
Joined
Nov 28, 2008
Messages
704
I have a very very basic python -> JASS converter up and running. I'm calling it basic because so far it only allows if true: notation and library:, struct: and such.

It also depends on cJass to remove set and call.

Is there any interest in me working on this and publicly releasing? Or can I just call this good, as it is all I need for my purposes?

JASS:
function Trig_T_Actions takes nothing returns nothing:
    if(true):
        BJDebugMsg("ROAR")

//===========================================================================
function InitTrig_T takes nothing returns nothing:
    set gg_trg_T = CreateTrigger(  )
    call TriggerRegisterTimerEventSingle( gg_trg_T, 5 )
    call TriggerAddAction( gg_trg_T, function Trig_T_Actions )

iThat's what I got working so far.
 
Status
Not open for further replies.
Top