HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

How can I see vJass

07-24-2008, 04:19 AM#1
burningice95
How can i see what converted vjass looks like in normal jass?
07-24-2008, 06:47 AM#2
Ammorth
When you save a map, JassHelper creates a .j file in one of the folders that is the compiled code of the last save. Open it and read away.
07-24-2008, 07:52 PM#3
burningice95
Thanks, it is the currentmapscript.j for anyone who ever needs it
07-24-2008, 09:20 PM#4
moyack
More easier.... At the end of the code you want to see, do a mistake, like putting an "a"

Collapse JASS:
library foo
   // your code
a //So pjass catch the error and shows you the converted code.
endlibrary
07-24-2008, 11:34 PM#5
Ammorth
Quote:
Originally Posted by moyack
More easier.... At the end of the code you want to see, do a mistake, like putting an "a"

Collapse JASS:
library foo
   // your code
a //So pjass catch the error and shows you the converted code.
endlibrary

I do that if I want a quick check of the order of something, but I find actually reading it in JassCraft or notepad is a lot easier than pjass error window.