Jump to content

MrQuin

Contributor
  • Posts

    365
  • Joined

  • Days Won

    23
  • Feedback

    0%

Posts posted by MrQuin

  1. First of all this is a guy from an Arabian forum posting topics all around the globe(Take it easy bro !)

    Second of all go easy on your problems use google or the search bar , it is not that hard of a deal

    Finally go at least thank the people in your previous topics so that the topics get closed

     

    Use your brain a little bit in the future :)

  2. Try in instanceBase.cpp to look for :

    if (!SetRace(c_rkCreateData.m_dwRace))

    And see if it is like this :

    #ifdef NEW_PET_SYSTEM
    	if (!SetRace(c_rkCreateData.m_dwRace))
    		return false;
    
    	if(c_rkCreateData.m_dwRace == 34041 || c_rkCreateData.m_dwRace == 34045 || c_rkCreateData.m_dwRace == 34049 || c_rkCreateData.m_dwRace == 34053 || c_rkCreateData.m_dwRace == 34036 || c_rkCreateData.m_dwRace == 34064 || c_rkCreateData.m_dwRace == 34073 || c_rkCreateData.m_dwRace == 34075 || c_rkCreateData.m_dwRace == 34080)
    	{
    		if(c_rkCreateData.m_dwLevel >= 81)
    			SetRace(c_rkCreateData.m_dwRace+1);
    	}
    #else
    	if (!SetRace(c_rkCreateData.m_dwRace))
    		return false;
    #endif

     

    • Love 1
  3. @ClientSource : //IntanceBaseEffect.cpp

    Search for

    void CInstanceBase::UpdateTextTailLevel(DWORD level)

    You'll find : 

    if (IsPC()

    Make it something similiar to :

        if (IsPC() || IsEnemy() || IsStone())
        {
            static D3DXCOLOR s_kLevelColor = D3DXCOLOR(152.0f/255.0f, 255.0f/255.0f, 51.0f/255.0f, 1.0f);
    
            char szText[256];
    		sprintf(szText, "Lv %d", level);
            CPythonTextTail::Instance().AttachLevel(GetVirtualID(), szText, s_kLevelColor);
        }

    Don't know if you have  : IsEnemy() || IsStone()

    But it doesn't matter !

  4. For your problem check InstanceBase.cpp for this :

    #ifdef NEW_PET_SYSTEM
    	if(m_dwRace == 34041 || m_dwRace == 34045 || m_dwRace == 34049 || m_dwRace == 34053 || m_dwRace == 34057 || m_dwRace == 34061 || m_dwRace == 34042 || m_dwRace == 34046 || m_dwRace == 34050 || m_dwRace == 34054 || m_dwRace == 34058 || m_dwRace == 34062 || m_dwRace == 34074 || m_dwRace == 34076 || m_dwRace == 34081)
    	{
    		float scale = c_rkCreateData.m_dwLevel * 0.009f + 0.65f;
    		m_GraphicThingInstance.SetScale(scale, scale, scale, true);
    	}
    #ifdef NEW_PET_SYSTEM
    	if(m_dwRace == 34041 ||m_dwRace == 34045 || m_dwRace == 34049 ||m_dwRace == 34053){
    		float scale = c_rkCreateData.m_dwLevel * 0.005f + 0.75f;
    		m_GraphicThingInstance.SetScaleNew(scale, scale, scale);
    	}
    	else
    		m_GraphicThingInstance.SetScaleNew(1.0f,1.0f,1.0f);
    #endif

     

    • Love 1
  5. 1 hour ago, iMeleys said:

    Hm i get everytime a warning for it. but you are totally right i edit my threads sometimes
    but that is because of my personality (i make faults sometimes) and i dont like if somebody

    can see my faults. its a bit autistic but i hate if somenthing is not perfect i cant post without edit
    somenthing and if i think the solution are not soo important for others i remove it if u know what i mean.
    but thank you anyway. and many threads from me are still avalaible and in future i will take
    care about it.

    PROOF
    (I Like @Raylee but he gives me warnings like others 2)

    c863a1681bdc594309a821de018c98d0.png
     

    Warnings should be public is people want to know wether they are applied or not

    "and i dont like if somebody

    can see my faults"

    It doesn't matter wether you like it or not , people in the future will have your same problem so at least they would fint it here 

    And nobody cares if your problems are stupid or not , Either they'll help or not

  6. 37 minutes ago, Koray said:

    Just use your brain and follow the possible steps;

    Look for the error message you received and see why it made an error

      Reveal hidden contents

    uVtNTW.png

    Look for references that use container's insert function

      Reveal hidden contents

    HO8gUt.png

    Search for references with using the function found

      Reveal hidden contents

    qbI5tc.png

    And you have found whitelisted extensions and as you can see, ".mse" does not exist.

    I don't think anyone needs to show it, I guess it's not hard?

    I am pretty sure this is the easy part he still need to define it and this the hard part but you never shows how anyway

     

×
×
  • 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.