Jump to content

juker

Member
  • Posts

    26
  • Joined

  • Last visited

  • Feedback

    0%

About juker

Informations

  • Gender
    Male

Recent Profile Visitors

2200 profile views

juker's Achievements

Enthusiast

Enthusiast (6/16)

  • Reacting Well
  • Dedicated
  • First Post
  • Collaborator Rare
  • Conversation Starter

Recent Badges

15

Reputation

  1. Found, thanks to everyone!
  2. Hi, i'm searching someone who can debug and fix my game crash. -Only professional DEV. PM thanks.
  3. # cd /usr/home/Lost/game/Channels/Canal1/Core_LosT_Cidades # gdb92 #set gnutarget x86_64-portbld-freebsd11.3 #file game-ch1-Core_LosT_Cidades #core game.core you must have game.core to make gdb read it
  4. You need to upgrade your freebsd version and install the latest Gdb
  5. # Found, thanks to all
  6. Hi to everyone, I'm searching a good metin2 developer that need to know very well: - C++ - Python - Lua I need: -no warning code -full clean -support -system on request PM me thanks
  7. Game Option -- PvP mode -- guild
  8. i think is this icon 53250.tga
  9. thank you, i will try
  10. Hi Metin2Dev, When i ride a mount i have 200 attack and when do warp i have 400 attack how can i fix it?
  11. In cube.cpp search: if (resultText.size() - 20 >= CHAT_MAX_LEN) { sys_err("[CubeInfo] Too long cube result list text. (NPC: %d, length: %d)", npcVNUM, resultText.size()); resultText.clear(); resultCount = 0; } change with: int WildFantasytFIXED; if (resultText.size() < 20) { WildFantasytFIXED = 20 - resultText.size(); } else { WildFantasytFIXED = resultText.size() - 20; } if (WildFantasytFIXED >= CHAT_MAX_LEN) { sys_err("[CubeInfo] Too long cube result list text. (NPC: %d, FIXED_size_value_exygo: %d, length: %d)", npcVNUM, WildFantasytFIXED, resultText.size()); resultText.clear(); resultCount = 0; }
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.