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: 'This-Is-Freedom'

We found 141 matches.


<< < > >>

Viewing 31-60 of 141 matches. 1 | 2 | 3 | 4 | 5

31.

None

Topic: Man performs one-finger press-ups..

Posted: 10/21/09 03:20 PM

Forum: General

At 10/21/09 03:07 PM, UnreaK745 wrote: Imagine the pleasure he would be giving to a girl with that mighty finger...

Man i think it would rip the whole fucking vagina in half with that power


32.

Questioning

Topic: Name a Hegehog

Posted: 10/21/09 03:17 PM

Forum: General

Call it Turtle just to fuck with its mind


33.

None

Topic: Dat Ass .com ??

Posted: 07/17/09 04:57 PM

Forum: General

Indeed.


34.

None

Topic: Dat Ass .com ??

Posted: 07/17/09 04:42 PM

Forum: General

Is Dis Real !?

Dat Ass .com ??


35.

None

Topic: Sun or rain?

Posted: 06/19/09 06:47 PM

Forum: General

Flooding gives me an erection ;)


36.

Questioning

Topic: Basic AS2 sidescroller tutorial

Posted: 05/02/09 03:54 PM

Forum: Programming

Hey ive looked around some sites looking for tutorials on how to make an art based as2 sidescroller game im just trying to find the basics like movement jumping collision detection

so anybody know any working and helpful tutorials to get me started?


37.

None

Topic: Ninjas Vs Vikings Vs Pirates

Posted: 04/22/09 03:31 PM

Forum: General

At 4/22/09 03:27 PM, AllReligiousDrunk wrote: ..

No one cares. Besides, only pirates are still around, therefore they would win by walkover.

Ninjas are still around just you cant see them :D

hahaha

+ i think penguins would win overall

Ninjas Vs Vikings Vs Pirates


38.

None

Topic: Lee Carvallo's putting challenge.

Posted: 03/21/09 10:20 PM

Forum: Video Games

You have selected a 3 wood, may I suggest a putter?


39.

None

Topic: AS shooting help

Posted: 01/13/09 01:48 PM

Forum: Flash

can anyone fix the script then?

it will help me loads


40.

None

Topic: AS shooting help

Posted: 01/13/09 02:13 AM

Forum: Flash

yeah that makes sence but i havent a clue how to do that


41.

Crying

Topic: AS shooting help

Posted: 01/12/09 06:10 PM

Forum: Flash

ok ive done most of the code for shooting but it seems that if i double tap the fire button the bullet fires but when i tap the fire again the last bullet i fired disappears while it is still traveling

code on ship:

onClipEvent (load) {
// only done once, therefore we'll put variables here so it won't update
thrust = 1;
decay = .97;
maxSpeed = 15;
spaceDown = true;
xSpeed = 0;
ySpeed = 0;
i = 0;
}
onClipEvent (enterFrame) {
// rotate right or left
if (Key.isDown(Key.RIGHT)) {
_rotation += 10;
}
if (Key.isDown(Key.LEFT)) {
_rotation -= 10;
}
// Shoot
if (Key.isDown(Key.SPACE) && spaceDown == false) {
b = _root.bulletz.duplicateMovieClip(["bulle tz"+i], _root.getNextHighestDepth());
b._x = _x;
b._y = _y;
b.xSpeed = 20*Math.sin(_rotation*(Math.PI/180));
b.ySpeed = 20*Math.cos(_rotation*(Math.PI/180));
b._rotation = _rotation;
i++;
spaceDown = true;
}
if (!Key.isDown(Key.SPACE)) {
spaceDown = false;
}
//
//
if (Key.isDown(Key.UP)) {
// calculate speed and way to move based on rotation
xSpeed += thrust*Math.sin(_rotation*(Math.PI/180))
;
ySpeed += thrust*Math.cos(_rotation*(Math.PI/180))
;
} else {
// indicates when the UP key is released
xSpeed *= decay;
ySpeed *= decay;
}
// maintain speed limit
speed = Math.sqrt((xSpeed*xSpeed)+(ySpeed*ySpeed ))
;
if (speed>maxSpeed) {
xSpeed *= maxSpeed/speed;
ySpeed *= maxSpeed/speed;
}
// move ship based on calculations above
_y -= ySpeed;
_x += xSpeed;
// moves the ship to other side when off-field
if (_y<0) {
_y = 399;
}
if (_y>399) {
_y = 0;
}
if (_x<0) {
_x = 549;
}
if (_x>549) {
_x = 0;
}
}

code on bullet:

