Jump to content

Tekanse

Member
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Tekanse

  1. Download Alternative download links → Github All details are described in github readme.
  2. Was it before or after? Here is how it works:
  3. Hi! I made it like year ago, it looks kinda cool so i thought about showcasing it. It was implemented on few servers and sells really good in theirs Item-Shop, i guess people like graphic things instead of boring texts.
  4. This packer is 12 years old, since then a lot changed in item_proto structure so it wont work, try with something newer like EterNexus.
  5. int MINMAX(int min, int value, int max) { register int tv; tv = (min > value ? min : value); return (max < tv) ? max : tv; }
  6. Download Metin2 Download or Github Script will look for densest place on map (in range of 70) and calculate average yang drop per hour based on regen resp timer. Density is only condition included in calculating best spot. Developed on Python 3.10.4 x64. You can edit your environment in settings.json file. You also have to provide your files to data directory. And last thing, you have to fill your mysql connection information in GetMobYang function.
  7. Ooops, thats what happens when you are kinda lazy to write few lines
  8. New fishing system with autofishing (BDO Like) Special chest with rendertarget Custom systems Contact: Discord: tekanse
  9. I added missing part of the instruction in interface module, you can look it up in git commit history or download new version.
  10. Download Center Download Github Hello. So, i was bored and saw that nobody coded this (or someone did but never released) even though it was made like 3 years ago, so there you go.
  11. Download Center Download Hello, I made this system 6 years ago, and it's time to share it, i guess.
  12. d.setf("seconds_passed", d.getf("seconds_passed") + TIME_OUT_STEP); if (d.getf("seconds_passed") == TIME_OUT) then Hmm. define TIME_OUT 4000 define TIME_OUT_STEP 55 Hmmmm.
  13. Then no, there is no such a thing implemented in original source.
  14. You are trying to cast float value to int. To be specific, command looks like this ITEMSHOP SET_LOG#25041#1#0.4#2022-05-18[_]04:41:24#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0#0 | ITEMSHOP and parsing happens here: constInfo.ItemShop['LOGS'].append([int(cmd[1]), int(cmd[2]), int(cmd[3]), cmd[4], [(int(cmd[5]), int(cmd[6])), (int(cmd[7]), int(cmd[8])), (int(cmd[9]), int(cmd[10])), (int(cmd[11]), int(cmd[12])) to be specific, int(cmd[3]) is where give value is 0.4 which is float. If you want to fix it, change it to float(cmd[3]) If you found this system somewhere, its probably not the best idea to use it, errors like that show that it wasnt tested properly.
  15. Are you asking if some kind of detection is implemented by default?
  16. Its hard to tell what kind of function do you need just by knowing its name. What are the arguments? What is it doing?
  17. I know that, but when you want to give ready solution, you should either do it correctly, or at least inform about it. Looks like you have good programming knowledge so you are held to higher standards.
  18. I really dont like when someone says something like this. Friendly reminder, that in 2009 most players had under 5Mb/s connection, and devs had to make sacrafices. For example, you made TPacketGCAttack bigger about 32 bytes, back then it was significant. Also, you really shouldnt send floats, eventually you will run into conversion problems, there is a reason why YMIR never put any into packets (well, with one excpetion).
×
×
  • 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.