The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.34 / 5.00 31,296 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 10,082 Viewswhat code do i use so a certain variable has limits. like sleep cant go over 100 or money cant go below 0. thanks
Check out the flaming atom forums! A growing community of youtubers, with interesting discussions and a minecraft server. http://forum.flamingatom.com/index/
"Whoever said 'winners never quit' obviously never considered addicts." - Hoeloe
Check out the flaming atom forums! A growing community of youtubers, with interesting discussions and a minecraft server. http://forum.flamingatom.com/index/
Try figuring out what it does instead of mindlessly copy and pasting.
"Whoever said 'winners never quit' obviously never considered addicts." - Hoeloe
At 10/4/08 03:16 PM, C-Doodlez-Man wrote: didnt work. i put that in the timeline, right?
"If" statements have to be within an onClipEvent handler, or a basic function handler. so something like this for a frame:
onLoad = function () {
money = 0;
};
onEnterFrame = function () {
if (money<=0) {
money = 0;
}
};