View Single Post
  #2  
Old 06-10-2002, 01:13 AM
TheClaus
Discordant
 
Join Date: Jan 2002
Location: Manteca, CA
Posts: 352
Default

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.
Reply With Quote