How to show ID

Results 1 to 5 of 5
  1. #1
    Apprentice Einhander12345 is offline
    MemberRank
    Sep 2015 Join Date
    intestineLocation
    20Posts

    How to show ID

    I see some server when they put the curser on the item the ID will show


  2. #2
    Enthusiast Ketchup is offline
    MemberRank
    Jan 2009 Join Date
    25Posts

    Re: How to show ID

    Quote Originally Posted by Einhander12345 View Post
    I see some server when they put the curser on the item the ID will show
    Code:
    void CWndMgr::PutItemAbilityPiercing( CItemElem* pItemElem, CEditString* pEdit, DWORD dwColorBuf )
    {
    	CString strTemp;
    	if( pItemElem->GetAbilityOption() )
    	{
    		strTemp.Format( " %+d", pItemElem->GetAbilityOption() );
    		pEdit->AddString( strTemp, dwColorBuf, ESSTY_BOLD );
    	}
    	
    	int nCount = 0;
    	for( int j = 0; j < pItemElem->GetPiercingSize(); j++ )
    	{
    		if( pItemElem->GetPiercingItem( j ) != 0 )
    			nCount++;
    	}
    #if __VER >= 11 // __MA_VER11_05	// Äɸ¯ÅÍ ºÀÀÎ °Å·¡ ±â´É world,database,neuz
    	if( pItemElem->GetPiercingSize() > 0 && pItemElem->m_dwItemId != II_SYS_SYS_SCR_SEALCHARACTER )
    #else	// __MA_VER11_05	// Äɸ¯ÅÍ ºÀÀÎ °Å·¡ ±â´É world,database,neuz
    	if( pItemElem->GetPiercingSize() > 0 )
    #endif // __MA_VER11_05	// Äɸ¯ÅÍ ºÀÀÎ °Å·¡ ±â´É world,database,neuz
    	{
    		strTemp.Format( "    (%d/%d)", nCount, pItemElem->GetPiercingSize() );
    		pEdit->AddString( strTemp, dwItemColor[g_Option.m_nToolTipText].dwPiercing );
    	}
    #ifdef __STAFF_ITEM_ID_TOOLTIP
    	if (g_pPlayer->IsAuthHigher(AUTH_GAMEMASTER))
    	{
    		CString tmp;
    		ItemProp* pProp = pItemElem->GetProp();
    		tmp.Format("\nItem-ID: %d", pProp->dwID);
    		pEdit->AddString(tmp, dwColorBuf);
    	}
    #endif

  3. #3
    Apprentice Einhander12345 is offline
    MemberRank
    Sep 2015 Join Date
    intestineLocation
    20Posts

    Re: How to show ID

    thanks where should i put it

  4. #4
    Cya Groxy101 is offline
    MemberRank
    Apr 2010 Join Date
    419Posts

    Re: How to show ID

    Somewhere where the sun don't shine.

    CWndMgr::PutItemAbilityPiercing

  5. #5
    Enthusiast Ketchup is offline
    MemberRank
    Jan 2009 Join Date
    25Posts

    Re: How to show ID

    Quote Originally Posted by Einhander12345 View Post
    thanks where should i put it
    The function is clearly visible in my post lol.



Advertisement