Jump to content

Recommended Posts

15 hours ago, ѕeмa™ said:

You must send the vnum of the mount.

I dont know if you save that value in Value4 but as i see in your gif is not working.

Maybe you should try to make a dictionary with the vnum of the seals and the mount vnum, i know is not the best solution, but it could work.

Example:


PetsAndMounts = {
					53001 :  34001,
					53002 :  34002,
					53003 :  34003,
					53005 :  34004,
}

if PetsAndMounts.has_key(itemVnum):
	renderTarget.SelectModel(2, PetsAndMounts[itemVnum])

I hope this can help you.

I edited his code to look like the code that is already working on costumes and armor and it looks like this:

 

PetsAndMounts = {
					71186 :  20249,
}

		if PetsAndMounts.has_key(itemVnum):
			self.__ModelPreview(itemVnum, 2, PetsAndMounts[itemVnum])

 

result.. that's work!!

Screenshot_2.png.fe9bf14da36a6f35f86acf7b1db08776.png

 

but is it possible to improve this code so I do not have to add all mounts manually? :D

btw ty for de help!

tenor.gif

Link to comment
Share on other sites

  • Bot
Spoiler
6 hours ago, cjunior2011 said:

I edited his code to look like the code that is already working on costumes and armor and it looks like this:

 



PetsAndMounts = {
					71186 :  20249,
}

		if PetsAndMounts.has_key(itemVnum):
			self.__ModelPreview(itemVnum, 2, PetsAndMounts[itemVnum])

 

result.. that's work!!

Screenshot_2.png.fe9bf14da36a6f35f86acf7b1db08776.png

 

but is it possible to improve this code so I do not have to add all mounts manually? :D

btw ty for de help!

 

Fill some value field in item_proto with the mob_vnum and then call it from uitooltip with item.GetValue(x)

  • Love 1

english_banner.gif

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...
  • 1 month later...
 
hello I have a problem with the system. A compilation of the effective treatment course selectmodel interrupts the client.
void CRenderTarget::SelectModel(const DWORD index)
{
	if (index == 0)
	{
		//delete m_pModel;
		m_pModel.reset();
		return;
	}

	CInstanceBase::SCreateData kCreateData{};


	kCreateData.m_bType = CActorInstance::TYPE_NPC; // Dynamic Type
	kCreateData.m_dwRace = index;
	
	auto model = std::make_unique<CInstanceBase>();
	if (!model->Create(kCreateData))
	{
		if (m_pModel)
		{
			m_pModel.reset();
		}
		return;
	}
	m_pModel = std::move(model);

	m_pModel->GetGraphicThingInstancePtr()->ClearAttachingEffect();
	m_modelRotation = 0.0f;
	m_pModel->Refresh(CRaceMotionData::NAME_WAIT, true);
	m_pModel->SetLoopMotion(CRaceMotionData::NAME_WAIT);
	m_pModel->SetAlwaysRender(true);
	m_pModel->SetRotation(0.0f);

	auto& camera_manager = CCameraManager::instance();
	camera_manager.SetCurrentCamera(CCameraManager::SHOPDECO_CAMERA);
	camera_manager.GetCurrentCamera()->SetTargetHeight(110.0);
	camera_manager.ResetToPreviousCamera();
}
after function tests
kCreateData.m_bType = CActorInstance::TYPE_NPC; // Dynamic Type
	kCreateData.m_dwRace = index;
	
	auto model = std::make_unique<CInstanceBase>();
	TraceError("OK"); //displays ok
	if (!model->Create(kCreateData))
	{
		TraceError("OK"); //does not display
		if (m_pModel)
		{
			m_pModel.reset();
		}
		return;
	}
	TraceError("OK"); //does not display
the error closes the client without syser and log errors. Compiles distriubute. Please help.
Link to comment
Share on other sites

  • 2 weeks later...
  • 2 months later...
  • Honorable Member

reup: 

This is the hidden content, please

On 9/22/2019 at 8:07 AM, evils666 said:

Hello.
Does anyone have an updated system for direct 9?

Yes, not that hard to update. Check this out:

This is the hidden content, please

  • Metin2 Dev 35
  • Eyes 1
  • Not Good 1
  • Think 1
  • Good 13
  • Love 18
Link to comment
Share on other sites

  • 1 month later...
  • 2 weeks later...
Quote

