You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'rishabh005'

We found 204 matches.


<< < > >>

Viewing 1-30 of 204 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7

1.

None

Topic: Spawning enemies

Posted: 08/15/09 10:32 AM

Forum: Flash

if you are using As2
You can make a single enemy movieclip and give variables and function, then make a Spawning function in the main timeline with duplicateMovieclip() and call that function, whenever you want to,


2.

None

Topic: Need a programmer/slave!

Posted: 06/30/09 12:56 AM

Forum: Flash

sent you a Private Message, go check..


3.

None

Topic: How to Make a Moving background ??

Posted: 06/10/09 01:15 AM

Forum: Flash

you graphics are not too intense.so better go use a VCAM(Virtual Camera), It's a Movieclip which acts like a camera, wherever it goes, the stage goes :D Download it here And on it's enter frame write that it follows the player.

if it dose'nt work for you, checkout this tutorial..

LINKIE !

Good luck


4.

None

Topic: Looking for a coder

Posted: 06/08/09 12:10 AM

Forum: Flash

I mailed you...


5.

None

Topic: Duplicated MCs hittest..

Posted: 06/07/09 09:07 AM

Forum: Flash

thank You guys !


6.

None

Topic: Duplicated MCs hittest..

Posted: 06/07/09 08:28 AM

Forum: Flash

i don't have an array of newly generated enemies that's why I asked how to make an array of them.... Please help...


7.

None

Topic: Duplicated MCs hittest..

Posted: 06/07/09 03:53 AM

Forum: Flash

Hi,

I am duplicating an enemy movieclip. with this code.

_root.i++
duplicateMovieClip(_root.enemy,"enemy"+_
root.i,_root.i);

and i am duplicating a bullet by the same pattern.
what should I do to make the Duplicated bullet to hit the duplicated enemy ?
I know it can be done by using arrays, but I dunno how. Please help

Thanks..


8.

None

Topic: What is it ?

Posted: 06/04/09 06:13 AM

Forum: General

I finally found it... With it's sequel too.. Thank You guys..

The Rise Of a knight
The Rise Of a King

You too Enjoy them, They are awesome :P


9.

None

Topic: Free fla's and flash engines thread

Posted: 06/04/09 06:09 AM

Forum: Flash

Hmmmm nice idea. but there are'nt so much FLA's and engines etc. to fill this thread :P


10.

Elated

Topic: How can I do textured animations?

Posted: 06/04/09 03:46 AM

Forum: Flash

You can fill bitmap colors. I mean Import the texture in your library and fill the place with some simple colour where you want the texture. select the fill and then in the colours properties. Where you can find linear radial gradients. etc. Click on bitmap and select the texture, That might be what you wanted :P Good luck


11.

None

Topic: What is it ?

Posted: 06/03/09 09:13 AM

Forum: General

No,
It's a side scroller platformer.. Where you start from a castle as I told.. You then given a mission by King and you just Roam in forests discover villaes, caves , Blaw Blaw..

Please tell me which game is it.. I am getting crazy to play it..


12.

None

Topic: What is it ?

Posted: 06/03/09 08:51 AM

Forum: General

Thanks ! but I did'nt got what I was looking.. Reposting,


13.

Beaten

Topic: What is it ?

Posted: 06/03/09 05:45 AM

Forum: General

hi guys, Can anyone tell me which game is this ? Where you start as a Swordsman in a castle . You can buy weapons and armor in that castle take missions and sleep in the bed to save. you can get out of that castle and fight with ORCs etc. which game is it ? please tell me... thanks


14.

None

Topic: looking for a programmer for game.

Posted: 05/31/09 08:56 AM

Forum: Flash

Awesome then, if you are still lookin' cause your artwork is not so good but Keep practicing... :D I've got another artist for my next game.... Good luck


15.

None

Topic: looking for a programmer for game.

Posted: 05/30/09 02:01 AM

Forum: Flash

Yeah Iiked the game style, but how about having a soldier instead of a snake else it would be awkrd.


16.

None

Topic: looking for a programmer for game.

Posted: 05/30/09 12:01 AM

Forum: Flash

I am interested, Give some more game info and your art samples.


17.

None

Topic: Idea

