Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Development] Source Mu Main 1.03.35 [Season 5.1 - Season 5.2]

Newbie Spellweaver
Joined
Sep 12, 2022
Messages
23
Reaction score
1
ru'he
Just stop copy pasting pieces of code and try to understand better how the UIMng works.
You have to register the new interface in the m_pNewUIMng because ShowInterface method works for only registered UI windows.
How to register? Please let me know
 
Banned
Banned
Joined
Feb 8, 2015
Messages
108
Reaction score
19


Simple helper for main


dsw_pool - [Development] Source Mu Main 1.03.35 [Season 5.1 - Season 5.2] - RaGEZONE Forums
 
Junior Spellweaver
Joined
Nov 4, 2010
Messages
184
Reaction score
110
can't you see that this is a development section? Not a "flex section". If you don't have any plans to contribute to the project but only share videos/screenshots of your private work and trying to sell it for $5 - please better stop that
 
Banned
Banned
Joined
Feb 8, 2015
Messages
108
Reaction score
19
Do not sell server files. Do not hint that you MAY sell server files. Any suspicion from now of selling through RaGEZONE will be met with a swift ban.
can't you see that this is a development section? Not a "flex section". If you don't have any plans to contribute to the project but only share videos/screenshots of your private work and trying to sell it for $5 - please better stop that
stay with us, 5$ is for breakfast only, so don't tell me I'm selling 5$. I can't drink water to live forever. and my computer is not running on 02
 
Last edited:
Banned
Banned
Joined
Feb 8, 2015
Messages
108
Reaction score
19
can't you see that this is a development section? Not a "flex section". If you don't have any plans to contribute to the project but only share videos/screenshots of your private work and trying to sell it for $5 - please better stop that
Yes, this is the development section and i’m developing it. I can do it doesn’t mean that i “must” share it. You can take my idea and implement it yourself. I contribute to this project by sharing that we can do these features with current code, if you have enough ability to do it you can take my idea, it’s free.
 
Newbie Spellweaver
Joined
Nov 17, 2016
Messages
15
Reaction score
20
Yes, this is the development section and i’m developing it. I can do it doesn’t mean that i “must” share it. You can take my idea and implement it yourself. I contribute to this project by sharing that we can do these features with current code, if you have enough ability to do it you can take my idea, it’s free.

Do not confuse, you are not contributing anything. You are simply showing off your developments and trying to justify why you are posting it here when it really does not help anyone to see what someone else did. And less with mediocre ideas that we already saw everywhere. Like the postitem, the emojis, modified interfaces, etc.
If you really want to contribute, help improve the source code and post optimizations, don't show off your developments with images as that only benefits you.
 
Newbie Spellweaver
Joined
Oct 14, 2008
Messages
85
Reaction score
100
I think it's great to see people showing off their results. It gave me a few more ideas, as well as seeing the community grow.
 
Joined
Nov 14, 2001
Messages
29,440
Reaction score
21,659
stay with us, 5$ is for breakfast only, so don't tell me I'm selling 5$. I can't drink water to live forever. and my computer is not running on 02
I cannot judge the comments too well but I've left a warning.

Do not sell server files. Do not hint that you MAY sell server files. Any suspicion from now of selling through RaGEZONE will be met with a swift ban.
 
Banned
Banned
Joined
Feb 8, 2015
Messages
108
Reaction score
19
I cannot judge the comments too well but I've left a warning.
hi, i don't intend to sell sv files here. The other guy said I'm trying to sell for $5. People say I only share photos and don't contribute anything. i say i'm a dev and i just share the idea, for me 5$ is very small.
 
Banned
Banned
Joined
Feb 8, 2015
Messages
108
Reaction score
19
I make muhelper 100% code success not coppy webzen


