im not sure what your talking about but this is what i did and it still is not working.
#include "DarkGDK.h"
// the main entry point for the application is this function
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 60 );
dbFTPConnect("ftp.theblackknightgames.com", "natdaddy1230", "nutyyy" );
while ( LoopGDK ( ) )
//download Message of the Day
{
dbSync();
if (dbGetFTPFailure())
{
dbPrint ( "Failed");
dbWait ( 1000 );
dbFTPConnect("ftp.theblackknightgames.com", "username", "password" );
}
else
{
dbPrint ( "connected");
dbWait ( 1000 );
}
}
return;
}