[VS22] v18.3 (Custom + V21 Content)

Page 3 of 15 FirstFirst 123456789101113 ... LastLast
Results 31 to 45 of 220
  1. #31
    Enthusiast SchattenEngel is offline
    MemberRank
    Dec 2021 Join Date
    32Posts

    re: [VS22] v18.2

    Hymu please stop lying.. Mr. one post and new acc,
    ketchup files are the best on the market thats the reason many kids sell this to others^^
    his folder structure and base is the perfect setup, i was fully new but i learned so fast because of his good files!
    no crashes etc. (only from my self if i add new stuff)

  2. #32
    Account Upgraded | Title Enabled! cyucyu is offline
    MemberRank
    Mar 2007 Join Date
    296Posts

    re: [VS22] v18.2

    Windows 10 crashes when starting the game,please help me, thank you!

  3. #33
    Enthusiast Roundness is offline
    MemberRank
    May 2013 Join Date
    45Posts

    re: [VS22] v18.2

    Quote Originally Posted by cyucyu View Post
    Windows 10 crashes when starting the game,please help me, thank you!
    That does not sound like a it has anything to do with the thread. You check your hardware and maybe something with your Windows software.
    Last edited by Roundness; 20-03-22 at 05:53 PM. Reason: My old comment didn't help.

  4. #34
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    re: [VS22] v18.2

    Quote Originally Posted by cyucyu View Post
    Windows 10 crashes when starting the game,please help me, thank you!
    You provide little to no information regarding this and expect help. I don't think any of us are mind readers here so you need to provide some more information regarding the issue. Debug, Error, etc..

    However this sounds more like a driver or directx problem.

  5. #35
    Account Upgraded | Title Enabled! mehoh23 is offline
    MemberRank
    Jan 2014 Join Date
    224Posts

    re: [VS22] v18.2

    Quote Originally Posted by cyucyu View Post
    Windows 10 crashes when starting the game,please help me, thank you!
    im using windows 11 pro 21h2 on this source even on my previous windows 10. and downgrade this source to vs2019 since i dont have internet at this time due to typhon odette. i will back this to vs2022 soon. i don't encounter this issue on my pc.

    in your case maybe you need to install directx9 SDK
    Last edited by mehoh23; 21-03-22 at 02:43 AM. Reason: edit

  6. #36
    Enthusiast forube3 is offline
    MemberRank
    Mar 2022 Join Date
    37Posts

    re: [VS22] v18.2

    Hi, I would like to thank you very much for your great work ????
    Everything works for me, but just a question how to put the game in French?

    Thanks in advance

  7. #37
    Valued Member c2cube is offline
    MemberRank
    Sep 2021 Join Date
    113Posts

    re: [VS22] v18.2

    Quote Originally Posted by forube3 View Post
    Hi, I would like to thank you very much for your great work ????
    Everything works for me, but just a question how to put the game in French?

    Thanks in advance
    I think you need to edit in resource to translate all of the language

  8. #38
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    re: [VS22] v18.2

    Quote Originally Posted by forube3 View Post
    Hi, I would like to thank you very much for your great work ????
    Everything works for me, but just a question how to put the game in French?

    Thanks in advance
    Quote Originally Posted by c2cube View Post
    I think you need to edit in resource to translate all of the language
    This is the best way

  9. #39
    Enthusiast forube3 is offline
    MemberRank
    Mar 2022 Join Date
    37Posts

    re: [VS22] v18.2

    Quote Originally Posted by c2cube View Post
    I think you need to edit in resource to translate all of the language
    Thanks for your answer :)And if I take official resources in French?

  10. #40
    Account Upgraded | Title Enabled! mehoh23 is offline
    MemberRank
    Jan 2014 Join Date
    224Posts

    re: [VS22] v18.2

    asking why the files disable the login channel area.?

  11. #41
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    re: [VS22] v18.2

    Quote Originally Posted by mehoh23 View Post
    asking why the files disable the login channel area.?
    It's part of __SPEEDY_NEUZ you can remove the parts in WndTitle.cpp & WndTitle.h if you wish to do so.

  12. #42
    Valued Member c2cube is offline
    MemberRank
    Sep 2021 Join Date
    113Posts

    re: [VS22] v18.2

    Quote Originally Posted by forube3 View Post
    Thanks for your answer :)And if I take official resources in French?
    I think you can do that, but check everything again before you do this and make sure all you need to use in the right place

  13. #43
    ‎‎‎‎ Ketchup is offline
    ModeratorRank
    Jan 2009 Join Date
    New YorkLocation
    2,847Posts

    re: [VS22] v18.2

    The item tooltip that is to wide can be adjusted safely to 220 without major clipping issues as seen below:



    There are 3 instances of this in tooltip.cpp you must change all 3, the one in BLUE is the number you change.

    Code:
    #if __VER >= 18
    	m_strToolTip.Init( CWndBase::m_Theme.m_pFontText, &CRect( 0, 0, 220, 0 ) );
    #else
    	m_strToolTip.Init( CWndBase::m_Theme.m_pFontText, &CRect( 0, 0, 200, 0 ) );
    #endif
    I will update the source to reflect this sometime next week but you can go ahead and do it now if you want.
    Last edited by Ketchup; 26-03-22 at 05:05 PM.

  14. #44
    Account Upgraded | Title Enabled! mehoh23 is offline
    MemberRank
    Jan 2014 Join Date
    224Posts

    re: [VS22] v18.2

    Quote Originally Posted by Ketchup View Post
    The item tooltip that is to wide can be adjusted safely to 220 without major clipping issues as seen below:



    There are 3 instances of this in tooltip.cpp you must change all 3, the one in BLUE is the number you change.

    Code:
    #if __VER >= 18
        m_strToolTip.Init( CWndBase::m_Theme.m_pFontText, &CRect( 0, 0, 220, 0 ) );
    #else
        m_strToolTip.Init( CWndBase::m_Theme.m_pFontText, &CRect( 0, 0, 200, 0 ) );
    #endif
    I will update the source to reflect this sometime next week but you can go ahead and do it now if you want.
    yea i already fix this since you reply me last week., thanks

  15. #45
    Apprentice jojo56 is offline
    MemberRank
    Mar 2018 Join Date
    5Posts

    re: [VS22] v18.2

    Ranking.sql appears to be missing from the database folder should i execute something else?



Advertisement