It's called inkman. It's very good. We have a toipc about it somewhere.
Brad, How did you start learning actionscipt.?
(59 posts) (9 voices)-
Posted 3 years ago #
-
trying to find it...
[Edit]
omg i hav been going through so many pages...*annoyed*[Edit]
Woot!!! found demo http://andrewanimation.biz/old_games/flash/inkmanbeta/inkman8a.html0.0 wow its good!!!
Posted 3 years ago # -
no i dont know... its not on ma screen(i think)!!!
Posted 3 years ago # -
Woot!!! found demo http://andrewanimation.biz/old_games/flash/inkmanbeta/inkman8a.html
0.0 wow its good!!!Thanks. I should really get back to working on it. Maybe sometime next weekend...
Just got back on the internet after losing my access for a week. Read more on Random Discussion.Posted 3 years ago # -
Lol it kinnda look like a deformed alien =), u should make the moving blocks slower to make it easier for the player.
btw what is the jump code u used? the one i am using is really glitchy and can jump through platforms...and sometimes fall through the ground ;(Posted 3 years ago # -
Yeah, there's a lot of stuff in there that makes it too hard.
Let's see...what is my jump code...
if (hit_ground()) {
if (keys.check( 38 )) {
yspeed = -thrust;
}
}And hit_ground is basically a function that does a hitTest against the ground to see if there is a collision.
Just got back on the internet after losing my access for a week. Read more on Random Discussion.Posted 3 years ago # -
what is the code for the function? :0 (really stupid question, but plz answer anyway)
Posted 3 years ago # -
Exact code:
private function hit_ground():Boolean {
if (lev.plat.hitTestPoint(char.x, char.y, true))
{ return true; } else { return false; }
}Keep in mind it's AS3, so a few things might be different, but that's the general idea.
Just got back on the internet after losing my access for a week. Read more on Random Discussion.Posted 3 years ago # -
k ty
Posted 3 years ago # -
lol, yea. I think they simplified the language a little... not sure but im still using AS2, is AS3 better?
Posted 3 years ago # -
AS3 is a lot more organized. It's a bit harder to learn and get used to than AS2, but the AS2 tutorials on the internet are starting to dry up, and AS2 is becoming a thing of the past. I would recommend learning AS3 if you are new to Flash, but it's up to you. FPA is still in AS2, so it's not like there are limits.
Just got back on the internet after losing my access for a week. Read more on Random Discussion.Posted 3 years ago # -
They did change it a bit too drastically in my opinion. There should have been some more middle ground, instead of changing the entire structure at once.
Just got back on the internet after losing my access for a week. Read more on Random Discussion.Posted 3 years ago # -
i will try to get flash cs4... but in the mean time im stuck with flash 8 pro =(
Posted 3 years ago # -
when i said im stuck with flash 8 in the previous post, i meant like i hav to use it not like i dont know how to use it...
@orange
yea i hav following some tutorial =)...(i know this is kindda sad)
im trying hard to make one right now without tutorial.Posted 3 years ago # -
i know what you mean. i don't know flash (and am not planing to learn it anytime soon (but that would fun)) but i follow tutorials about other programing languages. they never really help me that much. i took a programing class in school last year and would learn more in a day then i would in a month with tutorials.
Posted 3 years ago #
Reply »
You must log in to post.