Allied Tribal Forces

Go Back   Allied Tribal Forces > Main Forums > General Forum

Notices

Reply
 
Thread Tools Rate Thread Display Modes
Old 08-13-2005, 11:10 PM   #1
Cass
Registered User
PlanetSide Characters
 
Cass's Avatar
 
Join Date: Jul 2004
Location: Canada. BC
Age: 33
Posts: 531
Cass RSS Feed
WoW Characters
Send a message via MSN to Cass
Need some Idea help.

So I am learning more into AS and need some Ideas for projects (vary easy for me to learn if I use it in something) So post some type of vary simple programe or vary simple game and I will get working and post it here. (made in flash)
__________________

Crashing Cows since day 1.
Cass is offline   Reply With Quote
Old 08-15-2005, 01:40 PM   #2
Weevil
Registered User
 
Weevil's Avatar
 
Join Date: Aug 2005
Posts: 21
Weevil RSS Feed
Send a message via AIM to Weevil
hey, im not sure if your familiar with physics in flash.. but this is way cool.

http://www.illogicz.com/flash5/physicsengine/

thats one of the coolest things ive seen in flash.

or maybe you could design a game on something like this?

http://www.izpitera.ru/lj/tetka.swf

maybe drop something ragdoll esque and get points when it lands in certain zones.
Weevil is offline   Reply With Quote
Old 08-15-2005, 05:14 PM   #4
Stang
THZ* - CO
PlanetSide Characters
 
Stang's Avatar
 
Join Date: Feb 2003
Location: Everett, WA, USA
Age: 50
Posts: 3,925
Stang RSS Feed
WoW Characters
Arms arent suppose to turn that way
__________________
Stang is offline   Reply With Quote
Old 08-15-2005, 06:08 PM   #5
Cass
Registered User
PlanetSide Characters
 
Cass's Avatar
 
Join Date: Jul 2004
Location: Canada. BC
Age: 33
Posts: 531
Cass RSS Feed
WoW Characters
Send a message via MSN to Cass
Well i was thinking about physics and that thing said theirs was in OOP so i made one.

http://img198.imageshack.us/my.php?image=faller8rn.swf

Nothing but code for that.
Code:
Object.prototype.setClass = function (Class) {
	this.constructor = Class;
	this.__proto__ = Class.prototype;
};
Faller = function (Ground) {
	this.Ground = Ground;
	this.velocity = 0;
};
Faller.prototype = new MovieClip();
Faller.prototype.onEnterFrame = function() {
	this.velocity++;
	this._y += this.velocity;
	if (this._y>=this.Ground) {
		this._y = this.Ground;
		this.velocity *= -1;
	}
};
this.createEmptyMovieClip("triangle", 1);
with (triangle) {
	_x = 150;
	_y = 10;
	beginFill(0xaaaaaa, 100);
	lineStyle(2, 0, 100);
	moveTo(0, -10);
	lineTo(10, 10);
	lineTo(-10, 10);
	lineTo(0, -10);
	endFill();
}
triangle.setClass(Faller);
triangle.constructor(500);

Last edited by Ghryphen; 08-15-2005 at 06:21 PM.
Cass is offline   Reply With Quote
Old 08-16-2005, 01:23 PM   #6
Weevil
Registered User
 
Weevil's Avatar
 
Join Date: Aug 2005
Posts: 21
Weevil RSS Feed
Send a message via AIM to Weevil
now, you must make a game where you are a giant hammer, who must smash nails. and when the nails get hit, they explode in blood and rust.
and your really hammering the nails into a human! a giant!
....yea....
Weevil is offline   Reply With Quote
Reply

  Allied Tribal Forces > Main Forums > General Forum

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
My idea for Vanu (the race) buildings TimberWolf PlanetSide 2 2 10-22-2004 09:42 AM


All times are GMT -7. The time now is 08:07 PM.


vBulletin, Copyright © 2000 - 2024, Jelsoft Enterprises Ltd.