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: 'mayoarm11'

We found 992 matches.


<< < > >>

Viewing 1-30 of 992 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92134

1.

None

Topic: Opinion Needed!

Posted: 06/26/09 11:12 AM

Forum: Flash

art's good, but the coding sux =/

it's pretty obvious what needs work, i don't even know why you want our suggestions lol

he goes "into" the ground consistently, and when he's going down hill, he.. spin-jumps instead of just walks.


2.

None

Topic: Art Portal!?

Posted: 06/19/09 12:50 PM

Forum: NG News

you're going in the wrong direction.

You're turning NG into an artsy community, and not focusing on what it was started for.


3.

None

Topic: New Top-Down Shooter

Posted: 06/01/09 09:11 AM

Forum: Flash

that is freaking awesome, but that zooming in/out thing is annoying as hell.

it's just disturbing, for some reason.


4.

None

Topic: Wide Layout

Posted: 05/27/09 03:44 PM

Forum: NG News

the new layout sucks balls.


5.

None

Topic: Need Coder for a new game.

Posted: 05/22/09 07:28 AM

Forum: Flash

we wanna see art, not menus -_-


6.

None

Topic: Need Coder for a new game.

Posted: 05/22/09 06:08 AM

Forum: Flash

show your art


7.

None

Topic: forum hosting on external domain

Posted: 05/17/09 12:56 PM

Forum: Programming

i'm pretty sure it's possible to do this with 07x


8.

None

Topic: forum hosting on external domain

Posted: 05/17/09 12:50 PM

Forum: Programming

sorry for double post, but I'm using 07x.net for my website, and I don't know if this is what I should have done, but I added my forum as a 'parked domain'. This is what happened:

http://pythons.07x.net/


9.

None

Topic: forum hosting on external domain

Posted: 05/17/09 12:49 PM

Forum: Programming

hi!

I was wondering how I could host my forum on my own website, in a separate page.

I created a forum using www.setbb.com, but I don't want to use their domain. I want to host it on my own website.

I know this is possible, because I've seen it. Here's an example:
http://www.krinlabs.com/phpBB3/

Thanks in advance!


10.

None

Topic: Equipment

Posted: 05/14/09 11:38 AM

Forum: Flash

talent :D


11.

None

Topic: How do you feel about logins

Posted: 05/14/09 07:31 AM

Forum: Flash

if the 'new account' options are in-game (not linked to a website), then I'd have no problem with it. In addition, only include the mandatory stuff. If I have to fill out too much information, I'd give up.

:P


12.

None

Topic: ball physics engine

Posted: 05/13/09 02:14 PM

Forum: Flash

At 5/13/09 01:42 PM, GustTheASGuy wrote: Not possible to edit code? What? You can use Flade.

Other than that there are a couple physics engines for haXe which you can compile to AS2.

I'd prefer simpler engines, where the coding is found on objects, and not in .as files.


13.

None

Topic: Stick Game: Need programmer!

Posted: 05/12/09 01:44 PM

Forum: Flash

At 5/11/09 11:50 AM, Dugh wrote: Hi, I just got a Wacom Bamboo

what size, and how much did it cost?!


14.

None

Topic: Ape + Flade Graphics Change?

Posted: 05/12/09 09:23 AM

Forum: Flash

I'm using flade for a physics-based game. The physics engine is really awesome, but the graphics are AS-based. Meaning, they are created in run-time.

Does anyone know how I can change the graphics so they are custom-made?

If anybody knows how to do the process with APE, that'd be fine too, as the process will most likely be similar.


15.

None

Topic: platformer code. like maplestory's

Posted: 05/12/09 08:17 AM

Forum: Flash

sorry for dbl post. This is a direct copy / paste from an experimental engine I was making. It's a function that returns the rotation value of the player. p = player, g = ground

function getRot():Number {
	X = p._x;
	p1 = 0;
	while (!g.hitTest(X-size, p1, true)) {
		p1++;
		if (p1 == Stage.height+1) {
			return p.rot;
		}
	}
	p2 = 0;
	while (!g.hitTest(X+size, p2, true)) {
		p2++;
		if (p2 == Stage.height+1) {
			return p.rot;
		}
	}
	return (Math.PI-Math.atan2(size*2, p2-p1));
}

16.

None

Topic: platformer code. like maplestory's

Posted: 05/12/09 08:15 AM

Forum: Flash

im not sure this is the BEST method for calculating the rotation needed, but it's one I came up with

size = _width/2; //half of player's width. I'm assuming you centered your character movieclip, at least x-wise

