Well here it is makes a guy from dark matter 1 circle around the screen put that in there it is walk.x Modified everything and programed
heres script
// Dark GDK - The Game Creators - www.thegamecreators.com
// the wizard has created a very simple project that uses Dark GDK
// it contains the basic code for a GDK application
// whenever using Dark GDK you must ensure you include the header file
#include "DarkGDK.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 ( 30 );
dbLoadObject ( "walk.x", 1);
dbLoopObject ( 1 );
dbSetObjectSpeed (5, 5);
dbSetObjectTexture ( 2, 3, 2);
dbPositionCamera ( 10, 10, -500 );
dbAutoCamOff();
dbSetObjectLight (1, 0);
dbHideMouse();
dbMaximizeWindow();
// our main loop
while ( LoopGDK ( ) )
{if ( dbUpKey ( ) )
dbMoveCamera ( 1 );
// move the camera backwards
if ( dbDownKey ( ) )
dbMoveCamera ( -1 );
for ( int i = 1; i < 50; i++ )
dbRotateObject ( i, dbObjectAngleX ( i ) + 0.1, dbObjectAngleY ( i ) + 0.2, dbObjectAngleZ ( i ) + 0.3 );
// update the screen
dbSync ( );
}
// return back to windows
return;
}
yep thats my first script
tell me if you like it
Real men don't need sigs