6 years
edited 6 years
Hello My dear WC3 community:
Here's the topic to give feedback & suggestions about the Jass Documentation Reforged.
What's this?
Well, it's an updated database of ALL the functions that comes in WC3 reforged (1.32 +). Here you can find all the types, functions and variables available in WC3.
If you submit a JASS, ZINC (and LUA) code in this site, ALL THE code will offer a proper highlight with links to the natives. An example is good to go:
From this
Here's the topic to give feedback & suggestions about the Jass Documentation Reforged.
What's this?
Well, it's an updated database of ALL the functions that comes in WC3 reforged (1.32 +). Here you can find all the types, functions and variables available in WC3.
If you submit a JASS, ZINC (and LUA) code in this site, ALL THE code will offer a proper highlight with links to the natives. An example is good to go:
1 private function Conditions takes nothing returns boolean
2 return GetSpellAbilityId() == 'A000'
3 endfunction4
5 private function Actions takes nothing returns nothing
6 // your stuff...7 endfunction8
9 private function init takes nothing returns nothing
10 local trigger t = RegisterAnyUnitEvent(EVENT_PLAYER_UNIT_SPELL_CAST, function Conditions, function Actions)
11 endfunction
From this
07/07/2020: JassDoc Was born!!!!