About Store Forum Documentation Contact



Post Reply 
Hello I need some help?
Author Message
andreadixon825 Offline
Member

Post: #1
Hello I need some help?
Hi, Iv been trying to get Ineisis inventory to work, but I'm getting errors, Iv done this 4 times and I sitll dont know how it works. Please if someone can help me I really appreciate this. Thanks smile

Code:
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
  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
  Generating Code...
10-19-2016 09:08 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Dwight Offline
Member

Post: #2
RE: Hello I need some help?
Are you following a certain tutorial from this website?

That tutorial is not up-to-date with the latest engine updates. There are some namechanges done for example smile
10-19-2016 10:02 PM
Find all posts by this user Quote this message in a reply
andreadixon825 Offline
Member

Post: #3
RE: Hello I need some help?
yes this one
http://www.esenthel.com/forum/showthread...sis+Online

I did not know that its changed know wander I cant seem to get it working. Haha
Thanks for letting me know smile
I gess I will just tire to find that list of changes, smile
10-19-2016 10:09 PM
Visit this user's website Find all posts by this user Quote this message in a reply
RedcrowProd Offline
Member

Post: #4
RE: Hello I need some help?
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) smile hope this helps
10-20-2016 12:56 AM
Find all posts by this user Quote this message in a reply
andreadixon825 Offline
Member

Post: #5
RE: Hello I need some help?
ok thanks I will check that out smile
10-21-2016 04:32 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply