Be a Supporter!
Response to: How to get users on my forum? Posted July 28th, 2011 in General

At 7/28/11 10:08 AM, benmitchell0036 wrote: I would be a tad reluctant to join a porn forum, basically. But try spamming the comments on porn sites with the link, I guess?

Well it's not only porn. I just felt like i had to mention that as its not just a normal video game/movies/music forum. It has other stuff too.

I made website review forum and Tech, to talk about software etc as well as pixel pot and paint pot where you can share your artworks.
It's everything a nerd needs!

How to get users on my forum? Posted July 28th, 2011 in General

Hey, i've recently made a phpbb forum, it looks pretty awesome. Its going to be for the intended audience of nerds. It has a 18+ DVD download link forum, japanese adult video download links forum etc, stuff like that. As well as video game and movies talk.
I may also add an arcade, where you can play against other forum users scores.

The only thing is, i never know how to get people to join.
Can anyone give me any advice?

Heres a pic. (no links in the pic, site also doesnt have a proper domain name yet)

How to get users on my forum?

SEX noises Posted December 22nd, 2010 in Audio

I'm working on a project similliar to the works of 'Zone-Archives'.
If your not familliar with them they are basically hentai themed interactive sex games.
Blowjob/sex etc.

So i need some, if possible japanese sounding sex noises. Blowjob slurping, moaning, etc.
I have searched the internet and not had any luck.
Strange request but does anyone know where i can get some?

Response to: Boundaries in game won't work!? Posted June 16th, 2010 in Game Development

Thats weird! But fixed.
I don't understand lol. How does it work on the first level but not this one?

Check your PMs!

Response to: Boundaries in game won't work!? Posted June 16th, 2010 in Game Development

