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

[JASS] I really need some explanation

Status
Not open for further replies.
Level 16
Joined
Mar 3, 2006
Messages
1,564
Why does this

JASS:
function create takes nothing returns nothing
    local unit temp_u
    local integer i = 0
    local integer j = 0
    loop
        exitwhen i >= 5
        loop
            exitwhen j >= 5
            call BJDebugMsg( "(" + I2S(i) + "," + I2S(j) + ")" )
            set j = j + 1
        endloop
        set i = i + 1
    endloop
endfunction
print:
(0,0)
(0,1)
(0,2)
(0,3)
(0,4)

Also hashtables is returning null in the map containing the above code.

This is the link to the thread that contains the totally bugged map


<<< EDIT >>>

1st problem solved but the second in the Hidden tags is not solved.
 
Status
Not open for further replies.
Top