Posted: 05/26/09 12:16 AM

Forum: Flash

Thank U


18.

Shouting

Topic: Idea

Posted: 05/26/09 12:06 AM

Forum: Flash

HI,
I need some ideas for my next game, I can't think one.. Please tell me a good game idea.. It should be Platformer and violent ok ?

PM me and I will put you in the credits menu


19.

Questioning

Topic: Seeking programmer for flash game.

Posted: 05/22/09 08:14 AM

Forum: Flash

ok, How much % of the total money coder gets ?


20.

None

Topic: Help me with my code please!!!

Posted: 04/12/09 06:07 AM

Forum: Flash

Awe man.. GOODNESS

You asked here how to draw
http://www.newgrounds.com/bbs/topic/9890 73

You asked here how to move..
http://www.newgrounds.com/bbs/topic/1026 108

You asked here Unloackable levels etc.
http://www.newgrounds.com/bbs/topic/1031 394

And now you asked HERE
That how he's not moving !!!!

Woa you cannot learn like this... I am sorry but Flash Game Development dos'nt work like this.. Got get a book or two and learn some basics.. Read tutorials online..
Check this page
http://www.newgrounds.com/collection/fla shtutorials.html

learn everything from there.. search google for more.. develop something yourself.. if it'll not work then post in forums..

W00t.... Good luck .. If you need any help.. PM me..


21.

Questioning

Topic: Help me with my code please!!!

Posted: 04/12/09 05:44 AM

Forum: Flash

The way you are coding is the simplest one... this is very basic... You can't get any lesser than this..


22.

None

Topic: Help me with my code please!!!

Posted: 04/12/09 05:43 AM

Forum: Flash

Hmmm, Looks like you are very new to Flash..
Observing your code I can easily say that you are trying to code without any hardwork.. I mean you just copied this code from somewhere... Am I right ?? OK

According to the you wrote.. You are trying to move the Character left right with animations.
The code seems correct but..

But.. for the movement you must've a Movieclip with instance bg behind character to make it move..
And for the movement you are decreasing and increasing bg's _x by the variable 'speed' for which you have'nt given a value..

Use this code.. instead of the old one and tell me..

onClipEvent(load){
speed = the Number (eg:8)
}

so the whole code will be

onClipEvent(load){
speed = 8
}
onClipEvent (enterFrame) {
if(key.isDown(key.RIGHT)){
_root.bg._x -= speed;
this.gotoAndStop(2);
}
else if(key.isDown(key.LEFT)){
_root.bg._x += speed;
this.gotoAndStop(3);
}
else
this.gotoAndStop(1);
}

Tell me if it'll work then I will tell you about attacking etc.


23.

None

Topic: Programmer needs violent artist..

Posted: 04/04/09 11:44 AM

Forum: Flash

--[[ Got an Artist ]] --


24.

None

Topic: Programmer needs violent artist..

Posted: 04/04/09 12:07 AM

Forum: Flash

I need a all in one package .. Anyways sent you both PM.. checkout


25.

None

Topic: Programmer needs violent artist..

Posted: 04/03/09 08:41 AM

Forum: Flash

still no one wanna work ?


26.

None

Topic: Programmer needs violent artist..

Posted: 04/03/09 01:13 AM

Forum: Flash

@Dawn of the Dusk

He just sent me some zombie samples and i said they were OK and from then no replies.. I tried recontacting him.. but no answer ! so I need a artist who is good at it and attentive ! :D will you d the job ?


27.

None

Topic: Programmer needs violent artist..

Posted: 04/02/09 11:24 PM

Forum: Flash

Anyone wanna work ?


28.

None

Topic: Programmer needs violent artist..

Posted: 04/02/09 12:18 PM

Forum: Flash

Bump..


29.

None

Topic: Programmer needs violent artist..

Posted: 03/30/09 10:40 PM

Forum: Flash

OK guys, PM me your best :P


30.

Shouting

Topic: Programmer needs violent artist..

Posted: 03/30/09 01:10 PM

Forum: Flash

..BUMP...


All times are Eastern Standard Time (GMT -5) | Current Time: 09:00 AM

<< < > >>

Viewing 1-30 of 204 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7