View Full Version : Assassins Creed: The Flash Version.
lifeinsepia
11-22-2007, 09:28 PM
Ladies and gentlemen, I have a very exciting proposition for you. I want to make a flash version of assassins creed. Obviously, this is a massive job, and will require a team of people. I will need: a graphic designer, preferably someone with experience in sprite work and a programmer. I can help with both, and I will be directing the project. I'm afraid I can't offer to pay you, this will just be for fun. I am rigging up some frame work now, creating simple climbing and running script, but the jumping and attacking i will need help with. Who's with me?
lifeinsepia
11-22-2007, 10:00 PM
I have created an initial design for the game. Obviously, I will be taking a different art style, and right now, the haystack does nothing. This is just to show you that I am serious about this game. Ask for it, and Ill try and send it to you any way I can. This is the the only code used, and this is an annotated screen shot of the game:
The code on Altair:
onClipEvent (enterFrame) {
gravity = 9;
}
onClipEvent (enterFrame) {
speed = 7;
}
onClipEvent (enterFrame) {
climbspeed = 14;
}
onClipEvent (enterFrame) {
this._y += gravity;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.floor) == true) {
this._y -= gravity;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.roof) == true) {
this._y -= gravity;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
this._x -= speed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x += speed;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.leftwall) == true) {
if (Key.isDown(Key.UP)) {
this._y -= climbspeed;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.rightwall) == true) {
if (Key.isDown(Key.UP)) {
this._y -= climbspeed;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.leftwall) == true) {
this._x -= speed;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.rightwall) == true) {
this._x += speed;
}
}
Any suggestions would be great.
This is the screen shot (as you can see, I haven't gone overboard on graphics).
http://i130.photobucket.com/albums/p268/lifeinsepia/InitialScreenshot.jpg
I can't do this alone, please help.
newblack
11-23-2007, 03:52 PM
you'll have a hard time getting people on board when:
1. you're owning directorship of the game without offer of compensation
2. you're writing bastardized AS1
3. you're making a huge jump from assassin's creed to something you can do in flash without depicting what you intend to change.
good luck all the same.
lifeinsepia
11-23-2007, 08:03 PM
OK, thanks, ill take that on board.
the bastardized AS1 is what i was taught in, i dont really know anything else.
the reason i havent said what i would change is because i would want to make that decision with the people who want to do this.
And I think you are right about the directorship thing.
da_jake2
12-04-2007, 09:25 PM
Ill help I have experience in game making.
sensitiveforce
04-24-2008, 05:54 PM
I can help on the graphic design part. I have Photoshop 7.0 and Inkscape, but soon I am going to have the CS3 package (Photoshop CS3, Flash CS3, Illustrator CS3...) and Flash can't be THAT different... Also, I have a lot of ideas, some good, some not-so-good, and some just to hard. One of my ideas is to have a button that gives you a birds eye view of where you are. You can email me at: sensitiveforce -at- gmail.com. I don't own Assassins Creed, so if you want it to be close to the game in the places, you will need to send me lots and lots 'o' screenshots.
Ciao
evride
04-27-2008, 09:06 AM
you'll have a hard time getting people on board when:
1. you're owning directorship of the game without offer of compensation
2. you're writing bastardized AS1
3. you're making a huge jump from assassin's creed to something you can do in flash without depicting what you intend to change.
good luck all the same.
ha! love it, especially the part about the bastardized AS1. lol omg. ten bucks this project won't last a week. another ten bucks that 3/5 who posted on here are the same person. just a not-so-wild guess.
and also, i love the reply with the image of a stick figure jumping off of a square. you are soooo serious about it now. I sooo want to join in.
david142
04-27-2008, 10:19 AM
ha! love it, especially the part about the bastardized AS1. lol omg. ten bucks this project won't last a week. another ten bucks that 3/5 who posted on here are the same person. just a not-so-wild guess.
and also, i love the reply with the image of a stick figure jumping off of a square. you are soooo serious about it now. I sooo want to join in.
LOLOLOLOLOL, bastarized as1, he is so right. i'll put 20 bucks on 1 day and none applying for the job. who takes me on on that.:P
sorry for the one who posted this tread. but learn some skills in gamemaking first (math and programming). try to come back in a year or 4 then maybe people will take your offer seriously:p
sly25
08-25-2008, 08:50 AM
i can help
uno the bar u fill when ur in hay i can do that
email me at maderagon25@gmail.com
syruplord
08-25-2008, 02:54 PM
lol this is way too big of a project. Anyone who would actually be able to do this game justice is never going to do it for free either. Also it might be good to share with people your plans beyond walls and haystacks.
alc117
12-28-2008, 06:10 PM
I have created an initial design for the game. Obviously, I will be taking a different art style, and right now, the haystack does nothing. This is just to show you that I am serious about this game. Ask for it, and Ill try and send it to you any way I can. This is the the only code used, and this is an annotated screen shot of the game:
The code on Altair:
onClipEvent (enterFrame) {
gravity = 9;
}
onClipEvent (enterFrame) {
speed = 7;
}
onClipEvent (enterFrame) {
climbspeed = 14;
}
onClipEvent (enterFrame) {
this._y += gravity;
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.floor) == true) {
this._y -= gravity;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.roof) == true) {
this._y -= gravity;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
this._x -= speed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)) {
this._x += speed;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.leftwall) == true) {
if (Key.isDown(Key.UP)) {
this._y -= climbspeed;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.rightwall) == true) {
if (Key.isDown(Key.UP)) {
this._y -= climbspeed;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.leftwall) == true) {
this._x -= speed;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.building.rightwall) == true) {
this._x += speed;
}
}
Any suggestions would be great.
This is the screen shot (as you can see, I haven't gone overboard on graphics).
http://i130.photobucket.com/albums/p268/lifeinsepia/InitialScreenshot.jpg
I can't do this alone, please help.
i think u should add a picture of altair instead of drawing it ur self and y am i doing this is because altair is changed my life so plz ask me help in any thing
alc117
12-28-2008, 10:24 PM
so wat do u think my name is Avab i am here to make the game and i will help in any thing
alc117
12-28-2008, 10:26 PM
so know i will help in any thing so yah watever u want and when ever jus ask plz
alc117
12-28-2008, 10:27 PM
this is me Avab i have lots of pics of altair
so ask plz
CyanBlue
12-28-2008, 10:39 PM
Howdy and Welcome... :)
I think people has heard you already... There is no need to keep replying... Don't you think??? ;)
orange gold
12-29-2008, 02:11 AM
i dont think many people will want to join if your claiming directorship over the whole project when you cant even make a character jump...
edit: and when you quadruple post saying the same thing in 3 of the posts... within 1 minute of each other
alc117
01-07-2009, 03:29 AM
http://www.actionscript.org/forums/attachment.php3?attachmentid=30688&stc=1&d=1231298940
this is mine Avabs how do u like huh?
this post was started over a year ago. I think it's safe to say this project is already gone. :)
LifesAGlitch
12-03-2009, 01:07 PM
As the title says i thought i can help.I love making games just for fun.:)
LifesAGlitch
12-03-2009, 01:10 PM
i think u should add a picture of altair instead of drawing it ur self and y am i doing this is because altair is changed my life so plz ask me help in any thing
Yes I agree,but it would be hard so I would choose Pivot 3.0 BETA to upload on it an decal of his mask,or i could make one myself.:)
philliptune
12-04-2009, 06:02 PM
Once again... this thread was started over a year ago and the project is probably dead so stop reviving this.
Yuk Yuk Wub
11-30-2011, 05:54 PM
I would help, but I don't really have the time. So I will just look in occasionally. My advice to get started, is to look at the game on PC and look at similarities between it and other games that've been converted to flash
dialectric
11-30-2011, 06:45 PM
When you finish with this, you can help me with my Flash version of Red Dead Redemption. I am thinking of writing it in bastardized AS1 to mess with decompilers. I need coders and artists for the project, and help with climbing, running, jumping, attacking and poker minigame scripts. No compensation. I have attached a screenshot of my vision for the game.
- dialectric
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.