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

We found 949 matches.


<< < > >>

Viewing 1-30 of 949 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92032

1.

None

Topic: Stick Showdown Collab #3

Posted: 08/09/08 01:22 AM

Forum: Flash

Hello? Am I fuckin invisible? Whatever, you just lost an actual GOOD stick animator, that animates SMOOTH, and doesnt do 50 second work.


2.

None

Topic: Stick Showdown Collab #3

Posted: 08/08/08 10:24 PM

Forum: Flash

Hey, Farfen. Can I be in? I'll make an example :)


3.

None

Topic: Stick Showdown Collab #3

Posted: 08/08/08 02:24 AM

Forum: Flash

Hope there's spots left, if there is, I'll definitely join.


4.

None

Topic: Cheat2Win Guide!

Posted: 08/07/08 01:55 AM

Forum: Where is / How to?

At 8/7/08 01:47 AM, stikkilla wrote: What the fuck is the start button? What the fuck are mouse keys?? SPEAK ENGLISH! MAKE SENSE!

START BUTTON- WINDOWS KEY..


5.

None

Topic: Cheat2Win Guide!

Posted: 08/07/08 01:47 AM

Forum: Where is / How to?

What the fuck is the start button? What the fuck are mouse keys?? SPEAK ENGLISH! MAKE SENSE!


6.

None

Topic: Swap Diretions

Posted: 02/21/08 07:22 PM

Forum: Flash

What?

If you wanna make him move with the arrow keys try this:

onClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
this._x+=whatever;
this._xscale = 100
}
if(Key.isDown(Key.LEFT)){
this._x-=whatever;
this._xscale - 100;
}
}


7.

None

Topic: Your ideal way to die

Posted: 02/21/08 06:07 PM

Forum: General

Decapacitated (I think that's how you spell it..)

or

Shot in the Head...by a chicken.. No just Kidding, I would trip and fall on to an oncoming train^^


8.

None

Topic: If you were a hostage

Posted: 02/21/08 06:03 PM

Forum: General

F) Get the fuck outta there!


9.

Elated

Topic: Suicide.

Posted: 02/21/08 05:57 PM

Forum: General

At 2/21/08 05:04 AM, HeavyMetalHarry wrote: Do it you pussy.

Dude, shut the fuck up.

Listen, I've had thoughts about suicide. I've had alot of bumps in my life.. Trust me, DO NOT commit suicide.. It's the worst thing to do. Life always ends. If, you end it short you miss out on a lot of things. Being sad, and emo and the right way to have a life. BE HAPPY! It makes you and the world a much better place. :D


10.

None

Topic: Help me get to sleep!

Posted: 02/20/08 08:29 PM

Forum: General

here's some things that help me:

Listen to the Radio

Daydream, just think about something, and you'll eventually fall to sleep

Take a HOT Shower, or a really cold one

Or, just excerise. To build up adrenaline, you'll be out cold sooner or later

:D


11.

None

Topic: NG, what's your real life name?

Posted: 02/20/08 04:45 PM

Forum: General

Justin


12.

None

Topic: A lil game help

Posted: 02/18/08 02:51 PM

Forum: Flash

thanks, for the AI. Okay, the problem i got is that when the enemy's hp (enemy_hp) equals to 0 (==0) The enemy plays the die animation (frame 3).

this is the code. I put this on the main frame.

enemy_hp = 50
if(_root.enemy_hp == 0){
_root.enemy.gotoAndStop(3);
}

The enemy_hp just keeps counting down to the negatives, and never activates the death frame..

What do I do?


13.

None

Topic: A lil game help

Posted: 02/18/08 02:17 PM

Forum: Flash

Hey, im back. I need a couple of things I need I help with my game..

1. HitTest problem

2. AI Tutorial..

thx^^

Um, here's the FLA : Rampage.fla

the sticks name is man
stick health is hp
stick health number form is hpnum
enemy is enemy
enemy health is enemyhp

please help..

Also, can you give me an AI tut

Sorry, I haven't work with AS in a long time, so I'm a little shaky.

THX^^


14.

None

Topic: Test My Engine Please

Posted: 02/12/08 08:31 PM

Forum: Flash

Graphics - 4 out of 5.
Gameplay - 3 out of 5.
Concept - 5 out of 5.
Controls - 2 out of 5.

Controls could've been better..

good game though

I uh, found something..

This is just for the test. But when you press I or U you gotta hold it, in order to get a star.

Also, If you shoot a bullet,and switch to a gatling gun, and you kill a person near the barrier, you get through it, but it pushes you back, so it's god to go, it's patched, no glitches. Nice game^^


15.

None

Topic: Test My Engine Please

Posted: 02/12/08 08:17 PM

Forum: Flash

I'll test it, i'll find some glitches, and give you ratings. Give me a minute..


16.

None

Topic: Project Flash: Gears of War

Posted: 02/12/08 08:15 PM

Forum: Flash

I'll help with um.. I can make some AS. V-Cam, BG Scroller, and I guess Movement ? :D

If I cant do that, then I can make the weapons^^

Lancer
Boomshot
Longshot Rifle
Frag
Gnasher (shotty)
Boltok


17.

None

Topic: Game help.

Posted: 02/12/08 08:02 PM

