
-----------------------------------
platky
Fri Feb 20, 2009 11:08 pm

Help, if you wouldnt mind
-----------------------------------
I just started Turing 2.5 weeks ago in my class and the assignments are so boring so i have been messing around. I am having a few problems which i cant seem to figure out:

1) I run out of ID numbers 
2) The box im supposed to jump on doesn't really work. If you run into the side of it, you get teleported to on top witthout jumping

The character is just a makeshift pic so just ignore it...

Thanks for the help

-----------------------------------
TheGuardian001
Sat Feb 21, 2009 12:59 am

Re: Help, if you wouldnt mind
-----------------------------------
You're getting the out of ID numbers error because you create a new picture every single time the loop executes. When creating an image, you should only ever call Pic.FileNew ONCE for each image. Moving the Pic.FileNew should fix this.

-----------------------------------
Razgriz
Wed Feb 25, 2009 6:53 am

RE:Help, if you wouldnt mind
-----------------------------------
Also, it's best to name your thread after what you need help on...

As it says in the sticky post, don't just post 'help' titles, as no one in the forum can really be sure of what the problem is, and because of such no one can really help.

-----------------------------------
Tony
Wed Feb 25, 2009 2:38 pm

Re: Help, if you wouldnt mind
-----------------------------------
you should only ever call Pic.FileNew ONCE for each image.
To be more precise, you should have Pic.Free for each Pic.FileNew used. Keep in mind that loading and freeing identical images inside the loop is redundant.
