Newgrounds.com — Everything, By Everyone.

Checking login status…

USERNAME:

PASSWORD:

Logging in…

Logged in as:
.
Logging out…
Inbox My Account Log Out


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: 'Absolute-Requiem'

We found 3 matches.


<< < > >>

Viewing 1-3 of 3 matches.

1.

None

Topic: Multiple attack problem

Posted: 07/11/06 08:25 AM

Forum: Flash

no output pannel clear and ive been very carefull to check all instance names and lables. but it doesnt matter because i ave found a new way around the problem but thanks for thehelp all the same.


2.

None

Topic: Multiple attack problem

Posted: 07/10/06 12:53 PM

Forum: Flash

Ok making a fighting game with some mates. i want it to like punch normaly, punch in the air and punch when crouching. it works normally and on jumping but doesnt work with crouching. heres the code:

onClipEvent (load) {
speed = 5;
facing = "left";
onFloor = true;
crouch = false;
jump = false;
punch = false;
kick = false;
}
onClipEvent (enterFrame) {
// Movement and turning to face enemy //
if (crouch == false) {
if (Key.isDown(Key.LEFT)) {
if (onFloor == true) {
this.gotoAndStop("walking");
}
if (facing == "left") {
this._x -= speed;
} else {
this._x -= speed/1.5;
}
}
if (Key.isDown(Key.RIGHT)) {
if (onFloor == true) {
this.gotoAndStop("walking");
}
if (facing == "right") {
this._x += speed;
} else {
this._x += speed/1.5;
}
}
}
if (this._x>_root.CPU._x) {
facing = "left";
this._xscale = -100;
} else if (this._x<_root.CPU._x) {
facing = "right";
this._xscale = 100;
}
if (!Key.isDown(Key.LEFT) && !Key.isDown(Key.RIGHT) && onFloor == true) {
this.gotoAndStop(1);
}
// Basic attacks //
if (Key.isDown(68)) {
kick = true;
} else {
kick = false;
}
if (Key.isDown(65)) {
punch = true;
}else {
punch = false;
}
if (Key.isDown(87)) {
jump = true;
}else {
jump = false;
}
if (Key.isDown(83)) {
crouch = true;
}else {
crouch = false;
}

// act on the attacks //
if(punch == true && crouch == false && onFloor == true){
this.gotoAndStop("punch");
}
if(punch == true && crouch == true && onFloor == true && kick == false){
this.gotoAndStop("crouch punch");
}
if(punch == true && crouch == false && onFloor == false){
this.gotoAndStop("jump punch");
}
if(kick == true && crouch == false && onFloor == true){
this.gotoAndStop("kick");
}
if(kick == true && crouch == true && onFloor == true){
this.gotoAndStop("crouch kick");
}
if(kick == true && crouch == false && onFloor == false){
this.gotoAndStop("jump kick");
}
if(kick == false && crouch == true && onFloor == true){
this.gotoAndStop("crouch");
}
if(punch == false && crouch == true && onFloor == true){
this.gotoAndStop("crouch");
}
if(kick == false && crouch == false && onFloor == true && jump == true){
this.gotoAndStop("jump");
}
if(punch == false && crouch == false && onFloor == true && jump == true){
this.gotoAndStop("jump");
}
}

any ideas why its not working#? thnaks in advance


3.

None

Topic: Voice Actor Needed

Posted: 05/14/05 09:25 PM

Forum: Flash

Hey there everyone,

We are making new cartoon and have come across a problem none of us can do a good impresion of president George. W. Bush . and so i turn to you the users of newgounds to find help.

If you think your interested then please email a small audio clip of your president bush impersination to:

absolute_requiem@hotmail.co.uk

Just say in the email and we can send u the script if u think u want to help out.

if you want to see the cartoon so far to decide wether u want to help just say so in the email and we can send u part of the movie.


All times are Eastern Daylight Time (GMT -4) | Current Time: 12:07 AM

<< < > >>

Viewing 1-3 of 3 matches.