Jump to content

ATAG

Active Member
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by ATAG

  1. It seems like your VS is corrupted. Try to repair/reinstall it.
  2. Try to run the mysql_upgrade and/or try an other mysql version (i prefer 5.5)
  3. Look at the logs. /var/db/mysql/yourhost.err and /var/log/messages
  4. Here it is without costumes (see #78 post too)
  5. On FreeBSD 10.0 use pkg install python
  6. Here you are (it's the old lib from 2009) [Hidden Content]
  7. You forgot to add at least one pc.warp(x, y) (and feel free to use int coordinates)
  8. Simply comment out line 55-56. //PyAPI_FUNC(struct symtable *) PySymtable_Build(mod_ty, const char *, // PyFutureFeatures *);
  9. we means wold edition. That was a server with 2 CH (for international players as i think) and there was a 4 CH server too (locale=ymir)
  10. SVN_VERSION = somestring ... $(OBJDIR)/version.o: version.cpp @$(CC) $(CFLAGS) -D__SVN_VERSION__="$(SVN_VERSION)" -c $< -o $@ @echo compile $< And version.cpp: #include <stdio.h> void WriteVersion() { #ifndef __WIN32__ FILE* fp = fopen("VERSION.txt", "w"); if (fp) { fprintf(fp, "game revision: %sn", __SVN_VERSION__); fclose(fp); } #endif }
  11. Your Makefile is wrong (by default). You have to correct it and use a non-perforce version.cpp too. Use the search box
  12. This one? http://www.elitepvpers.com/forum/metin2-pserver-guides-strategies/1951042-release-m2-collision-helper-3ds-max.html
  13. Please use spoilers. only 2 videos per day. -- Rumor
  14. The CHECKPOINT error means that the server hangs up somwhere and not responding. If you comment out the abort() you just did nothing, the core will be still unaviable.
  15. you have to use the "Der Gerät" but it's the heavy point for me. I've compiled a working gerät.dll (from balika's source) but HS close the client because of the memory modification. I can't find a working HS bypass, nor a working nohs binary.
  16. Stop ALL auth processes and start only one.
  17. In theory it's OK, but this is very few information.
  18. Much easier to do it with quest (taken from event_easter.quest) when login or enter begin local mapIndex = pc.get_map_index() if mapIndex == 1 or mapIndex == 21 or mapIndex == 41 then local mobid = 30129 if (game.get_event_flag("rabbit_helper") > 0) then -- spawn rabbit if he is not there if find_npc_by_vnum(mobid) == 0 then if mapIndex == 1 then mymob_vids[1] = mob.spawn(mobid, 591, 472, 1, 1, 1)) elseif mapIndex == 21 then mymob_vids[21] = mob.spawn(mobid, 517, 742, 1, 1, 1)) elseif mapIndex == 41 then mymob_vids[41] mob.spawn(mobid, 306, 828, 1, 1, 1)) end end else --purge rabbit if he is there if find_npc_by_vnum(mobid) == 1 then if mapIndex == 1 then local npc = npc.select(mymob_vids[1]) npc.purge() elseif mapIndex == 21 then local npc = npc.select(mymob_vids[21]) npc.purge() elseif mapIndex == 41 then local npc = npc.select(mymob_vids[41]) npc.purge() end end end end end Add this to questlib.lua: mymob_vids = {} You HAVE to implement the npc.select function: [Hidden Content]
×
×
  • 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.