Error    1    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectData.cpp    1    1    EffectLib
Error    2    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectInstance.cpp    1    1    EffectLib
Error    3    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectManager.cpp    1    1    EffectLib
Error    4    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectMesh.cpp    1    1    EffectLib
Error    5    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectMeshInstance.cpp    1    1    EffectLib
Error    6    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\EffectUpdateDecorator.cpp    1    1    EffectLib
Error    7    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\ParticleInstance.cpp    1    1    EffectLib
Error    8    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\ParticleProperty.cpp    1    1    EffectLib
Error    9    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\ParticleSystemData.cpp    1    1    EffectLib
Error    10    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\ParticleSystemInstance.cpp    1    1    EffectLib
Error    11    error C1853: 'Distribute\EffectLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EffectLib\SimpleLightInstance.cpp    1    1    EffectLib
Error    12    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\LODController.cpp    1    1    EterGrnLib
Error    13    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\Material.cpp    1    1    EterGrnLib
Error    14    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\Mesh.cpp    1    1    EterGrnLib
Error    15    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\Model.cpp    1    1    EterGrnLib
Error    16    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstance.cpp    1    1    EterGrnLib
Error    17    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstanceCollisionDetection.cpp    1    1    EterGrnLib
Error    18    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstanceModel.cpp    1    1    EterGrnLib
Error    19    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstanceMotion.cpp    1    1    EterGrnLib
Error    20    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstanceRender.cpp    1    1    EterGrnLib
Error    21    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ModelInstanceUpdate.cpp    1    1    EterGrnLib
Error    22    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\Thing.cpp    1    1    EterGrnLib
Error    23    error C1853: 'Distribute\EterGrnLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterGrnLib\ThingInstance.cpp    1    1    EterGrnLib
Error    24    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\BlockTexture.cpp    1    1    EterLib
Error    25    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\CollisionData.cpp    1    1    EterLib
Error    26    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\CullingManager.cpp    1    1    EterLib
Error    27    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\Decal.cpp    1    1    EterLib
Error    28    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\DibBar.cpp    1    1    EterLib
Error    29    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\EnvironmentMap.cpp    1    1    EterLib
Error    30    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpBase.cpp    1    1    EterLib
Error    31    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpCollisionObject.cpp    1    1    EterLib
Error    32    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpDevice.cpp    1    1    EterLib
Error    33    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpExpandedImageInstance.cpp    1    1    EterLib
Error    34    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpFontTexture.cpp    1    1    EterLib
Error    35    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpImage.cpp    1    1    EterLib
Error    36    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpImageInstance.cpp    1    1    EterLib
Error    37    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpImageTexture.cpp    1    1    EterLib
Error    38    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpIndexBuffer.cpp    1    1    EterLib
Error    39    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpLightManager.cpp    1    1    EterLib
Error    40    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpMarkInstance.cpp    1    1    EterLib
Error    41    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpObjectInstance.cpp    1    1    EterLib
Error    42    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpPixelShader.cpp    1    1    EterLib
Error    43    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpScreen.cpp    1    1    EterLib
Error    44    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpShadowTexture.cpp    1    1    EterLib
Error    45    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpSubImage.cpp    1    1    EterLib
Error    46    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpText.cpp    1    1    EterLib
Error    47    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpTextInstance.cpp    1    1    EterLib
Error    48    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpTexture.cpp    1    1    EterLib
Error    49    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpVertexBuffer.cpp    1    1    EterLib
Error    50    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpVertexBufferDynamic.cpp    1    1    EterLib
Error    51    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpVertexBufferStatic.cpp    1    1    EterLib
Error    52    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\GrpVertexShader.cpp    1    1    EterLib
Error    53    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\LensFlare.cpp    1    1    EterLib
Error    54    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\ResourceManager.cpp    1    1    EterLib
Error    55    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\ScreenFilter.cpp    1    1    EterLib
Error    56    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\EterLib\SkyBox.cpp    1    1    EterLib
Error    57    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    C:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    1    1    EterLib
Error    58    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    C:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTargetManager.cpp    1    1    EterLib
Error    59    error C1853: 'Distribute\EterLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    C:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpRenderTargetTexture.cpp    1    1    EterLib
Error    60    error C1853: 'Distribute\PRTerrainLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\PRTerrainLib\Terrain.cpp    1    1    PRTerrainLib
Error    61    error C1853: 'Distribute\PRTerrainLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\PRTerrainLib\TextureSet.cpp    1    1    PRTerrainLib
Error    62    error C1853: 'Distribute\ScriptLib.pch' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)    D:\M2\ERIC\Client Source\source\ScriptLib\Resource.cpp    1    1    ScriptLib
Error    63    error C1083: Cannot open include file: 'MovieMan.h': No such file or directory    c:\users\yiğitcan\desktop\binary src\userinterface\PythonApplication.h    2    1    UserInterface
    64    IntelliSense: a type qualifier is not allowed on a nonmember function    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpBase.h    6    19    EterLib
    65    IntelliSense: a type qualifier is not allowed on a nonmember function    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpBase.h    8    22    EterLib
    66    IntelliSense: a type qualifier is not allowed on a nonmember function    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpBase.h    9    20    EterLib
    67    IntelliSense: a type qualifier is not allowed on a nonmember function    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpBase.h    10    19    EterLib
    68    IntelliSense: cannot open source file "GrpTexture.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\GrpRenderTargetTexture.h    3    1    EterLib
    69    IntelliSense: this declaration has no storage class or type specifier    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\Camera.h    2    4    EterLib
    70    IntelliSense: this declaration has no storage class or type specifier    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\Camera.h    5    4    EterLib
    71    IntelliSense: expected a declaration    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xhash    125    1    EterLib
    72    IntelliSense: expected a declaration    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xhash    1098    1    EterLib
    73    IntelliSense: expected a declaration    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\unordered_map    70    2    EterLib
    74    IntelliSense: namespace "std" has no member "unordered_map"    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\unordered_map    672    12    EterLib
    75    IntelliSense: namespace "std" has no member "unordered_multimap"    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\unordered_map    673    12    EterLib
    76    IntelliSense: expected a declaration    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\unordered_map    675    1    EterLib
    77    IntelliSense: expected a declaration    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\cstdint    54    2    EterLib
    78    IntelliSense: cannot open source file "../EterBase/Singleton.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTargetManager.h    8    1    EterLib
    79    IntelliSense: expected a declaration    c:\Users\Yiğitcan\Desktop\Binary Src\UserInterface\InstanceBase.h    2    2    EterLib
    80    IntelliSense: expected a declaration    c:\Users\Yiğitcan\Desktop\Binary Src\UserInterface\InstanceBase.h    7    2    EterLib
    81    IntelliSense: expected a declaration    c:\Users\Yiğitcan\Desktop\Binary Src\UserInterface\InstanceBase.h    9    2    EterLib
    82    IntelliSense: expected a '}'    c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xhash    1109    15    EterLib
    83    IntelliSense: cannot open source file "StdAfx.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    1    1    EterLib
    84    IntelliSense: cannot open source file "../EterPythonLib/PythonGraphic.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    5    1    EterLib
    85    IntelliSense: cannot open source file "../EterBase/CRC32.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    8    1    EterLib
    86    IntelliSense: cannot open source file "../GameLib/GameType.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    9    1    EterLib
    87    IntelliSense: cannot open source file "../GameLib/MapType.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    10    1    EterLib
    88    IntelliSense: cannot open source file "../GameLib/ItemData.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    11    1    EterLib
    89    IntelliSense: cannot open source file "../GameLib/ActorInstance.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    12    1    EterLib
    90    IntelliSense: cannot open source file "ResourceManager.h"    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    16    1    EterLib
    91    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    47    2    EterLib
    92    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    54    2    EterLib
    93    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    61    2    EterLib
    94    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    69    2    EterLib
    95    IntelliSense: incomplete type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    104    2    EterLib
    96    IntelliSense: expected a ';'    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    104    29    EterLib
    97    IntelliSense: identifier "kCreateData" is undefined    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    107    2    EterLib
    98    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    107    24    EterLib
    99    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    111    7    EterLib
    100    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    121    2    EterLib
    101    IntelliSense: identifier "TPixelPosition" is undefined    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    121    33    EterLib
    102    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    122    2    EterLib
    103    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    124    2    EterLib
    104    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    124    20    EterLib
    105    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    125    2    EterLib
    106    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    125    26    EterLib
    107    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    126    2    EterLib
    108    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    127    2    EterLib
    109    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    129    25    EterLib
    110    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    130    34    EterLib
    111    IntelliSense: identifier "CGraphicImage" is undefined    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    142    42    EterLib
    112    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    142    58    EterLib
    113    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    149    2    EterLib
    114    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    150    2    EterLib
    115    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    167    2    EterLib
    116    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    174    2    EterLib
    117    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    189    2    EterLib
    118    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    190    2    EterLib
    119    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    191    2    EterLib
    120    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    200    3    EterLib
    121    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    210    25    EterLib
    122    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    211    25    EterLib
    123    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    212    24    EterLib
    124    IntelliSense: name followed by '::' must be a class or namespace name    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    247    34    EterLib
    125    IntelliSense: pointer to incomplete class type is not allowed    c:\Users\Yiğitcan\Desktop\Binary Src\EterLib\CRenderTarget.cpp    258    2    EterLib
 

PLEASE HELP!

Link to comment
Share on other sites

  • 3 weeks later...

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.