Jump to content

Night

Bronze
  • Posts

    839
  • Joined

  • Last visited

  • Days Won

    5
  • Feedback

    0%

Night last won the day on June 4 2017

Night had the most liked content!

1 Follower

About Night

  • Birthday 07/27/1996

Informations

  • Gender
    Male

Recent Profile Visitors

4801 profile views

Night's Achievements

Mentor

Mentor (12/16)

  • Very Popular Rare
  • First Post
  • Collaborator
  • Posting Machine Rare
  • Week One Done

Recent Badges

358

Reputation

  1. there i thought you left metin2 forever
  2. anyone who got the src around 2014 should have it , tho it wasn't all that interesting , (that's why most ppl ignored it). still might be usefull for some others.
  3. well metin2 does not even run correctly under mysql > 5.5 so you should stick with the older version OR fix it so that it work properly with it. and going back to what @127.0.0.1 said , the mysql folder should never be overwritten , (which almost all those noob devs do). so to come up to what you did, you just uploaded a mysql.tar.gz and unpacked it with a smile . causing the mysql to fuck up at some point. what you should do? try running mysql on safe mode. what if my db does not work even with this mode? (if you have a running server) take a backup of it, then reinstall the same version to get a backup of data. the reinstall it with a lower version (eh there should be some other way). then install your db with this data. (if not) reinstall a lower version nvm your data mate. note : make sure that the mysql folder is not there. (in your backup)
  4. how , so? both AniImageBox and ExpandedImageBox are sub classes for the same base class (Window) (in case of ExpandedImageBox is a sub class of ImageBox which is a sub class of Window too) to put it simple there should not be a problem if you where to add a setscale member to the AniImageBox. and yet i still do not understand the reason why ExpandedImageBox does not display some images. as long as the file extension is valid that is.
  5. you used a multidimensional array aka a list of lists , the first and second line of SetText will result in Attribute error exception to be raised. your method might be correct depending on how you do it , but it will result in you having to wast more time. for the List var you could use a tuple as it is a immutable (it does not change no matter what). ex. List = [ ] List = [ [(ui.TextClass, 0), (0, 0), (x, y), (["SetDefaultFontName", [""]]), ()], [(ui.ImageClass, ""), (0, 0), (x , y), (["LoadImage", ["image"]]), ("movable", "float")], ] metin2 does have it's own methods for dealing with UI , i highly recommend using it. (there are already over 50 example of it in uiscript and the locale dir of each client).
  6. dict does not store the original order of the item that were stored in it. (dict is pretty much like std::map in c++) ([Hidden Content] <- this will help you a bit , it's a bit off topic but if you are a c++ dev it can help you understand) so python offer another class which is the collections.OrderedDict which quite useful. for iteration. say : list(dict()) , will return a list which contain the keys of the dict() without the original order. list( collections.OrderedDict()) , will return a list whish contain the keys of the OrderedDict in their insertion order. and as always it is useful for iteration. and some other rare cases. there are other choices , but this is the first one google will point out.
  7. the column is unknown , mostly bcz its not even defined.
  8. 1) It's so """native""" that half of the ports will throw lots of errors when you compile them with clang. (default behavior) Native, in this case, means "installed by default", not "it makes instructions more clear blablabla". 2) For binaries compiled with gcc4.9, you should usually use "gdb-7.10_4" (the minor version could vary), otherwise you'll get the "dwarf instruction problem" error. (pretty normal) Mysql 5.6 is one of the most criticized versions. Since you like to be alternative, you can also try MariaDB (mysql fork). 3) As I stated before, one could even use both. Use clang's modernizr and then compile it with gcc. (which is pretty edgy) Kinda all ymir's code is made with raw new/delete operators. The only code wrapped in smart pointers is related to the queries (and not all the times). Server-side, most all the stuff are loaded once (regens, map attrs, etc), and there's no default way to free them without closing the process. (I would call them "cached" and not "memory leaking" anyway) Client-side, it's the same thing, except of the Outdoor loading, which clearly leaks few mb every time you warp somewhere. (on the WE, it's pretty clear) Note: If he installs gcc on freebsd 10.x, he will have to remap few things otherwise cryptopp will be compiled with clang, and the rest of the game with gcc. (which will end with a linking failure) Or add g++49 in makefile cryptopp. ORR? To instal directly from package. pkg install security/cryptopp And take files from usr/local. marty did note the first way (which would be adding g++49 to the make file) however most ppl will have a hard time with it.if they did not learn c++. the secound way is a bit off. it could result in a linking error.
  9. d:/ymir work/ui/equipment_bg_without_ring.tga is missing
  10. add the client syserr , most likely the usual old uiinventory bug
  11. 1. your dns setup is wrong 2.avoid any mysql version after 5.5 unless you know what you are doing if you are using virtual maching runing from virtual box or anyother cross-platform virtualization application. then make sure that the network config are set correctly.
  12. most of the ppl edit there old item proto to the newest one , some of them uses the old item proto structure for the server while loading the bleeding resistance as something else (for i.g stun ,slow anthing that you see that it fits) , if you have a new mob proto strucutre you can always get the old gold drop using excel. simply just manage it. it's easy.
  13. you have something like this in one of your quests: number(3,2) first argument (3) is bigger then scound argument (2). this is all what i can tell. there is no bug in your src about this (it will happen to anyone if he has the same bugged quest).
×
×
  • 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.