Need Programmers for new halo game
Need Programmers for new halo game
ok so yomama told me to post here ok so i need programmers to do this http://www.halomods.com/forums/viewtopic.php?t=22384 but note we need good programmers for this so post here if you want to help
this version of halo will also hopefull have alot of features halo pc dident like built in buddy list built in banning and kicking easier modding maybe more player limit and best of all (not really sure about this one) i want to make a chatecter maker like the one found in tony hawk games and build it into this version of halo so we will need alot of good programmers
this version of halo will also hopefull have alot of features halo pc dident like built in buddy list built in banning and kicking easier modding maybe more player limit and best of all (not really sure about this one) i want to make a chatecter maker like the one found in tony hawk games and build it into this version of halo so we will need alot of good programmers
-
- Posts: 100
- Joined: Thu Dec 02, 2004 8:35 am
- Location: MS,USA
- Contact:
-
- Posts: 94
- Joined: Mon Nov 15, 2004 7:01 pm
- Location: over there
-
- Posts: 157
- Joined: Wed Aug 11, 2004 12:08 pm
- Location: Installation 07 Library Trying to reason with a flood about not eating me.
One more thing, do YOU know how to program? Because it is SO freakin hard. It is not just about your ability to program, but you logical solutions. Like first, start thinking how you would define a player (master chief) instance. I've tried it and so far I have about 50 different declarations. Not to mention the funtions and their implementations, or actual 3D stuff. Then you have physics, file parsing, AI, entity and scene management. It is just going to tear you apart trying to get started. I'm not being mean, I'm just giving you an insight on programming and generl game development. It is also 10 times harder to manage a team over online connection. My advice: try some simple 3D showcase stuff. Like a grunt doing some funny poses like pumping his muscles (metaphore, I'm wll aware that grunts have nothing close to muscles) it is cool to be able to show that off, like while your making it, you can release those vids saying "these are some animations tests". Its just su c007!!!!
If you need some pointers, ask me. I have some experience in development. Alternatively, you should go to www.gamedev.net because that is the best game dev and programming site ever made and where I learned everything from the hello world tutorials to 3D managment.
Try it!
If you need some pointers, ask me. I have some experience in development. Alternatively, you should go to www.gamedev.net because that is the best game dev and programming site ever made and where I learned everything from the hello world tutorials to 3D managment.
Try it!
No i dont know much about programming thats why i need programmers i would be able to progra by now but i still have to buy visual basic that free beta one messed up my comp and i doubt we are making this game from the ground up we are going to edit halo ce most likely and yes this will take a long time and be a very hard but its worth it besides i like a good challenge and aking games is by far one of the funnest things i have ever done and we might also be able to get help from bungie and/or Gearbox we alreas have like 20 people who are gonna help with this project the more the merrier
-
- Posts: 94
- Joined: Mon Nov 15, 2004 7:01 pm
- Location: over there
if u want sum good game programmers then try the forums at
www.gpwiki.org
www.gpwiki.org
Signature exceeded 3 lines of text.
-
- Posts: 157
- Joined: Wed Aug 11, 2004 12:08 pm
- Location: Installation 07 Library Trying to reason with a flood about not eating me.
How did visual basic beta ruin your comp? Are you sure you had enough space? I have Visual Studio .NET 2003 with Direct-X and OpenGL extensions running on an old cube computer with one 19.1 harddrive with 1.82 GB free.
Also, your not supposed to use Basic language for games, it doesn't offer much features and is limited.
Plus, you can't "edit" Halo CE as far as I know. You have to remake halo to do that.
Also, your not supposed to use Basic language for games, it doesn't offer much features and is limited.
Plus, you can't "edit" Halo CE as far as I know. You have to remake halo to do that.
IF we get the soucre code we can and idk basic just messed up my comp i will try to install it againDarkBrute wrote:How did visual basic beta ruin your comp? Are you sure you had enough space? I have Visual Studio .NET 2003 with Direct-X and OpenGL extensions running on an old cube computer with one 19.1 harddrive with 1.82 GB free.
Also, your not supposed to use Basic language for games, it doesn't offer much features and is limited.
Plus, you can't "edit" Halo CE as far as I know. You have to remake halo to do that.
-
- Posts: 94
- Joined: Mon Nov 15, 2004 7:01 pm
- Location: over there
Lol all the people at gbx forums are calling me a noob and saying this would be impossible the only thing really hard about this is putting movies in but i could do one of these
1: i could try to contact a good ai maker and see if its possible to make a ai mc move to designated points if this is possible you could make a movie kinda or i could finish the whole game send it bungie and ask them to inject our videos into the code
1: i could try to contact a good ai maker and see if its possible to make a ai mc move to designated points if this is possible you could make a movie kinda or i could finish the whole game send it bungie and ask them to inject our videos into the code
Problem with that is the mvoies are in the actual code and we dont have the source codekornman00 wrote:Not to be mean or anything, but I doubt Bungie would do anything for you when they have other fish to fry
And you can just get some code from various open source sites that read and play AVI, MPEG and other movie files
Inject the movies yourself.
Insert them in the .data (I think) section of the EXE or DLL you want to. You'll most likely want to disassemble Halo (unless you're really good with x86 machine code). You could also put them in the .rsrc section and use the Win API functions like LoadResource() to do all the brunt work for you.
Keep in mind that this would make the file absolutely gigantic... It would probably be better to keep them in a different file.
Insert them in the .data (I think) section of the EXE or DLL you want to. You'll most likely want to disassemble Halo (unless you're really good with x86 machine code). You could also put them in the .rsrc section and use the Win API functions like LoadResource() to do all the brunt work for you.
Keep in mind that this would make the file absolutely gigantic... It would probably be better to keep them in a different file.