onClipEvent(load){
spd=25; //bullet speed
_x=_root.gun._x; //Move to gun _x
_y=_root.gun._y; //Move to gun _y
_rotation= _root.gun._rotation; //Point in same direction as gun
}
onClipEvent(enterFrame){
if(_name == "bullet"){
_x = -1000; //Move the original bullet MC offstage
}else{
//Run this movement code on all dupes
if (_rotation>180) {
_y += (spd*Math.cos( Math.PI/180*_rotation));
_x -= (spd*Math.sin( Math.PI/180*_rotation));
} else {
_y -= (spd*Math.cos (Math.PI/180*_rotation));
_x += (spd*Math.sin( Math.PI/180*_rotation));
}
//if(hitTest(_root.enemy)){ blahh; } Not going to address this here, check AS: Main for hitTest threads.
}
if(_x>Stage.width || _x<0 || _y<0 || _y>Stage.height){
//If off-stage, delete the dupe to save CPU
this.removeMovieClip();
}

}

example :

http://spamtheweb.com/ul/upload/120109/7 1360_Untitled-1.php


42.

None

Topic: Game help

Posted: 01/12/09 04:35 PM

Forum: Flash

but still i need help :(


43.

None

Topic: Game help

Posted: 01/12/09 04:24 PM

Forum: Flash

Touche :3


44.

None

Topic: Game help

Posted: 01/12/09 03:00 PM

Forum: Flash

>:C

i agree abit but i have made a fex little games what i have never released because they was just practice and i just used AS main to get everything

so i thought i should really up my progress and actually make a releasable game


45.

None

Topic: Game help

Posted: 01/12/09 02:52 PM

Forum: Flash

anyway for more help ill show u what ive got

i have this so far:

http://spamtheweb.com/ul/upload/120109/7 1360_Untitled-1.php

and things i need is:

- fix shooting
- boundries with camera following ship
- enemys
- power ups

and thats my list right now but i havent got a clue how to do any of them


46.

None

Topic: Game help

Posted: 01/12/09 02:46 PM

Forum: Flash

yeah a complicated language and this is like the first time i have dabbled with it in games soo i need quite alot of help lol

thanks ill go looking for that


47.

None

Topic: Game help

Posted: 01/12/09 02:29 PM

Forum: Flash

Thanks!

but i need a shooting one so i can use buttons to shoot


48.

Crying

Topic: Game help

Posted: 01/12/09 12:59 PM

Forum: Flash

well im making a flash with similar movement to geometry wars but i looked at AS main and it doesnt tell me how to shoot so can anyone help me with making my ship shoot?

and anyone know anything about making enemys either?

by the way im using AS2


49.

None

Topic: Game shooting help

Posted: 01/11/09 08:33 AM

Forum: Flash

hello?


50.

None

Topic: Game shooting help

Posted: 01/11/09 04:48 AM

Forum: Flash

anyone help?


51.

None

Topic: Game shooting help

Posted: 01/10/09 04:28 PM

Forum: Flash

As2 and no you use the arrows to move and keys to shoot


52.

Angry

Topic: Game shooting help

Posted: 01/10/09 03:17 PM

Forum: Flash

ok well im doing a overhead geometry wars type game and i need help with finding the script or tutorial on how to make it shoot

anyone help?


53.

None

Topic: A Christmas-y Videogame Thread!

Posted: 12/20/08 02:35 PM

Forum: Video Games

Cool ! ill have to have a look at them :D

thanks


54.

None

Topic: The Pretender Collab (Revamped)

Posted: 12/04/08 02:36 AM

Forum: Flash

Note Taken


55.

None

Topic: The Pretender Collab (Revamped)

Posted: 12/03/08 06:00 PM

Forum: Flash

yeah i noticed that :D

but im not sure how to make it more noticeable because nearly every single thing in it is Frame by Frame

anyways anymore judgements?


56.

None

Topic: The Pretender Collab (Revamped)

Posted: 12/03/08 03:48 PM

Forum: Flash

Im busy right now but....

i did manage to start revamping my parts

heres a preview

please tell me any things

http://spamtheweb.com/ul/upload/031208/7 4486_Pretender_Collab.php


57.

Elated

Topic: Flash Texture fills?

Posted: 12/01/08 02:45 PM

Forum: Flash

Ahhhhh Thanks

i think i no how to use it now you have told me :)


58.

Questioning

Topic: Flash Texture fills?

Posted: 12/01/08 02:21 PM

Forum: Flash

hey flashers (sounded better in my head)

i have seen some people using textures in flash

but i dont even no how

can someone tell me how they do it?

*a little example of it*

Flash Texture fills?


59.

Questioning

Topic: Photoshop ! what is it good for?

Posted: 12/01/08 02:14 PM

Forum: General

Hey i just fiddled around with photoshop today

but i dont really get how to use it because i only just got it and i havent a clue what you can use it or how to use it?


60.

None

Topic: The Pretender Collab (Revamped)

Posted: 12/01/08 01:40 PM

Forum: Flash

Wow the preloader looks amazing :D

Liking all the previews

Myne is coming in soon

well abit later


All times are Eastern Standard Time (GMT -5) | Current Time: 05:46 AM

<< < > >>

Viewing 31-60 of 141 matches. 1 | 2 | 3 | 4 | 5