How to remove this "6" in the Q potion slot

Results 1 to 14 of 14
  1. #1
    Proficient Member ironman2002 is offline
    MemberRank
    Jan 2009 Join Date
    175Posts

    How to remove this "6" in the Q potion slot



  2. #2
    Account Upgraded | Title Enabled! Frozenn is offline
    MemberRank
    Aug 2016 Join Date
    PerfLogsLocation
    273Posts

    Re: How to remove this "6" in the Q potion slot

    Search "EMACTIONQUICK_SIZE = 12" and make it "EMACTIONQUICK_SIZE = 6"

  3. #3
    Proficient Member ironman2002 is offline
    MemberRank
    Jan 2009 Join Date
    175Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by Frozenn View Post
    Search "EMACTIONQUICK_SIZE = 12" and make it "EMACTIONQUICK_SIZE = 6"
    this will fix the quick slots but it will have aproblem with the adding of potion items in the autosystem auto potion.

    - - - Updated - - -

    Quote Originally Posted by Frozenn View Post
    Search "EMACTIONQUICK_SIZE = 12" and make it "EMACTIONQUICK_SIZE = 6"
    this will fix the quick slots but it will have aproblem with the adding of potion items in the autosystem auto potion.

  4. #4
    Chinese Developer baby011528 is online now
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: How to remove this "6" in the Q potion slot

    in basicpotiontray.cpp

    search [void CBasicPotionTray::CreateSubControl ()]

    in here , i will use juver code for example.

    Code:
    	for ( int i = 0; i < EMACTIONQUICK_SIZE; i++ )
    	{
    		CString strKeyword;
    		strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
    		CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
    		pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
    		pSlot->CreateSubControl ( i );
    		RegisterControl ( pSlot );
    		m_pSlot[i] = pSlot;
    	}
    change to

    Code:
    	for ( int i = 0; i < EMACTIONQUICK_SIZE - 6; i++ )
    	{
    		CString strKeyword;
    		strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
    		CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
    		pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
    		pSlot->CreateSubControl ( i );
    		RegisterControl ( pSlot );
    		m_pSlot[i] = pSlot;
    	}
    and your problem will fixed.

  5. #5
    #RANISLIFE rcanary is offline
    MemberRank
    Feb 2018 Join Date
    209Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by baby011528 View Post
    in basicpotiontray.cpp

    search [void CBasicPotionTray::CreateSubControl ()]

    in here , i will use juver code for example.

    Code:
        for ( int i = 0; i < EMACTIONQUICK_SIZE; i++ )
        {
            CString strKeyword;
            strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
            CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
            pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
            pSlot->CreateSubControl ( i );
            RegisterControl ( pSlot );
            m_pSlot[i] = pSlot;
        }
    change to

    Code:
        for ( int i = 0; i < EMACTIONQUICK_SIZE - 6; i++ )
        {
            CString strKeyword;
            strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
            CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
            pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
            pSlot->CreateSubControl ( i );
            RegisterControl ( pSlot );
            m_pSlot[i] = pSlot;
        }
    and your problem will fixed.
    Thank you


  6. #6
    Chinese Developer baby011528 is online now
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by rcanary View Post
    Thank you

    welcome sir.

  7. #7
    #RANISLIFE rcanary is offline
    MemberRank
    Feb 2018 Join Date
    209Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by baby011528 View Post
    welcome sir.
    can i ask if in what source part does the CP bar on the lower part of the EXP located?
    my texture gui is complete, how ever CP bar doesn't appeared.

    thank you.


  8. #8
    Chinese Developer baby011528 is online now
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by rcanary View Post
    can i ask if in what source part does the CP bar on the lower part of the EXP located?
    my texture gui is complete, how ever CP bar doesn't appeared.

    thank you.

    check code in [basicinfoview.cpp]

    if in juver source, its have a function on/off in config.ini
    double check it.
    bFeatureDisplayCP

  9. #9
    #RANISLIFE rcanary is offline
    MemberRank
    Feb 2018 Join Date
    209Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by baby011528 View Post
    check code in [basicinfoview.cpp]

    if in juver source, its have a function on/off in config.ini
    double check it.
    bFeatureDisplayCP
    thank you for the information, i will check this. Yes, on Juver Source Based

  10. #10
    Chinese Developer baby011528 is online now
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by rcanary View Post
    thank you for the information, i will check this. Yes, on Juver Source Based
    welcome, as your word.
    its just a information.
    we learn here , help here too.

  11. #11
    Proficient Member ironman2002 is offline
    MemberRank
    Jan 2009 Join Date
    175Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by baby011528 View Post
    in basicpotiontray.cpp

    search [void CBasicPotionTray::CreateSubControl ()]

    in here , i will use juver code for example.

    Code:
    	for ( int i = 0; i < EMACTIONQUICK_SIZE; i++ )
    	{
    		CString strKeyword;
    		strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
    		CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
    		pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
    		pSlot->CreateSubControl ( i );
    		RegisterControl ( pSlot );
    		m_pSlot[i] = pSlot;
    	}
    change to

    Code:
    	for ( int i = 0; i < EMACTIONQUICK_SIZE - 6; i++ )
    	{
    		CString strKeyword;
    		strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
    		CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
    		pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
    		pSlot->CreateSubControl ( i );
    		RegisterControl ( pSlot );
    		m_pSlot[i] = pSlot;
    	}
    and your problem will fixed.
    Thank you bro.
    I appreciate your time for replying on my query.

  12. #12
    Chinese Developer baby011528 is online now
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: How to remove this "6" in the Q potion slot

    Quote Originally Posted by ironman2002 View Post
    Thank you bro.
    I appreciate your time for replying on my query.
    you're welcome.

  13. #13
    Apprentice dua is offline
    MemberRank
    Mar 2022 Join Date
    9Posts

    sir cant help me

    Quote Originally Posted by baby011528 View Post
    in basicpotiontray.cpp

    search [void CBasicPotionTray::CreateSubControl ()]

    in here , i will use juver code for example.

    Code:
        for ( int i = 0; i < EMACTIONQUICK_SIZE; i++ )
        {
            CString strKeyword;
            strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
            CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
            pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
            pSlot->CreateSubControl ( i );
            RegisterControl ( pSlot );
            m_pSlot[i] = pSlot;
        }
    change to

    Code:
        for ( int i = 0; i < EMACTIONQUICK_SIZE - 6; i++ )
        {
            CString strKeyword;
            strKeyword.Format ( "BASIC_QUICK_POTION_TRAY_SLOT%d", i );
    
            CBasicQuickPotionSlotEx* pSlot = new CBasicQuickPotionSlotEx;
            pSlot->CreateSub ( this, strKeyword.GetString(), UI_FLAG_DEFAULT, QUICK_POTION_SLOT0 + i );
            pSlot->CreateSubControl ( i );
            RegisterControl ( pSlot );
            m_pSlot[i] = pSlot;
        }
    and your problem will fixed.

    https://imgur.com/a/HgCOF1i


    sir i have follow tutor you

    but still bugs on potion

    thanks


    https://imgur.com/lgcc5XE

  14. #14
    Apprentice qaz3834077 is offline
    MemberRank
    Mar 2018 Join Date
    13Posts
    Quote Originally Posted by baby011528 View Post
    檢查 [basicinfoview.cpp] 中的代碼,

    如果在 juver 源中,它在 config.ini 中有一個打開/關閉功能,請
    仔細檢查它。
    bfeaturedisplaycp
    qwe怎麼禁止要水但是開卡放在qwe

    已解決
    Last edited by qaz3834077; 4 Weeks Ago at 08:53 AM.



Advertisement