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 Stricted

  1. S

    how to convert the position ?

    function decode_pos($pos) { $position = array(); $position['X'] = ($pos >> 16); $position['Y'] = $pos ^ ($position['X'] << 16); return $position; } function encode_pos($X, $Y) { return ($X << 16) | $Y; } for other functions u can check this php class You must be registered for...
  2. S

    Epaulette Slot

    there are 2 different types of costumes one normal and one as epaulet find the normal one and u have what u want
  3. S

    MINERVA Emulator - Dignity Team - Official

    yeah, i did a misstake on configuration, its working now really well here
  4. S

    MINERVA Emulator - Dignity Team - Official

    got it theoretically working on debian You must be registered for see element. i can login, but i cant join the channel oO i will look into this later and will recompile it again
  5. S

    MINERVA Emulator - Dignity Team - Official

    i would be happy when there is a way to run it on linux (then i can remove finally my windows vm...) if i can compile it myself, then i do it (when there is no reason to use pre compiled bins)
  6. S

    MINERVA Emulator - Dignity Team - Official

    how should that work when mono dosent support the encytion padding? (and i preffer to compile it myself :P )
  7. S

    MINERVA Emulator - Dignity Team - Official

    yep, will be available on the next mono version (that what their git looks like) yust an idea, use bouncycaste for that? (should be support RSA OAEP padding)
  8. S

    MINERVA Emulator - Dignity Team - Official

    on my side it crashes You must be registered for see element.
  9. S

    MINERVA Emulator - Dignity Team - Official

    nope not working root@cabal:~/bin# mono master.exe WARNING: The runtime version supported by this application is unavailable. Using default runtime: v1.1.4322 ** (master.exe:1080): WARNING **: The following assembly referenced from /root/b...
  10. S

    CabalMain 374 PUBLIC + Multilang Support

    nope, never looked into these templates :D
  11. S

    Cant enter in channel

    please post clean logs i cant even find your problem bcs there are too many errors on the logs an what server files you are using?
  12. S

    CabalMain 374 PUBLIC + Multilang Support

    hello guys i played a bit with the cabal eu launcher and watched the main.dat and mainex.dat with the hex editor and found a few positions for the options mainex.dat 09 display mode 0x00 - 0x02 1d render distance 0x00-0x04 15 jukebox volume 0x00-0x64 19 bgm play mode 0x00 - 0x03 3d jukebox...
  13. S

    CabalMain 374 PUBLIC + Multilang Support

    You must be registered for see element. i created a small c# wpf application to modify the mainex.dat simply copy the LanguageSwitch.exe beside the mainex.dat source + compiled bin in attachment
  14. S

    CabalMain 374 PUBLIC + Multilang Support

    thanks to PX2000 i modified the offsets from post 1 a bit now are all languages from the cabalmain available thats the current values for the mainEX.dat 0x01 = Korean 0x02 = English 0x03 = Thai 0x04 = Japanese 0x05 = German 0x06 = Portuguese 0x07 = Indonesian 0x08 = Russian 0x09 = Vietnamese...
  15. S

    Create 2 server

    ln -sf /usr/bin/DBAgent /usr/bin/DBAgent_02 ln -sf /usr/bin/ChatNode /usr/bin/ChatNode_02 ln -sf /usr/bin/AgentShop /usr/bin/AgentShop_02 ln -sf /usr/bin/PartySvr /usr/bin/PartySvr_02 ln -sf /usr/bin/WorldSvr /usr/bin/WorldSvr_02_01 chmod 0700 /usr/bin/DBAgent_02 chmod 0700 /usr/bin/ChatNode_02...
Back
Top