I have managed to get three more screen shots, and I am trying to get one of the chat system in play.
That is the first one with the shooting system. The level came from one of the demos, same with the gun. At the top left you see numbers, that is how much ammo you have and also your position.
That is the online thing in action, which I couldn't get connected because one of my other teammates has the server. So this is a picture of me not being able to connect
. We are hopeing to put like a sad smiley face there.
This is a picture of physics, using the header file that I created. Here it shows the hands of a person that I made. Terrible, right? Also, this is the code that is required to have human physics using my header file ( really it is the code for that demo in my first post.)
#include "DarkGDK.h"
#include "KeyID's.h"
#include "Physics.h"
// the main entry point for the application is this function
void DarkGDK ( void )
{
// turn on sync rate and set maximum rate to 60 fps
dbSyncOn ( );
dbSyncRate ( 60 );
SC_Start( );
JS_PlayerSetup (2, 0.0f, 100.0f, 0.0f, "man.x", 3 );
JS_TerrainSetup ("TunnelMap.x", 1, 1, 10000.0f, 10000.0f, 10000.0f );
// our main loop
while ( LoopGDK ( ) )
{
JS_PositionObjects ( 0, 2.5f, 180.0f );
JS_Start();
// update the screen
dbSync ( );
}
// return back to windows
return;
}
it is really simple.
Quote: "Better to have a horrid looking screenshot making modellers think "if I helped those guys out, it would be awesome", than have no screenshots and make everyone think "FLAME!"."
Well, just look at the pictures above, although they might scare modelers away because they are so bad.
Quote: "Now you're talking
In the future it'd be a nice idea to wait to post your WIP thread until you have all the information ready to display. Let's see a demo of the online play and shooting perhaps?"
Yes, and I am really sorry about that, since I wrote three other threads I thought I had it all in there.
I am going to try and get you a demo of the online play and the shooting. Right now, we have a minor problem with the shooting, mostly because the person who was in charge of that is getting errors that are really wierd. The online play I will try to get A.S.A.P.
Quote: "I would like to hear that you are doing something more interesting with it then just the player completes missions and ranks up. It just sounds repetative but I hate the way MMO's are done anyway."
Well, you are probably right about the ranking up, and we will probably do something else, but basically that is what will happen, and when you rank up really high you can get better weapons.
Thanks for all the comments!