Net Inventory.cpp
c:\users\ajsco\desktop\engine\esenthel\editor\bin\esenthelengine\_/inline.h(347): error C2171: '!': illegal on operands of type 'void' [C:\Users\ajsco\Desktop\Engine\Esenthel\Editor\Projects\_Build_\Ineisis Server\Project.vcxproj]
c:\users\ajsco\desktop\engine\esenthel\editor\bin\esenthelengine\_/inline.h(347): note: while compiling class template member function 'Bool EE::Memc<NetItem>::save(EE::File &)'
Source\Shared\Net Inventory.cpp(39): note: see reference to function template instantiation 'Bool EE::Memc<NetItem>::save(EE::File &)' being compiled
c:\users\ajsco\desktop\engine\esenthel\editor\bin\esenthelengine\_/inline.h(347): error C2451: conditional expression of type 'void' is illegal [C:\Users\ajsco\Desktop\Engine\Esenthel\Editor\Projects\_Build_\Ineisis Server\Project.vcxproj]
c:\users\ajsco\desktop\engine\esenthel\editor\bin\esenthelengine\_/inline.h(347): note: Expressions of type void cannot be converted to other types
this is because "save" return type has been changed in the engine.
Net Chr.cpp
Source\Shared\Net Chr.cpp(130): error C2664: 'void NetItem::create(const EE::UID &)': cannot convert argument 1 from 'const wchar_t [1]' to 'const EE::UID &' [C:\Users\ajsco\Desktop\Engine\Esenthel\Editor\Projects\_Build_\Ineisis Server\Project.vcxproj]
Source\Shared\Net Chr.cpp(130): note: Reason: cannot convert from 'const wchar_t [1]' to 'const EE::UID'
Source\Shared\Net Chr.cpp(130): note: No constructor could take the source type, or constructor overload resolution was ambiguous
this is because you are not calling the create with a UID but with a char (or str)
hope this helps