Details
Download
Documentation
The Win64 portability issue mentioned by szo has not yet been fixed.
Actually, I noticed what you were trying to do. This is the right way:sniperz227 wrote:it worked like it doesnt crash anymore but the code doesnt work
Code: Select all
while (self.shots_fired >= 3) {
...
self.shots_fired = self.shots_fired -3;
}
That should be ==, not =. = is assignment, == is comparison.sniperz227 wrote:Code: Select all
while (self.shots_fired = self.shots_fired -3)