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

Joined
May 26, 2009
Messages
17,308
Reaction score
3,219
Alright lets clear some things up, to those who feel like they have to proove something and bring trouble and competition, what's there to win?
Trust me nothing, but sad and selfish vibes.

2 Odisk like to be smart around? i know you love Kiosani i know i know, you guys are the best buddies and support each other, thats amazing and good for you but please don't bring my name and complain about 'approving threads'. Another moderator already wrote earlier in this topic if you have complains what to do and where to go and report it, so respect that.

3. We are a small moderating team in the whole forum, but you dont care to realise that and think everything will be done in a jiffy? you think we Moderators don't have private life and our schedules? chill out please and do the right thing if you believe there is something wrong with the moderating team. You know that i sent you already PM's and explanation but of course you didnt care say nothing but bring your complaints here. Kudos to you.

4. I know there some users who are trying hard to bring moderators down, how silly of you and Kiosani for example? That's what we became as community? bragging around and talking bad about moderators? Well, Bravo. Kiosani knows exactly how selfish he is with whatever work he is doing here in this forum and outside the forum, so please keep that to your self if you having a bad day. We should be friendly and help each other here and not brag around and point fingers and judge around.

Plus, yes you should open your own thread and start posting there instead of posting unrelated things that don't connect with this topic here but guess what? we still give you a chance and don't mind it so you can feel abit happy about your work and maybe it will benefit someone, but with that attitude there is zero value.

Remember there is a limit for everything, feel free to show off whatever you want, but stop judging Moderators and each other (read the rules again of the forum) and stop acting like you are the center of the world, we either mastermind and work together or keep it silent, you like to compete with others and try to be better? you might want to stop comparing your self with others, its 2021 and its not a competition, and that is never going to be the right approach and that is exactly why mu users like to keep everything to their selfs, why dont you instead professionaly start serving mu administrators (who really want help) with your products or services ?

'i worked hard, Its mine code, i found it first, its my idea, this and that..' is this friendly at all ? i dont think so.

Be happy for each other and be proud and cherish each others and alot of nice things will happen, that is a big wish and dream for many users on this forum.

Thanks for understanding, let's hope this message motivates you to think before you post a reply.
 
Experienced Elementalist
Joined
Apr 2, 2009
Messages
223
Reaction score
57

I know who is kiosani but also as well as I know you I also know him that means nothing only that here they take everything like making fun of others, I know that kiosani must have a problem but I do not judge each head is a different world. but the issue of moderation waiting more than a week for approval of a topic no one has time, is as who says it is what suits everyone. I know that here we all have a life like you and me, but I respect what you say, that's why you are here, isn't it?

and if they mention anything, I'm just going to eat it.
 
Joined
Oct 29, 2007
Messages
1,290
Reaction score
1,310
hello again, Here is my contribute to this project, decompiled InGameShop libraries


Wow good job bro ! thank you very much... I only have 1 question about it... Is in really necesary use: "InGameShop System" on client instead of: "CashShop" (PartChargeShop System) ?? because... at least (only with X-Team base GameServer Source is a problem)... since using: "Webzen GameServer Sources 1.00.87/1.00.93" is possible use the old system too.
 
Joined
May 26, 2009
Messages
17,308
Reaction score
3,219

feel free to PM a moderator at any time and ask to approve a thread faster if you want it faster approved, u can even PM a moderator before you even post the thread and say it in advance. Main point if a thread was posted with the same exact content and files link and then someone else posted it again the one who posted the topic first will get their thread approved, it's just as fair as it sounds, and we should keep things into 1 place.

we know exactly what will happen when we post something in the forum, but sometimes it comes out disrespectful and unfriendly towards each other, from now on i ask to keep this private through private messaging and if someone has an issue PM a Moderator or a Supervisor so we can keep the topics healthier.

Best of luck to everyone and happy Saturday
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12

Original 1.00.97/.98 Season 5.2 Chs MuServer Webzen:


DataServer:
07:30:40a exec WZ_CreateCharacter_GetVersion07:30:40a (2) SQLSTATE:42000, Diagnosis:[Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'WZ_CreateCharacter_GetVersion'.

Should i use another version for this? Database is not full or what
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Oct 4, 2007
Messages
173
Reaction score
74
Database lacks procedure 'WZ_CreateCharacter_GetVersion'
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12
Database lacks procedure 'WZ_CreateCharacter_GetVersion'

Well, i can see it definitely there. It might be empty. How do i fix this?

Solved: Re-added ODBC
 
Last edited:
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12
#ifdef APPLY_SERVER_UTIL_20040504

Code:
FindFirstFile( "..\\data\\commonserver.cfg", &wfd )



Seriously How to bypass this M: drive poop in source?

Im using Kiosani's "6.3" from this topic.

GS stops working
Sam3000 Kiosani
 
Junior Spellweaver
Joined
Oct 4, 2007
Messages
173
Reaction score
74
Find void GameMainInit(HWND hWnd) in Gamemain.cpp
Code:
...
#if (LOCALCONNECT == 0 )
    gDirPath.SetFirstPath("M:\\");
#endif
...


Find int APIENTRY WinMain in GameServer.cpp
Code:
...
#ifdef APPLY_SERVER_UTIL_20040504
    #if TESTSERVER == 0
        #ifndef LOCAL_DATATEST
        if( gLanguage == 0 )
        {
            WIN32_FIND_DATA  wfd;
            if( INVALID_HANDLE_VALUE == FindFirstFile( "M:\\commonserver.cfg", &wfd ) )
            {
                MessageBox(NULL, "Cannot find M:\\ Drive.", "Error", MB_OK | MB_ICONERROR);
                return FALSE;
            }
        }
        #endif
    #endif
#endif
...

Then change this or change CONSTs in define.h
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12

Code:
#if (LOCALCONNECT == 0 )
gDirPath.SetFirstPath("..\\");
#endif

Code:
#ifdef APPLY_SERVER_UTIL_20040504
#if TESTSERVER == 0
 #ifndef LOCAL_DATATEST
 if( gLanguage == 0 )
 {
WIN32_FIND_DATA  wfd;
     if( INVALID_HANDLE_VALUE == FindFirstFile( "..\\data\\commonserver.cfg", &wfd ) )
     {
  MessageBox(NULL, "Cannot find M:\\ Drive.", "Error", MB_OK | MB_ICONERROR);
  return FALSE;
     }
 }
 #endif
    #endif
#endif

GameServer stopped working. '..\\' is not correct?
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12
You can open path '..\\' on windows? Without disc letter?

To what should i change it?

Im using this:

Good, it's time to contrubute with something... this is my upgraded version of: 1.00.98 Original Webzen GameServer Sources to: 1.01.03, it's possible that this poop is not complete and etc, but at least is possible compile and have attached a detailed ChangeLog, maybe can be useful (to some person), less work or something how this...GameServer 1.01.03 Rebuided-Partially Src:
ChangeLog it's on source but anyways:

2: Since I only add all features that I know of Season 6.1/6.2/6.3 but is unfinished... maybe is lacking Master Skill Tree Passive Buffs and etc shits.


and this:

Code:
Modified 1.01.02/.03 Season 6.2/6.3 Gmo MuServer Webzen: [URL]https://www.mediafire.com/file/ufwpooseviydy1a/1.01.03_GMO.7z/file[/URL]

Kiosani:
"PS: If you don't searching for use C: how local disk you can easy change string by something how: "..\\Data" "
 
Last edited:
Junior Spellweaver
Joined
Oct 4, 2007
Messages
173
Reaction score
74
To what should i change it?
Ok, this poop FindFirstFile( "M:\\commonserver.cfg", &wfd ) ) asks some config from M disc.
Just try to disable LOCAL_DATATEST or TESTSERVER (set 0 in define.h) OR maybe comment APPLY_SERVER_UTIL_20040504
And check language, set proper mabye disable LOCALCONNECT
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12

Code:
//#define APPLY_SERVER_UTIL_20040504

LOCAL_DATATEST 0
TESTSERVER 0
LOCALCONNECT 0

Dunno.. stops working I got main.exe working, cs, js, ds. only gs is not working

Have you compiled GS and run it with no errors?
 
Newbie Spellweaver
Joined
Aug 19, 2014
Messages
52
Reaction score
5
Code:
//#define APPLY_SERVER_UTIL_20040504

LOCAL_DATATEST 0
TESTSERVER 0
LOCALCONNECT 0

Dunno.. stops working I got main.exe working, cs, js, ds. only gs is not working

Have you compiled GS and run it with no errors?
i make it everythingworking fine but there is no mu helper,so if i can help you just what'sapp
+2347088199999
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12

Why does the GS keep crashing after launching it?
I removed that M:\ Drive poop.

Can you help?

I use

 
Joined
Oct 29, 2007
Messages
1,290
Reaction score
1,310
Why does the GS keep crashing after launching it?
I removed that M:\ Drive poop.

Can you help?

I use


English:

You have the source, you can fix it. since this project have so much time (that I can't remember fine what can be)... but it's possible that you must update some scripts files. and maybe can be usefull... If you can try to compile GameServer.exe on: Debug Mode, and debug this with the: "Native Debugger" of Visual Studio, I guess that this can be: "of help" for you, to try to find the: "causes".

Spanish:

Tienes la fuente, puedes arreglarlo. ya que este proyecto tiene tanto tiempo (que no recuerdo bien qué puede ser)... pero es posible que deba actualizar algunos archivos de scripts. y tal vez pueda ser útil... Si puedes intentar compilar GameServer.exe en: Debug Mode, y depurarlo con el: "Depurador Nativo" de Visual Studio, supongo que esto puede ser: "de ayuda" para ti, para intentar encontrar las: "causas".
 
Newbie Spellweaver
Joined
Dec 13, 2020
Messages
21
Reaction score
12

Thanks for the tip