Black Map Help Please :D

Results 1 to 12 of 12
  1. #1
    Enthusiast liel2012 is offline
    MemberRank
    Jan 2012 Join Date
    IsraelLocation
    41Posts

    ! Black Map Help Please :D

    Hay Ragezones i have bug on my flyff server map i can't see the map only a black screen btw the problem are not in the Themes i got all working Themes thx for the helpers i uploaded photo for more infromation.

    flyff00028.jpg

    Thx for the Helpers.


  2. #2
    Member cffazot is offline
    MemberRank
    Mar 2012 Join Date
    53Posts

    Re: Black Map Help Please :D

    The path that was specified for the map images in source is probably different to where you're storing these maps in your theme folder. You should make sure they're named correctly too.

    What source are you using?

  3. #3
    Enthusiast firesito is offline
    MemberRank
    May 2012 Join Date
    49Posts

    Re: Black Map Help Please :D

    i have this error too, how can i fix it. i have "Blessed Source"

  4. #4
    Scientia sit potentia Worf is offline
    MemberRank
    Mar 2009 Join Date
    Near the starsLocation
    492Posts

    Re: Black Map Help Please :D

    make sure the right file are on the right place. Please check path.cpp for more info.

  5. #5
    Enthusiast firesito is offline
    MemberRank
    May 2012 Join Date
    49Posts

    Re: Black Map Help Please :D

    look, is the default the erro?

    case LANG_KOR:
    strFullPath += "Korean\\";
    break;
    case LANG_ENG:
    strFullPath += "English\\";
    break;
    case LANG_JAP:
    strFullPath += "Japanese\\";
    break;
    case LANG_CHI:
    strFullPath += "Chinese\\";
    break;
    case LANG_THA:
    strFullPath += "Thailand\\";
    break;
    case LANG_TWN:
    case LANG_HK:
    strFullPath += "Taiwan\\";
    break;
    case LANG_VTN:
    strFullPath += "Vietnam\\";
    break;
    case LANG_RUS:
    strFullPath += "Russian\\";
    break;
    default:
    AfxMessageBox( "unknown language setting" );
    break;

  6. #6
    Not working on UnitedFlyf Mootie is offline
    MemberRank
    Apr 2009 Join Date
    1,589Posts

    Re: Black Map Help Please :D

    Good sir, I have fixed your problem...




  7. #7
    Account Upgraded | Title Enabled! KrYpT0n is offline
    MemberRank
    Dec 2010 Join Date
    MasqueradeLocation
    205Posts

    Re: Black Map Help Please :D

    Gr8 success!!
    Last edited by KrYpT0n; 31-03-13 at 06:18 AM.

  8. #8
    Enthusiast liel2012 is offline
    MemberRank
    Jan 2012 Join Date
    IsraelLocation
    41Posts

    Re: Black Map Help Please :D

    Quote Originally Posted by Worf View Post
    make sure the right file are on the right place. Please check path.cpp for more info.
    what should i do when i open the path.cpp ? what i need to seatch or change.. ? btw thx for the help.

  9. #9
    Enthusiast liel2012 is offline
    MemberRank
    Jan 2012 Join Date
    IsraelLocation
    41Posts

    Re: Black Map Help Please :D

    Its my Path.cpp what should i edit?
    // Neuz.cpp : Defines the entry point for the application.
    //
    #include "stdafx.h"
    #include "..\_UnhandledException\ExceptionHandler.h"
    #include "lang.h"

    #ifdef __LANG_1013
    #include "langman.h"
    #endif // __LANG_1013

    /*
    static TCHAR g_szResourcePath[ MAX_PATH ];

    void SetResourcePath()
    {
    DWORD dwRet = ::GetCurrentDirectory( MAX_PATH, g_szResourcePath );
    if( dwRet == 0 )
    {
    LPCTSTR szErr = Error( "SetResourcePath : ¿¡·¯ %08x", GetLastError() );
    ADDERRORMSG( szErr );
    }
    _tcscat( g_szResourcePath, "\\" );
    }
    LPCTSTR GetResourcePath()
    {
    return g_szResourcePath;
    }

    CString MakePath( LPCTSTR lpszFileName )
    {
    CString strFullPath;
    strFullPath += lpszFileName;
    return strFullPath;
    }
    */
    void MakePath( CString& strFullPath, LPCTSTR lpszDirName, LPCTSTR lpszFileName )
    {
    strFullPath = lpszDirName;
    strFullPath += lpszDirName;
    strFullPath += lpszFileName;
    }

    CString MakePath( LPCTSTR lpDir, DWORD dwLan, LPCTSTR lpFile )
    {
    CString strFullPath( lpDir );

    #ifdef __LANG_1013
    strFullPath += CLangMan::GetInstance()->GetLangData( dwLan )->szPath;
    #else // __LANG_1013
    switch( dwLan )
    {
    case LANG_KOR:
    strFullPath += "Korean\\";
    break;
    case LANG_ENG:
    strFullPath += "English\\";
    break;
    case LANG_JAP:
    strFullPath += "Japanese\\";
    break;
    case LANG_CHI:
    strFullPath += "Chinese\\";
    break;
    case LANG_THA:
    strFullPath += "Thailand\\";
    break;
    case LANG_TWN:
    case LANG_HK:
    strFullPath += "Taiwan\\";
    break;
    case LANG_VTN:
    strFullPath += "Vietnam\\";
    break;
    case LANG_RUS:
    strFullPath += "Russian\\";
    break;
    default:
    AfxMessageBox( "unknown language setting" );
    break;
    }
    #endif // __LANG_1013

    strFullPath += lpFile;
    return strFullPath;
    }


    CString MakePath( LPCTSTR lpszDirName, LPCTSTR lpszFileName )
    {
    CString strFullPath( lpszDirName );
    strFullPath += lpszFileName;
    return strFullPath;
    }

    void MakePath( TCHAR* lpszFullPath, LPCTSTR lpszDirName, LPCTSTR lpszFileName )
    {
    _tcscpy( lpszFullPath, lpszDirName );
    _tcscat( lpszFullPath, lpszFileName );
    }

  10. #10
    Owner raventh1984 is offline
    MemberRank
    May 2011 Join Date
    NetherlandsLocation
    1,499Posts

    Re: Black Map Help Please :D

    Check this one its for the Maps

    Worldmap.cpp

    Look for this

    m_mapView.insert( multimap< CString, vector<CPoint> >::value_type( "Darkon3", vecMap ) );

    underneath it you must see something like this

    Spoiler:

    m_strMapStringList[0] = "WORLD_Flyff.dds";
    m_strMapStringList[1] = "WORLD_Darkon12.dds";
    m_strMapStringList[2] = "WORLD_Darkon3.dds";
    m_strMapStringList[3] = "WORLD_Ricis.dds";
    m_strMapStringList[4] = "WORLD_Saint.dds";
    m_strMapStringList[5] = "WORLD_Flaris.dds";


    And make sure you have those .dds files in your Client/Theme/English folder

  11. #11
    Enthusiast liel2012 is offline
    MemberRank
    Jan 2012 Join Date
    IsraelLocation
    41Posts

    Re: Black Map Help Please :D

    Yeah i got all those map are still not working please some one help me.
    Quote Originally Posted by raventh1984 View Post
    Check this one its for the Maps

    Worldmap.cpp

    Look for this

    m_mapView.insert( multimap< CString, vector<CPoint> >::value_type( "Darkon3", vecMap ) );

    underneath it you must see something like this

    Spoiler:

    m_strMapStringList[0] = "WORLD_Flyff.dds";
    m_strMapStringList[1] = "WORLD_Darkon12.dds";
    m_strMapStringList[2] = "WORLD_Darkon3.dds";
    m_strMapStringList[3] = "WORLD_Ricis.dds";
    m_strMapStringList[4] = "WORLD_Saint.dds";
    m_strMapStringList[5] = "WORLD_Flaris.dds";


    And make sure you have those .dds files in your Client/Theme/English folder

  12. #12
    Enthusiast firesito is offline
    MemberRank
    May 2012 Join Date
    49Posts

    Re: Black Map Help Please :D

    i can't even select the map that i wanna see... what could be the problem, please help



Advertisement