C++:
void CLoginWin::Create()
{
    CWin::Create(329, 245, BITMAP_LOG_IN + 7);

    m_asprInputBox[LIW_ACCOUNT].Create(156, 23, BITMAP_LOG_IN + 8);
    m_asprInputBox[LIW_PASSWORD].Create(156, 23, BITMAP_LOG_IN + 8);

    for (int i = 0; i < 2; ++i)
    {
        m_aBtn[i].Create(54, 30, BITMAP_BUTTON + i, 3, 2, 1);
        CWin::RegisterButton(&m_aBtn[i]);
    }

    char Acc[32], Pass[32];
    GetPrivateProfileString("AutoLogin", "User", "", Acc, 32, ".\\config.ini");
    GetPrivateProfileString("AutoLogin", "Password", "", Pass, 32, ".\\config.ini");

    SAFE_DELETE(m_pIDInputBox);

    m_pIDInputBox = new CUITextInputBox;
    m_pIDInputBox->Init(g_hWnd, 140, 14, MAX_ID_SIZE);
    m_pIDInputBox->SetBackColor(0, 0, 0, 255);
    m_pIDInputBox->SetTextColor(255, 255, 230, 210);
    m_pIDInputBox->SetFont(g_hFixFont);
    m_pIDInputBox->SetState(UISTATE_NORMAL);
    m_pIDInputBox->SetText(Acc);

    SAFE_DELETE(m_pPassInputBox);

    m_pPassInputBox = new CUITextInputBox;
    m_pPassInputBox->Init(g_hWnd, 140, 14, MAX_PASSWORD_SIZE, TRUE);
    m_pPassInputBox->SetBackColor(0, 0, 0, 25);
    m_pPassInputBox->SetTextColor(255, 255, 230, 210);
    m_pPassInputBox->SetFont(g_hFixFont);
    m_pPassInputBox->SetState(UISTATE_NORMAL);
    m_pPassInputBox->SetText(Pass);

    m_pIDInputBox->SetTabTarget(m_pPassInputBox);
    m_pPassInputBox->SetTabTarget(m_pIDInputBox);

    this->FirstLoad = 1;
}
save acc pass
 
Last edited:
RaGEZONER Since 2004
Loyal Member
Joined
Jul 18, 2004
Messages
1,130
Reaction score
380
I make muhelper 100% code success not coppy webzen


C++:
void CLoginWin::Create()
{
    CWin::Create(329, 245, BITMAP_LOG_IN + 7);

    m_asprInputBox[LIW_ACCOUNT].Create(156, 23, BITMAP_LOG_IN + 8);
    m_asprInputBox[LIW_PASSWORD].Create(156, 23, BITMAP_LOG_IN + 8);

    for (int i = 0; i < 2; ++i)
    {
        m_aBtn[i].Create(54, 30, BITMAP_BUTTON + i, 3, 2, 1);
        CWin::RegisterButton(&m_aBtn[i]);
    }

    char Acc[32], Pass[32];
    GetPrivateProfileString("AutoLogin", "User", "", Acc, 32, ".\\config.ini");
    GetPrivateProfileString("AutoLogin", "Password", "", Pass, 32, ".\\config.ini");

    SAFE_DELETE(m_pIDInputBox);

    m_pIDInputBox = new CUITextInputBox;
    m_pIDInputBox->Init(g_hWnd, 140, 14, MAX_ID_SIZE);
    m_pIDInputBox->SetBackColor(0, 0, 0, 255);
    m_pIDInputBox->SetTextColor(255, 255, 230, 210);
    m_pIDInputBox->SetFont(g_hFixFont);
    m_pIDInputBox->SetState(UISTATE_NORMAL);
    m_pIDInputBox->SetText(Acc);

    SAFE_DELETE(m_pPassInputBox);

    m_pPassInputBox = new CUITextInputBox;
    m_pPassInputBox->Init(g_hWnd, 140, 14, MAX_PASSWORD_SIZE, TRUE);
    m_pPassInputBox->SetBackColor(0, 0, 0, 25);
    m_pPassInputBox->SetTextColor(255, 255, 230, 210);
    m_pPassInputBox->SetFont(g_hFixFont);
    m_pPassInputBox->SetState(UISTATE_NORMAL);
    m_pPassInputBox->SetText(Pass);

    m_pIDInputBox->SetTabTarget(m_pPassInputBox);
    m_pPassInputBox->SetTabTarget(m_pIDInputBox);

    this->FirstLoad = 1;
}
save acc pass

This is great implementation, keep up the good work mate!
 
NN - Nord & Noob
Loyal Member
Joined
Jul 15, 2004
Messages
1,207
Reaction score
689
hi, i don't intend to sell sv files here. The other guy said I'm trying to sell for $5. People say I only share photos and don't contribute anything. i say i'm a dev and i just share the idea, for me 5$ is very small.
U contribute a idea, what the fak?!!! whqt`s wrong with u?... Contribute a IDEA? What the fak!!
 
Junior Spellweaver
Joined
Jan 24, 2012
Messages
168
Reaction score
88
Hmm, how actual to convert it to the latest ver. of visual studio (and C/C++ lang also). I've got a time for it if needed huh
 
Back
Top