I looked bot and even after I changed my quests to Quests like it showed in the source it still won't work.  It is suppose to do the following
	Code:
	 #ifdef WIN32                                                                        
  snprintf(filename, 254, "Quests\\%i.qst", npc_id);                                  
  #else                                                                               
  snprintf(filename, 254, "Quests/%i.qst", npc_id);                                   
  #endif                                                                              
                                                                                      
  if (pFile = fopen ( filename , "rb" )) {                                            
          printf("Reading quests from %s\n", filename);                               
  }                                                                                   
  else {                                                                              
          //printf("Error: No quests file found for %s\n", zonename);                 
          return;
 But when looking at the logs it doesn't say anything like that in world or zone.