View Single Post
  #2  
Old 08-02-2006, 02:09 AM
LostZaphod
Sarnak
 
Join Date: May 2006
Posts: 43
Default

Close solution
CHANGE this inside of zone.vcproj (do a search for "perl_playerCorpse.cpp" carrage returns and spaces have been removed)
<File RelativePath=".\perl_PlayerCorpse.cpp"></File>

to look like this in zone.proj (needed for quests to work)
<File RelativePath=".\perl_perlpacket.cpp"></File>
<File RelativePath=".\perl_PlayerCorpse.cpp"></File>
<File RelativePath=".\perlpacket.cpp"></File>

ADD to the "Common Source Files"
<File RelativePath="..\common\rulesys.cpp"> </File>

Open solution, properties of zone
if you want better debugging set
c++.preprocessor, change EQDEBUG=0 to EQDEBUG=5
for quests to work add
c++,preprocessor, add these items.... ,EMBPERL,EMBPERL_PLUGIN

linker, Input, "Ignore Specific Library"
LIBCMT,LIBC,MSVCRT
Reply With Quote