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 Bloodx

  1. B

    Bango Server Emulator for Linux [C++]

    Take a look at Mainserver there u can get the Calculation
  2. B

    Tab function

    engine.exe -> look for the function -> disable it
  3. B

    Coders Chit-Chat

    i'M not sure about the adress atm. but here how to find it => breakpoint on -> 0x0047FBEA Execute skill => follow breakpoint. edit: Adress should be => 0x00488330
  4. B

    Coders Chit-Chat

    Player::_FindItem(Player *player, int index, int amount) 0x0045D1E0 should it be.. returns Item Object. int* item = Player::FindItem(player,index,amount); if(item) { int state = item[12]; if(state == 1 || state == 9 || state == 129) { // item is...
  5. B

    MSSQL and Windows 10

    just imported the old one ins mssql 17 , just check the overwrite box.
  6. B

    Coders Chit-Chat

    hmmm.. maybe this is possible if you Change Player Z Value and Syncro with the Client... I never continued the work on it, because no one really asked for it.. I think I still have the Source. should be possible to implement a scripting for ppl... The Question is what kind of scripting is...
  7. B

    Coders Chit-Chat

    What is this thread for? - Here you can ask all questions about programming ( prefers Kal stuff. ) - get Tips - Code Snippets - etc....
  8. B

    Random Stuff

    Some stuff, maybe some of you get use of this.:junglejane: You must be registered for see element. You must be registered for see element. You must be registered for see element. You must be registered for see element. You must be registered for see element.
  9. B

    Healing Pets

    // dllmain.cpp : Definiert den Einstiegspunkt für die DLL-Anwendung. #include "stdafx.h" #include <fstream> #include <iostream> #include <string> #include <vector> #include <io.h> #include <fcntl.h> namespace GameServer { namespace IOCriticalSection { static void(__thiscall *Enter)(void...
  10. B

    Bango Server Emulator for Linux [C++]

    This community is a joke. Here is an emulator published, according to all questions for months / years. But there is not a comment.
  11. B

    Open Source C++ library!?

    here some random stuff, I did write some time ago. Maybe anyone need smth. You must be registered for see element.
  12. B

    Bof/Dss Question [HELP]

    R3Vo is the only one understanding this Question lol. ( btw. you know all numbers? :D ) DSS / Bof are for sure just an Number in the Info Colum in Items Table - like Mixing Stones- Inix engine know's how to add the Infos to items by this Number's. nothing Prefix or any other poop.. all...
  13. B

    VPS or Dedicated server for hosting?

    sorry but I see no Problem here. He can lower the running Costs and Investments with stuff like this .. I see you are far away from beeing a Businessman. Hyperfilter is fine, we did pay around 600/700 when Kal was running in the good days. but I know ppl who did take down Hyperfilter in...
  14. B

    Evasion/defence formula

    you could reverse yourself if you are interested in ^^ signed int __thiscall CChar::CheckHit(void *Attacker, int pTarget, int a3) { signed int result; // eax@2 int v4; // esi@6 signed int v5; // [sp+4h] [bp-30h]@16 int v6; // [sp+18h] [bp-1Ch]@4 int pAttacker; // [sp+24h] [bp-10h]@1...
  15. B

    Evasion/defence formula

    Attack = minDmg + rand() % maxDmg -minDmg + 1 Defense = Defense + ??? * Defense / 100 Evasion = Evasion + ??? Player + 220 * Evasion / 100
Back
Top