View Single Post
  #6  
Old 04-22-2011, 04:42 AM
Jiroxys7 Jiroxys7 is offline
Hazard to Graal
Jiroxys7's Avatar
Join Date: Apr 2009
Posts: 343
Jiroxys7 will become famous soon enough
I've narrowed down the issue somewhat.

If i do:
PHP Code:
echo(passedeffects.size()); 
It does echo 3 when I have 3 things coming through. This is so the for loop runs that many times of course. However, it gets weird..
When I do:
PHP Code:
echo(passedeffects[0]);
echo(
passedeffects[1]);
echo(
passedeffects[2]); 
It will return those 3 things in F2. But oddly..
PHP Code:
echo(passedeffects[i]); 
Will stop after only the first line. It seems like the for loop quits for some reason after only the first run through. What could be causing this?
__________________
MY POSTS ARE PRONE TO EDITS!
Reply With Quote