Bump? :(
I'm really desperate for this to be fixed as i need to know whether it can be done.
If it can't there is no point me continueing this project.

If someone is experienced in actionscript and would like to work on fixing this i am willing to pay, via paypal for them to get it working.


I downloaded a game source which was a template for 1 level. You click and your character goes there a bit like the 'broken sword' games and point click adventure sort of stuff.

There are boundaries which is in a movieclip which is just paintbrushed wherever you dont want the character to go. The first level is fine and the boundaries work.

I recreate the movieclip with the same actionscript but instead changing it where it says walls, to walls2, which is the instance name of the new boundaries, i also make the changes in the actionscript.

I then play the level and when i go near the boundaries the character just gets sucked into the walls and can't move. Can anyone help?

Here is the actionscript for the boundaries:

// this is the code for the hitTest -

	onClipEvent (enterFrame) {
	with (_root.player) {
	if (wallslvl2.hitTest(getBounds(_root).xMax, _y, true)) {
			
			_x -= 4.5;
			gotoAndPlay ("standdown");
			
			_root.move = "yes";
			dir=0;
			
			}
			if (wallslvl2.hitTest(getBounds(_root).xMin, _y, true)) {
			
				_x += 4.5;
			
			_root.move = "yes";
			gotoAndplay (StandDown); 
			dir=0;
		
			}
			if (wallslvl2.hitTest(_x, getBounds(_root).yMax, true)) {
				
				_root.move = "yes";
				_y -= 4.5;
				gotoAndPlay (StandDown);
					dir=0;
				
			}
			if (wallslvl2.hitTest(_x, getBounds(_root).yMin+27, true)) {
			
			_y += 4.5;
			_root.move = "yes";
			dir=0;
			gotoAndPlay(StandDown);
			
			}
			}
	}

here is the .fla if anyone wants to take a closer look.
http://rapidshare.com/files/399684517/S5 5.fla.html

Help would be greatly appreciated!

Response to: Old actionscript fla in new flash? Posted June 14th, 2010 in Game Development

I found out how to fix it.
Ill post the solution so if anyone searches and finds this thread:

File > Publish Settings... > Flash (tab) > Change 'Player' to the highest player, ie - Flash Player 10
Response to: Old actionscript fla in new flash? Posted June 14th, 2010 in Game Development

bump.

can anyone help?

Response to: Old actionscript fla in new flash? Posted June 13th, 2010 in Game Development

At 6/13/10 07:37 PM, ProfessorFlash wrote: Save the old fla in cs4. It should tell you it's old format and ask if you want to convert it to cs4 fla. If not then there should be cs4 option at the type when you choose 'save as'.

I've tryed that and it saves as cs4 but there is still no 'filters' in a movieclip or buttons properties ;[


I have an old coded game in Macromedia Flash, im not sure which version of actionscript it is. But when i open the .fla in my 'Adobe Flash CS4' it won't let me add 'filters' to images, such as glow effects and such.

If i start a new flash though it will let me and ive also tryed copying the frames onto a new project but it doesnt recognise the actionscript and i just get a load of errors and it wont play properly.

Is there anyway to get my old actionscript game onto the new flash so i can add filters to images, and still have the actionscript work?

Response to: How to change main timeline? Posted June 13th, 2010 in Game Development

At 6/13/10 08:30 AM, McPaper wrote: Im understanding you want the buttons action to go to and stop on frame 2 of the main timeline?

Try:

root.gotoAndStop(2);

Thank you! Stupid of me to not test that in the first place.


Im making a game and this button is in a movieclip and only appears when something else has been initiated.

I want it to gotoandstop on frame 2, of the main timeline.
but i forgot how to =/
any help?

here is said code:

on (release) {
	if (_root.valori == 2) {
		_root.testo_esamina = "Perfetto la porta si Apre!";
		root.gotoAndStop("Scene 1", 2);
;
	} else {
		_root.testo_esamina = "E' un osso molto grosso";
	}
}

The 'root.gotoandstop("scene 1", 2); is the line im having problems with.
this is old actionscript.

Response to: Problem finding actionscript in fla Posted June 13th, 2010 in Game Development

At 6/12/10 10:17 PM, McPaper wrote: CTRL + F

Now i just feel stupid. Thank you so much!


I downloaded a game source from flashkit and basically i've been removing all the graphics and adding a few things here and there to make it my own.

The only problem is its really weirdly made, at the end of the level it loads 02.swf in the same folder your playing the game.

I've looked all through the .fla for the code that makes it do that but can't find it.
I want it to go to frame 2, or whatever when it finishes.
Can anyone help?
Heres the .fla:
http://rapidshare.com/files/398389672/S.
fla.html

(Testing the game: Click key, pick up, click door, click 'use item' button, then click the key in your inventory. This should then reset the game, or load .swf if you had the 2nd level in the same folder as 1.swf)

Response to: Paying audio project Posted December 4th, 2009 in Audio

I doubt anyone will be able to perfectly recreate it, its an accordian and full orchestra.

The "adapted" version would be unique, just simply inspired by the atmosphere of the original.

Paying audio project Posted December 4th, 2009 in Audio

Im studying film at university and i have a film project on the go at the moment.

There is a piece of music which is perfect for the story, but unfortunatly it is a song from another film, which means if i want to use it, id have to pay about 50 dollars per copy of the film i make, not good.

so i was wondering if anyone was interesting in listenning to the track, then recreating it themselves.
i am willing to pay. please post here if interested.

thank you!
ive uploaded the file; its an itunes file.
http://www.box.net/shared/ns9uypj919

let me know if you cant download the file.

Image designer needed Posted March 10th, 2008 in General

Hai, i read the rules and it said nothing about not to do this.

So anyway, im in need of an image designer to design some images such as backgrounds, logos for my site. Which im not going to advertise. So if your interested. Post here? Maybe display a bit of your work.

My sites theme is currently really grey, black. and its an image board.
So maybe if you like you could create some images, to show me what sort of stuff you can do.

If i like your stuff, your more than welcome to accept my invitation onto my website team :]
Thanks
-Sam

[html] Div Positioning Help? Posted March 7th, 2008 in Programming

