Merry Christmas everyone
Having same issue as of yesterday
congrats I think son of musk should have won tho
At 12/2/17 03:48 PM, DoubleDenial wrote: I'm coding a game, but this code always sets "touchplayer" to 0, even though I tell it not to.
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else if (not(this.hitTest(_root.player))){
_root.touchplayer = 0;
}
}
they both have the same trigger when hittesting so it will, code it like this
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else {
_root.touchplayer = 0;
}
}
or like this
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.touchplayer = 1;
_root.player.speed = -2;
} else if (!this.hitTest(_root.player)) {
_root.touchplayer = 1;
}
}
i was very supprised to see i got invited to this as im a game designer but what the hell heres my submission
At 8/1/16 01:58 PM, PsychoGoldfish wrote: Newgrounds.io is the successor to the old Newgrounds Flash API. We've completely re-built the server API to remove all dependencies on custom ActionScript classes.
Hi just wondering I'm an as2 game designer and I have implemented medals in my games before, I've been trying to add them to a new game I'm working on but I'm getting failed to unlock medal every time?
does this new api have something to do with it?
damn 6th place gotta try harder, well done guys
looks like tom fulp sold out...
I think we should give him a chance tho he does kinda seem like an ass
Hey guys those of you on this project you've all been added in, just to let you know though im only at about 40% completion i'm about to upload what i've got already if you wish to preview the game.
At 8/14/15 10:28 PM, TheDukeofJuke wrote: Not sure of what music you would want in a rhythm game. But this one's alright I suppose. http://www.newgrounds.com/audio/listen/581399
Hi there thanks for the response but unfortunately all positions have been filled
At 8/14/15 12:54 PM, FinaLee wrote: Here's something I made a year ago on my older account that I think would fit nicely with a rhythm game.
http://www.newgrounds.com/audio/listen/571603
Another brilliant tune I'd be more than happy to add this thank you
At 8/14/15 12:43 PM, MetalRenard wrote: After Dem0lecule has given his verdict here, I'd consider offering this one up for your game:
http://www.newgrounds.com/audio/listen/638016
It has an unusual and interesting rhythm, would be good for that type of game.
I had a listen I think this would go perfectly with the game thank you so much.
You'll have to bare with me for this game though as its a long term project I'll add you in as soon as I can.
I've invited you as a beta tester
At 8/14/15 11:13 AM, dem0lecule wrote: Do you have pictures of your WIP game? What type of genre do you require for your project?
Any genre of music is accepted I just has to be awesome lol I haven't uploaded anything yet if your interested I can upload the player with a test song so you can view it?
Hi fellow newgrounders I'm a game designer and I am currently writing a rhythm game called newgrounds beatz.
I would like the songs in this game to be from newgrounds
If you have an awesome song you'd like to be in the game let me know
I'm offering 10 percent rev share but theres only 4 place left
Peace!
How rude of you plus I've played your games they ain't that great...
I've been scripting a month and I nearly got 3 stars on my game that's good enough for me, don't post in less you have something good to say simple. I didn't ask for your opinion
i'm trying to unlock a certain medal when i land on a certain frame can't seem to make the code work