Forum: Flash

At 2/12/08 07:32 PM, El-Presidente wrote: Sorry missed this second part:

At 2/12/08 07:27 PM, stikkilla wrote: Also, how do you switch weapons like in wpnFire. You press Q or E to switch to prev. or next weapon, and when you get to that weapon you want it goes to that animation of that weapon. Hope, i explained it clearly.
var arr:Array = ["Uzi", "Bomb", "Weapon3"] //...etc.
var number:Number = 0;
var once:Boolean = true;
var once2:Boolean = true;

function onEnterFrame () { //or _root.onEnterFrame = function () {
if(number < 0){
number = 3;
}
if(number > 3){
number = 0;
}
if(Key.isDown(Q#?){ //Look at keycodes, not known off the top of my head
if(once == true){
once = false;
}
} else {
once = true;
}
if(Key.isDown(E#?){
if(once2 == true){
once2 = false;
}
} else {
once2 = true;
}
}

ok, um sorry about being noobish (havent done AS in a long time) Where should I put this code? On the GunsMC, main frame on timline, or the character MC?


18.

None

Topic: Game help.

Posted: 02/12/08 07:33 PM

Forum: Flash

that's El-Presidente^^ What about the weapon code? I think you gotta put it in an array right?


19.

None

Topic: Game help.

Posted: 02/12/08 07:27 PM

Forum: Flash

Hey, how do you get my health bar, and my number in the V-Cam? Because the V-Cam is attached to the player. I want it so, that even though the background moves and V-Cam moves, I want the health bar and percent (number) to stay in the V-Cam. Thanks^^

Also, how do you switch weapons like in wpnFire. You press Q or E to switch to prev. or next weapon, and when you get to that weapon you want it goes to that animation of that weapon. Hope, i explained it clearly.

THANKS.


20.

None

Topic: Some Game help.

Posted: 11/29/07 04:19 PM

Forum: Flash

I assume that you have built your game totally from scrounged bits of code and have no understanding of how any of it works.

Actually, I do understand. I wrote the script myself..

All I needed to know was how to do that part, then I could figure everything else out.

Thank you, for the person that posted. Now I can get a little jump on Actionscript for my game. Thank you^^

Sorry for being a jerk earlier, I had alot of schoolwork, and a rough day,.


21.

None

Topic: Some Game help.

Posted: 11/28/07 06:33 PM

Forum: Flash

fuck this. *deletes file* Thank you for helping. you answer the 5 new topics but not mine.

Thx alot for the fuckin help...


22.

None

Topic: Some Game help.

Posted: 11/28/07 06:24 PM

Forum: Flash

PLEASE HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! Ple-a-a-seeeeee !!! :(


23.

None

Topic: Some Game help.

Posted: 11/28/07 06:13 PM

Forum: Flash

I tried, I want the Flash 8 Actionscript Bible, it's not in my area...


24.

None

Topic: Some Game help.

Posted: 11/28/07 06:01 PM

Forum: Flash

okay, half-hour still no replies.. I wanna finish this game, at least this part, I've been working on it for 5 days now...


25.

None

Topic: Some Game help.

Posted: 11/28/07 05:52 PM

Forum: Flash

Could somebody please help. If you don't understand:

I want my MC (man) to be able to pick up a weapon when it's near it with the F key (70)

Also, i want to know, how to swap my animation within my MC (man) the punch animation with the shooting animation.


26.

None

Topic: Adobe Flash CS3

Posted: 11/28/07 05:50 PM

Forum: Flash

maybe this will help, there should be an arrow, at the Actions panel, Click it, if it's not on Expert Mode, check Expert Mode. Expert Mode, is where you can copy and paste, and type with the keyboard, and not pick from a list.

-Your Welcome.


27.

None

Topic: Some Game help.

Posted: 11/28/07 05:40 PM

Forum: Flash

Hey, I'm working on a game, required that when your in front a weapon, in this case a pistol. And when you're infront of the weapon you press "F" (70) to pick it up. Now, when you pick it up, the character's animations will be to shoot with S (83).

What I'm trying to ask is how to do i make it so when you're guy (man) is front of the weapon, you'll be able to pick up, and how to make the animation of shooting happen because I have a punch on S regularly with out a gun.

-Thx, I hope you understand, and help me^^


28.

None

Topic: The Tutorial Collab '07

Posted: 11/18/07 08:26 PM

Forum: Flash

I don't mean to be annoying but um... When is this thing gonna come out? I just CAN'T WAIT, and it's now 11/18/07 You got 43 days left (I think. I'm tired)


29.

None

Topic: VitaminWater Tryit Creator

Posted: 08/18/07 08:10 PM

Forum: General

LOL! Ever see those stupid BUT funny VitaminWater commercials? Well, now YOU get to create your own!

post your created vids! When you're done, go to Share it with (i forgot),but there's a Copy thing on there.

He's mine.. http://www.vitaminwater.com/tryit/?mid=2 3020204


30.

None

Topic: 2 + 2 = Fish

Posted: 08/18/07 08:04 PM

Forum: General

1+1=window


All times are Eastern Standard Time (GMT -5) | Current Time: 10:51 AM

<< < > >>

Viewing 1-30 of 949 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 92032