Hi, im working on a site and wanted to position this .swf navigation bar in the bottom right part of the page.

I remember using a html code that allowed me to do it a long time ago, div or something?
Can anyone help me out?

Response to: Username change Posted February 28th, 2008 in Where is / How to?

Alright, thanks guys. I guess its not much of a big deal. Ill write it down like someone said.

Thanks for your help anyway.

Response to: Username change Posted February 28th, 2008 in Where is / How to?

At 2/28/08 04:18 PM, NEVR wrote: You could ask Wade, but to be honest, your stats are low enough that you could just make a new account and regain them in a very short period of time.

But that would mean re-uploading my stuff. And i like it how their arranged by the years i uploaded them. =/

Username change Posted February 28th, 2008 in Where is / How to?

I was wondering where i should ask, who i should ask or what i need to do to get my username changed.

The thing is i havn't used this alias for a few years now and am afraid i might forget it and forgot my username when trying to log into NG. i was wondering if it can be changed ?

NG Store question. Posted February 24th, 2008 in General

oh hi.

I bought a shirt just now from the NG store, i live in the uk and was wondering when items are shipped, and how long it will usually take to get to me?

Thanks to anyone who helps.

help with sounds in diff frames Posted February 22nd, 2008 in Game Development

OK, so i have 2 frames. one is the main menu for the game.

in that frame i want to play a small loop, like background music for the menu.
on that frame is a button which goes to frame 2, this is the first level of the game.

in this i want music. but when i do this, when i click into the game it carrys on playing the first song, as well as the new background music for the game.

please help?

Response to: Create your own law! Posted February 3rd, 2008 in General

No slow walking people in town.
Move fast or get the fuck out of the way!

Response to: Actionscript help! Button problem Posted January 25th, 2008 in Game Development

At 1/25/08 09:39 PM, Ertyguy wrote: Using more than one scene is unnecesary just use 1 it makes every thing easier

on(release){
_root.gotoAndPlay(3);
}

Thats great, thanks a lot guys!


Ok, im really confused here.

Im working on a flash. On the second frame, ive stopped it. And in a movie clip, an animation happens, and at the end, about frame 30, ive placed a button, i want it so when the movieclip has played, they can now click to go to frame 3, on the main Scene, Scene 1. so i put;

on(release){
gotoAndPlay('Scene 1', 3)
} 

But the stupid thing just goes to frame 3, inside that movieclip.
I tryed it without the scene 1 bit in the code and it still does it. How do i make it so the button will go to and play the 3rd frame in Scene 1?

Response to: Action Script | Help! Posted January 23rd, 2008 in Game Development

Thank you sir, and a happy christmas to you all.

Action Script | Help! Posted January 23rd, 2008 in Game Development

Help would be greatly appreciated.
Basically i know no AS whatsoever, i can do the stop command and thats about it.

I had all the basic script i needed saved in a word document on my old computer, but have bought a new one since then and im right back to square one. So i was wondering if some people could help me out and answer some of my questions? giving me the right actionscript. Once i've gotten them i can simply save them, and not need to keep asking for them again. Thanks!

On click, go to and play?
Ok, simple one. I need the AS for when a button is clicked, it will go to a frame, or a scee.

Cursos change?
The AS that takes an image and changes it to the cursos.

And thats about it really. So them two Actionscripts would be great, thank you!

Response to: Flash.swf on PSP? Posted January 22nd, 2008 in Game Development

Thanks thats great. You've all pointed me in the right way, thanks again :)

Flash.swf on PSP? Posted January 22nd, 2008 in Game Development

OKOK. So i bought a psp the other day, and i thought

'Hey how cool would it be if i could make, or download a flash game and play it on my psp'

So here i am, continueing my search to the answer to my question.
Does anyone know if its possible to put a .swf file onto your psp, and it will play?

Also, if you make a game specifically for your psp, do you need certain stage sizes? as its widescreen.

GO.