|
You last visited: Today at 12:09
Advertisement
Help for this problem please
Discussion on Help for this problem please within the Flyff Private Server forum part of the Flyff category.
09/20/2014, 23:17
|
#1
|
elite*gold: 0
Join Date: Sep 2014
Posts: 16
Received Thanks: 0
|
Help for this problem please
Hi, i'm with this problem :
|
|
|
09/20/2014, 23:56
|
#2
|
elite*gold: 23
Join Date: Dec 2010
Posts: 743
Received Thanks: 617
|
Wow awesome, kage bunshin no jutsu, you can give me the code?
|
|
|
09/21/2014, 16:16
|
#3
|
ベトナム警察
elite*gold: 0
Join Date: Jan 2012
Posts: 16,498
Received Thanks: 3,525
|
I've never seen this error in all of my flyff experience. Can you explain us more?
|
|
|
09/21/2014, 23:08
|
#4
|
elite*gold: 0
Join Date: Sep 2014
Posts: 16
Received Thanks: 0
|
well, I found some files that were here on the computer, when I called all the char server logs that appear all over the map
|
|
|
09/21/2014, 23:40
|
#5
|
elite*gold: 0
Join Date: Aug 2014
Posts: 113
Received Thanks: 36
|
Its a problem with saisons tree you can fix it here :
Go to 8_neuz/DPClient.cpp
Search for :
Quote:
if( pModelElem )
{
if( _tcsicmp(pModelElem->m_szName, "MaCoPrTr01") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr03") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr10") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr20") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr14") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr11") == 0 )
{
pModelElem->m_fScale = 1.0f;
if( CEnvironment::GetInstance()->GetSeason() == SEASON_SPRING )
{
_tcscpy( pModelElem->m_szName, "MaCoPrTr16" );
}
else if( CEnvironment::GetInstance()->GetSeason() == SEASON_FALL )
{
_tcscpy( pModelElem->m_szName, "MapleTree01" );
}
}
else if( _tcsicmp(pModelElem->m_szName, "MaCoPrTr04") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr05") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr12") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr15") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr13") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr02") == 0 )
{
pModelElem->m_fScale = 1.0f;
if( CEnvironment::GetInstance()->GetSeason() == SEASON_SPRING )
{
_tcscpy( pModelElem->m_szName, "MaCoPrTr17" );
}
else if( CEnvironment::GetInstance()->GetSeason() == SEASON_FALL )
{
_tcscpy( pModelElem->m_szName, "MapleTree02" );
}
}
}
|
Remplace with :
Quote:
if( pModelElem )
{
if( _tcsicmp(pModelElem->m_szName, "MaCoPrTr01") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr03") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr10") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr20") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr14") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr11") == 0 )
{
pModelElem->m_fScale = 1.0f;
if( CEnvironment::GetInstance()->GetSeason() == SEASON_SPRING )
{
_tcscpy( pModelElem->m_szName, "DarkRartesiaTree01" );
}
else if( CEnvironment::GetInstance()->GetSeason() == SEASON_FALL )
{
_tcscpy( pModelElem->m_szName, "DarkRartesiaTree02" );
}
}
else if( _tcsicmp(pModelElem->m_szName, "MaCoPrTr04") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr05") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr12") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr15") == 0 ||
_tcsicmp(pModelElem->m_szName, "MaCoPrTr13") == 0 || _tcsicmp(pModelElem->m_szName, "MaCoPrTr02") == 0 )
{
pModelElem->m_fScale = 1.0f;
if( CEnvironment::GetInstance()->GetSeason() == SEASON_SPRING )
{
_tcscpy( pModelElem->m_szName, "DarkRartesiaTree03" );
}
else if( CEnvironment::GetInstance()->GetSeason() == SEASON_FALL )
{
_tcscpy( pModelElem->m_szName, "DarkRartesiaTree04_01" );
}
}
}
|
"DarkRartesiaTree" is the name of the new tree model , you can change it.
|
|
|
09/22/2014, 04:22
|
#6
|
elite*gold: 0
Join Date: Jan 2014
Posts: 187
Received Thanks: 157
|
xMeher, correct.
#define _sakura
I think.
|
|
|
09/22/2014, 06:11
|
#7
|
elite*gold: 0
Join Date: Sep 2014
Posts: 16
Received Thanks: 0
|
when i go compile the source, shows this error :
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.Cp pCommon.targets(1126,5): error MSB6006: "fxc.exe" exited with code 1.
i'm using visual studio 2013
|
|
|
09/22/2014, 20:18
|
#8
|
elite*gold: 0
Join Date: Aug 2014
Posts: 113
Received Thanks: 36
|
Quote:
Originally Posted by dodoa66
when i go compile the source, shows this error :
C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\Microsoft.Cp pCommon.targets(1126,5): error MSB6006: "fxc.exe" exited with code 1.
i'm using visual studio 2013
|
You are using a source that was made with 2003 and you are upgrading it to 2013. You need to upgrade it manually because there's a lot of changes from 2003 to 2013 , you can take a look at Sedrika's v15 clean source with 2012
to see what you need to change and what you dont.
|
|
|
All times are GMT +1. The time now is 12:10.
|
|