Hi everyone....
I had a made a multiboard interface system before. But I later noticed that the multiboard were leaking. So I decided to use a multiboard system to make my system.
I used this http://www.wc3c.net/showthread.php?t=108150
Now the problem is I know jass but no good in vjass specially structures.
I also don't want to learn it from beginning.
So basiccaly in my system, there is an array of multiboards.
I used this
But when i do the samething in vjass multiboard system, It shows me error.
I tried doing something like this
The error is "title is not a member of Board__ItemHelper"
I had a made a multiboard interface system before. But I later noticed that the multiboard were leaking. So I decided to use a multiboard system to make my system.
I used this http://www.wc3c.net/showthread.php?t=108150
Now the problem is I know jass but no good in vjass specially structures.
I also don't want to learn it from beginning.
So basiccaly in my system, there is an array of multiboards.
I used this
JASS:
local integer n = 0
loop
exitwhen (n>=udg_totalplayers)
call CreateMultiboardBJ( 21, 4, "Test" )
set udg_multiboard[n] = GetLastCreatedMultiboard()
set n = n + 1
endloop
But when i do the samething in vjass multiboard system, It shows me error.
I tried doing something like this
JASS:
function Trig_tests_Actions takes nothing returns nothing
local Board multiplayer[0] = Board.create()
set multiplayer[0].title = "string"
endfunction
The error is "title is not a member of Board__ItemHelper"