p1 = 0;
while(!_root.g.hitTest(_x-size,p1,true)) //g is your ground MC. this checks for the first hit of the ground starting from the top
p1++;
p2=0;
while(!_root.g.hitTest(_x+size,p2,true))
p2++;

_rotation = 180-Math.atan2(size*2,p2-p1)*180/Math.PI ;


17.

None

Topic: Movie freezes at Frame 16001 ?

Posted: 05/11/09 11:14 AM

Forum: Flash

u can switch scenes using

gotoAndPlay(1,"scene_name");

that goes to scene_name, and plays from frame 1.

I'm assuming u know how scenes work. Also, I'm pretty sure it's that way, but if not i may have switched them around, so it might be

gotoAndPlay("scene_name",1);


18.

None

Topic: hey guys 2 questions

Posted: 05/09/09 01:28 PM

Forum: Flash

At 5/9/09 01:27 PM, Yambanshee wrote: doubtfull?

didn't get what that meant

are you saying you doubt cs4 has AS2?


19.

None

Topic: hey guys 2 questions

Posted: 05/09/09 12:39 PM

Forum: Flash

At 5/9/09 12:00 PM, wasup12 wrote:
I am pretty sure you can't in CS4. It is all on the frame.

But for tutorials go here,
http://www.newgrounds.com/collection/fla shtutorials.html

... u can use AS2 in cs4 -_-


20.

None

Topic: hey guys 2 questions

Posted: 05/09/09 11:45 AM

Forum: Flash

At 5/9/09 11:40 AM, piggy123 wrote: 1 how do i put actions on movie clips on cs4 (i have put arm_mc on a movie clip)?
Thanks Piggy123

F9


21.

None

Topic: Manage and host your own ads

Posted: 05/08/09 10:02 AM

Forum: Flash

At 5/8/09 07:22 AM, Groady wrote: It's totally free. It's just code you can put in your game which will allow a developer to switch between various compiled-time embedded ad systems such as MochiAds or GameJacket, OR alternatively load in your own custom ads (SWF or Image).

I've setup a google code project for it here : http://code.google.com/p/flash-ad-manage r/

At the time of writing I haven't uploaded the code yet but it will be coming in the next week.

by that you mean you won't get any of the %, right?

honorable :D

but what is the advantage of switching between ads, rather than sticking with only newgrounds, or only mochi, etc.


22.

None

Topic: I need an artist partner!

Posted: 05/08/09 10:01 AM

Forum: Flash

... so what will you be doing? writing?


23.

None

Topic: Manage and host your own ads

Posted: 05/08/09 03:44 AM

Forum: Flash

interesting.

though i don't really understand how the money will be split.

you get a %, we get a %, and newgrounds/mochi/kong/etc. gets a %?

how does it work exactly in terms of the percentage


24.

None

Topic: Looking for a decent coder

Posted: 05/07/09 01:38 PM

Forum: Flash

the art isn't good at all.

the only reason i can think of that people in this thread said that it was good, was simply to diss unkownFury.

you didn't even the draw the fucking face, are you serious... I can tell it's from the real shoop da whoop. Besides that image, everything is simple shapes.

So... no....


25.

None

Topic: AS3 Coder's Wanted

Posted: 05/07/09 01:35 PM

Forum: Flash

show art...


26.

None

Topic: Flash Multiplayer Online Game

Posted: 05/06/09 02:01 AM

Forum: Flash

At 5/6/09 12:44 AM, willy1234x1 wrote: You must mean can't steal a basketball. :p

smart you.

multiplayer requires a team of coders / etc. and I'm assuming that's not something your budget is up for, or your abilities.


27.

None

Topic: Flash Art:Realism + Cartoon?

Posted: 05/05/09 01:57 PM

Forum: Flash

looks awesome <3

every min or so, there's this edge thing that repeats.

looks good


28.

None

Topic: We Need Actionscript 3.0 Tutorials

Posted: 05/05/09 07:53 AM

Forum: Flash

google it, there's a ton out there


29.

None

Topic: The Newgrounds Preview Collab

Posted: 05/04/09 04:19 AM

Forum: Flash

At 5/4/09 03:31 AM, MrRandomist wrote: How is everyone going on their parts???

I've actually made progress! :D lol

I have the script, and the first of 5 images. It looks awesome, i'll show a sneak pic soon.


30.

None

Topic: There she is!!

Posted: 05/03/09 12:40 PM

Forum: Flash

1. i hated that flash, it was so overrated
2. wrong forum
3. stupid thread


All times are Eastern Daylight Time (GMT -4) | Current Time: 06:08 PM

<< < > >>

Viewing 1-30 of 992 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92134