Chaosy
Tutorial Reviewer
- Joined
- Jun 9, 2011
- Messages
- 13,219
Just to put it simple, the first message will be displayed but the second one ("after store") will never appear which is really odd since all of those functions should be called.
JASS:
call BJDebugMsg("pre store")
call SaveInteger(patrolHash, i, 0, locationCount)
call SaveReal(patrolHash, i, 1, x[1])
call SaveReal(patrolHash, i, 3, x[2])
call SaveReal(patrolHash, i, 5, x[3])
call SaveReal(patrolHash, i, 7, x[4])
call SaveReal(patrolHash, i, 2, y[1])
call SaveReal(patrolHash, i, 4, y[2])
call SaveReal(patrolHash, i, 6, y[3])
call SaveReal(patrolHash, i, 8, y[4])
call BJDebugMsg("after store")