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 ViewsHey I think that's the most Basic Moving script :P But Ok I'll try to search somewhere else. Thanks anyway
I think I posted the wrong After link. Here's another one
http://img240.exs.cx/my.php?loc=img240&image=before0my.swf
as you can see it sort of helps with moving right but not on moving left ...
:(
At 2/9/05 05:18 AM, Benny_Creations wrote:paceSpeed = 10;The Character MC:
onClipEvent(enterFrame){
if (Key.isDown(Key.DOWN)) {
this.gotoAndStop(1);
_y += _root.paceSpeed;
}
if (Key.isDown(Key.UP)) {
this.gotoAndStop(4);
_y -= _root.paceSpeed;
}
if (Key.isDown(Key.LEFT)) {
this.gotoAndStop(2);
_x -= _root.paceSpeed;
} else {
this.gotoAndStop(1);
}
}
if (Key.isDown(Key.RIGHT)) {
this.gotoAndStop("3");
_x += _root.paceSpeed;
} else {
this.gotoAndStop(1);
}
}
Try that :)
Nope Still doesn't work :(
Before
http://img240.exs.cx/my.php?loc=img240&image=before3qe.swf
after
http://img240.exs.cx/my.php?loc=img240&image=after8cy.swf
:( And it gets even worse when I aplye the rest of my code (like borders which I haven't added on the link)
:'(
Oops... Wrong link... that was the Baner LMAO :D
http://downloads-zdnet.com.com/Speakonia/3000-7239_2-10125329.html
http://view.atdmt.com/AVE/ivie.../direct;wi.728;hi.90/01?click=
The link to download speakonia which the clock crew uses
Ok here's my code
frame one:
paceSpeed = 10;
The Character MC:
onClipEvent(enterFrame){
if (Key.isDown(Key.DOWN)) {
this.gotoAndStop("1");
_y += _root.paceSpeed;
}
if (Key.isDown(Key.UP)) {
this.gotoAndStop("4");
_y -= _root.paceSpeed;
}
if (Key.isDown(Key.LEFT)) {
this.gotoAndStop("2");
_x -= _root.paceSpeed;
}
if (Key.isDown(Key.RIGHT)) {
this.gotoAndStop("3");
_x += _root.paceSpeed;
}
if (!Key.isDown(Key.LEFT)) {
this.gotoAndStop("1");
_x -= _root.paceSpeed;
}
if (!Key.isDown(Key.RIGHT)) {
this.gotoAndStop("1");
_x += _root.paceSpeed;
}
}
Where Frame..
1 - Front
2- Left with walking cycle
3 - Right wirh walking Cycle
4- Back
I need it so that every time the person RELEASES the Left and Right Keyboard keys the frame goes to1, But Unfortunately Unless you remove
if (!Key.isDown(Key.LEFT)) {
this.gotoAndStop("1");
_x -= _root.paceSpeed;
}
if (!Key.isDown(Key.RIGHT)) {
this.gotoAndStop("1");
_x += _root.paceSpeed;
}
the script doesn't work :(
PLZ Help :(
Meh....Here's a tutorial by me :) A 15 Part one :D Link's on my Sig
At 2/5/05 04:12 AM, GAMECUBICLE wrote: I will submit Ultimate Tutorial 2 in a week. Over 300 subjects, check that out when its done if you want to learn stuff
Cool :) Can you give me some exaples of its subjects? will there be tutorials on drawing (except shading)? :)
Can you attach the arm to the body? :P Otherwise it looks cool :)
Hey don't make them into layers :P just movie clips :P that's what I always do. If I ever need a more complex scene, I edit the frames fbf and never get more than 2 layers. Meh... it's your chice :D
At 2/3/05 01:23 AM, Dralnur wrote: As soon as you run the program, PRESS F1!!!
Seriously F1 HELPS! I learned a lot of stuff from that section! there are alot of NG tutorials here that make people say "OOOO I never knew this was posible!" when they have never looked the help section of flash! seriously dude spend about 3 hours on it you'll see how easy flash is and how you don't need other tutorials to do anything :)
YAY! XD
But I'm still fresh out of Ideas an in need of an action scripter :( Are you still availabe ioi8? Or any other scripter (both AS and game scripter) :P
It's a valentines day flash :P Sorry, but I won't be on-line tonight. I'll talk to you tomorow night k?
sure :P
lucky_design2004@yahoo.com
well you shoot out angels. there's a random flying effect making angels poping out from left to right, nut reandomly and not just sraight from 0 to 400 but kind of shaking like they're actually flying. I think that would be the hardest part :P basicly that would be it... I think :D
Ok I need an action scripter in a game I'm making. The graphics are almost done. What I need is someone, who can make a First player shooter engine, a random movement engine which has to appear as a flying effect. I think there may be more stuff, but I also need the scripter to have Ideas of what the game is missing and how it could be better. You will be the co-author of the game ofcource :) I do graphics and you do te AS :) So if anyone is serous about helping me with my game please reply to this message :D
Well you get customer support when you do.. but I never registered :) . You decide :D
At 1/31/05 02:49 AM, borkoyz wrote: and that is??
and that is.. in normal mode you can't learn ANY actionscript...you need to learn AS not just get the functions becuase I'd say normal mode is very limited. Just learn some actionscript and expert mode will seem like a peace of cake :D
Thre isn't a normal mode in 2004 :D Learn actionscript XD
At 1/30/05 08:11 AM, Skribble_Style wrote:At 1/30/05 05:21 AM, Lucky_design wrote: hey one question. what code can be used to detect if no key is pressed. Like if you're pressing left on your keyboard to move a character and sudenly you release it. Thanks :)if(!Key.isDown(Key.LEFT)){
//do something
}
if you have an exlaimation mark before a condition, it means; if the condition ISNT happening.
well it isn't working :(
frame one ia the front view, frame 2 is left, 3 s right view and 4 is back. But THe code makes the hero keep oving left :( what did I type in wring?
onClipEvent (load) {
speed=10;
}
onClipEvent (enterFrame) {
if (key.isDown(key.RIGHT)) {
this.gotoAndStop(3);
_x+=speed;
} else if (key.isDown(key.LEFT)) {
this.gotoAndStop(2);
_x-=speed;
}
if (key.isDown(key.UP)) {
this.gotoAndStop(4);
_y-=speed;
} else if (key.isDown(key.DOWN)) {
this.gotoAndStop(1);
_y+=speed;
}
else if (!key.isDown(key.RIGHT)) {
this.gotoAndStop(2);
_x-=speed;
}
else if (!key.isDown(key.LEFT)) {
this.gotoAndStop(2);
_x-=speed;
}
}
also on this type of object how can I set a hit test to stop the mc? I tried to set the speed to zero on the hit test, but it didn't work :( Can you tell me what's wrong on themovement code and tell me how can I fix the HitTest code? Thanks :)
hey one question. what code can be used to detect if no key is pressed. Like if you're pressing left on your keyboard to move a character and sudenly you release it. Thanks :)
This topic is geting funnier each time I read the posts :D
Just ask the damn Flash question if you have one filipino or no filipino XD
At 1/29/05 01:14 AM, Reddz wrote: Im doing a flash website myself, im doing it all wrong i believe, im just gonna put the .swf file on the main page and make a website out of flash like that.
Yeah that's what I did :D you can see at www.lucky.codingsector.com Flash is the best way to go for web-sites :D Especially if it's to show off your flash work :D
At 1/28/05 06:18 PM, ioi8 wrote: Hi everyone, calling all artists.
If your a very talented artist, and cannot make a game, please contact me. I am a very good aser, and have a few ideas to win this competition.
Hey can you go on-line on AIM or tell me your MSN?
At 1/28/05 08:16 AM, thebigcheese100 wrote: so how can i make it better
Yes you could.. add a background, make better graphics (not sticks) and I'll give this a 3 or 4 out of five :D Mainly cause I like the audio :D
It is kind of funny :P but it's a stick fight... it might pass.. but I'm not sure XD
At 1/28/05 04:14 AM, Overflow wrote: ..., What's with andy, Superpig and as told by Ginger. I really hate those cartoons.
Hey I want to the Balkans for a week and I saw What's with Andy. I think It's a great show :D But still I'll think about it :P Working on the simpsons now :D
Wow! So many opinions. Ok so I'll start on spungebob now because monst of the people here hate him, but don't worry because you waon't see his guts and stuff... then I'll start on the simpsons :)
go to flashkit.com and get the music. you can check out my tutorial. It has a section about importing, streaming, playing and stoping music
Hey, I'm maging a game and I need to know which cartoon would you enjoy shooting? It can be from whatever tvshow you want. Also who do you think would be funny to shoot? I'll be off-line for the next 1-2 hours but please tell me which cartoon character would you enjoy shooting