Advertisement
michalmonday

output

Dec 13th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. bare var stands for myX
  2. outside_called var stands for objectArray[i].myX
  3.  
  4. if it matters the actual variables checked were:
  5. &id
  6. &playerElement[elementID].id
  7.  
  8.  
  9.  
  10.  
  11. OUTPUT:
  12.  
  13. BARE VAR address=5ED302E4
  14. OUTSIDE_CALLED VAR i=0 address=5ED302E4
  15. difference in decimal=0 //it would explain why only the first variable is saved properly
  16.  
  17.  
  18. BARE VAR address=5ED30309
  19. OUTSIDE_CALLED VAR i=1 address=5ED3030C
  20. difference in decimal=3
  21.  
  22.  
  23. BARE VAR address=5ED3032E
  24. OUTSIDE_CALLED VAR i=2 address=5ED30334
  25. difference in decimal=6
  26.  
  27.  
  28. BARE VAR address=5ED30353
  29. OUTSIDE_CALLED VAR i=3 address=5ED3035C
  30. difference in decimal=9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement