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!

Recent content by zig

  1. Z

    Hi there....old player, guild leader, php programmer

    oh boy XAMPP, that's old.
  2. Z

    Total Statistics

    void CPlayer::LogPlayerStatistic(){ int nSection[11][6]; ZeroMemory(&nSection, sizeof(nSection)); CPlayer *p; LINKPLAYER_BEGIN(p) if (p->m_nLevel <= 100) { int nNum = (p->m_nLevel - 1) / 10; ++nSection[nNum][p->m_nClass]; ++nSection[nNum][STATLOG_TOTAL]; if...
  3. Z

    Start Coordinates DBSvrT

    Hello, Create coords are stored inside an array (DBSvr). RECT g_rtCreate[4] = { { 257064, 257961, 257381, 258397 }, { 256806, 259175, 257135, 259598 }, { 257135, 259191, 257590, 259562 }, { 257590, 259203, 257907, 259573 } }; CSocket::NewPlayer() -> 0x4170A0 g_rtCreate ->...
  4. Z

    Coders Chit-Chat

    @Chale001
  5. Z

    Creating a new server

    SET IDENTITY_INSERT Login On INSERT INTO Login(UID, ID, PWD, Birth, Type, ExpTime) VALUES ('1', '1', 0x2C, '19000101', '0', '4000') SET IDENTITY_INSERT Login Off
  6. Z

    Kal Online Showroom - Show your creations HERE (non releases)

    Hello, Made some fixes (hp, mp, stats on create) and added some of his skills. Some of the skills were (damage tpye 3) so I made them AOE. You must be registered for see element.
  7. Z

    Kal Online Showroom - Show your creations HERE (non releases)

    Hello, Kalonline released the new Shaman character with the last update in the korean client. I had a go with the korean engine and it's a bit messy but it works. (the text is fucked up since I used the en country) The character has magic attacks and probably identical to the mage, I haven't...
  8. Z

    KalOnline plans for 2017 [iLOLd]

    This announcement (which is almost unreadable) looks to me like a fancy way of telling you that they actually "care" for the steam server players and trying to give you some kind of hope, but actually what they means is that the server is doomed and has to be merged with hanin server, just like...
  9. Z

    d1Rmake ksm?

    Why won't you make it yourself? Just use the released ROAM executable.
  10. Z

    Searching for armors ~ weapons ~ areas for low rate server

    This is just rude. Why don't you try to do something yourself? instead of asking people to do something for you. At the end what you gonna do with it? Open a crappy server with an unbalanced donation system that runs on a licensed add-on that you bought from someone? or you might be using a...
  11. Z

    3ds max 2009 error

    The plugin uses 32-bit 3ds max 2009 version and you installed 64-bit version. Uninstall 3ds max 2009, and re-install using 32-bit version. (do not check 64-bit check-box while installing)
  12. Z

    Teleport Quest

    Made a quick way for teleporting with all limits. enjoy (quest (index x y) ; (QUEST_INDEX, QUEST_FLAG) (case (if (gstate 1 1)) (then (html deadnotice))) ; IsDead (player killed) (case (if (gstate 104 1)) (then (html onpvpnotice))) ; IsOnPVP (ASSASSIN) (case (if (gstate 5 1)) (then (html...
  13. Z

    C++ Get Monster ID

    When you use CMonsterBigBirdMaster your monster will have the type of a boss all the time, that means AI will be default 3 and some other things, also summoning boxes and few other kind of monster will not work correctly. While using CMonster::Create you will have the advantage of summoning any...
  14. Z

    C++ Get Monster ID

    Well I thought no one has found genmonster summon before but seems you did. I found it a while ago while checking the CMonster::Create function. If you want to play with summon then it will be necessary to return to monster offset, but I made a simple way of summoning with gen monster and since...
Back
Top