Jump to content

Tryn

Inactive Member
  • Posts

    34
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Tryn

  1. @xP3NG3Rx please have a look. Because you already gave us some eventFunctions.
  2. Hm but it turns orange when the dmg get in. And it stops when there is no dmg. They didnt change it just at the end, like yours. It works for the full gaugebar. I think it works like this: 1. DMG gets in. 2. The Red-Gaugebar gets removed 3. The Orange-Gaugebar appears where the red is gone 4. The Orange-Gaugebar moves slowly (like in your first exampel) until it completly disappears. (The range how much of the orange-bar should disappear is constantly updating because if more dmg gets in the orange bar gets "longer". I hope you can understand what i mean.
  3. Its close to that im searching for. If you look at my gif in the first post u can see there is a small effect which shows the gauge in an other color for an moment. But thanks anyways!
  4. Shang is right, i was looking for the effect of the gauge.
  5. Hello together, because im not that good with Python im gonna ask you guys if somebody can help me to archive this: [Hidden Content] It's a nice simpel improvment for the gauge in my opinion. If you agree with me let me knew about it and maybe help me out. Thanks in advance Tryn
  6. Hey, i've just got a questionen about how you will provide the Service to some customized drop.txt's? Is it possible to get this support from you? Or will you just provide this service for the default stuff? Greetings Tryn
  7. Not needed to fix it, cause i dont use it. But nice kind of post-hunting. Anyways i think a Serverside solution isnt the right way to handel it. Just do it like the officals and change some parts in the client to "pause" the rendering of the weapons if a emotion is in progress.
  8. Metin2 Global added the Chromium Framework to their client. Also i think the officals also upgraded their Webbrowser with the steam publishment. Others i dont know. The Chromium Framework is quiet easy to understand, i would go for this way
  9. Nice release, maybe you can fix your little bug, than it would fabulous.
  10. Maybe @xP3NG3Rx can give us/you the Pseudo for this? So we/you can recode it.
  11. I think there are some "bugs". If u mount for example the power mounts the texttail is floating miles above you. Also if you're not riding a mount the texttail above them ("XZY's Horse") is also miles above them. Maybe you can take a look for this "bugs". But nice release anyway. Thanks P3ng3r
  12. What has the proto to do with quality? If a newbie would get it unpacked it would also be the same proto as marty would had unpacked it. And this isnt something where we need to pay for, it will get pub soon i think. If it would be the complet zodiac run i would rather buy it from marty as from some "nonamed" person. I will just wait
  13. Ty for this information, but i wont want to buy a source just for getting the structure of the new mob_proto. I just want to get the unpacked proto for the new zodiac monsters, not even with their special skills, just the settings for hp, strength and so on. And the protos get public in a short time normally. This is even a argument why i wouldnt buy such stuff, because it isnt a full system, its just a proto. Even if it isnt public until yet.
  14. Ofc you can't just copy it. Also some skill_proto related changes need do be fit into the source als the new flags which i mentioned above. Dragon Roar for the e.x. is one of the easier skills to get working like offical. Knockback Flags and also Feather Walk are more difficult.
  15. Hello everyone, i want to implement the new "reworked" skill form the offical servers. Here is the changelog: [Hidden Content] Dragon's Roar -> Now with Target Feather Walk -> Drops a Bomb And many more got changed... I got the most parts working but there are still some problems i needed help with. So i dont know how the new Feather Walk is done inner the source code. Because the bomb which gets droped gets displayed there as effect and also just deals damage where it is droped. (This is mostly a few meter behind the character) Also there are some new skill_flags for the source. I will list them here for you: - SKILL_FLAG_KNOCKBACK = (1 << 30), (This will trigger a serverside knochback?) - SKILL_FLAG_BUFF = (1 << 31), (This is for some buff calculations, because as you can see in the changelog buffs are now lower applied to other players than the caster itself) Now the parts im missing of (i changed all the stuff i can get out of the skilltable.txt into my skill_proto at my server): - The Knockback-Flag? Any ideas how serverside knockback should be calculated and executed? - Feather Walk's bomb drop? Any ideas how this should be done?
  16. Hello everybody, i just want to know if there is somebody who has already discovered the new mob_proto structure. Because i want to get the current mob_proto of the update 17.5 for the new zodiac monsters. Thanks in advance
  17. Hello guys, i got a problem, sometimes after some warps my core goes down and when i start debugging just recive this messages: I So i tried to remove all quests (also objects dictonary ) but the error appears to be the same just that there is no quest loaded but it stops at the lua_load() function of liblua. If someone is abel to fix this im willing to pay. Greetings and thanks in advance Tryn
  18. I got nearly the same error, but also my fog isnt loading on all maps... Maybe someone can help us out with it.
  19. Hey Guys wanna try the new upcoming update? Also the new patches are in rar (But hey i dont know if u can unpack them ) [Hidden Content] Some new upcoming features on officals: - Channelswitcher - New Minigame (Fishing) - New Patcher (Not a real feature) - New Costumes - Some kind of a map rework - Blablabla
  20. Here u go for it: [Hidden Content] Unpacked by Raicon (thx) This file just contains the metin2_patch_10th
  21. Offical has patched today, does anyone unpacked it already?
  22. Can someone decrypt the new upcoming update from officals? Here in DL the updated files: [Hidden Content]
  23. Still getting these Error: Here is my makefile: MAKE = gmake #CC = g++ CC = clang++ INCDIR = LIBDIR = BINDIR = ../Releases OBJDIR = .obj GCC_VERSION = $(shell $(CC) --version 2>&1 | grep "(GCC)" | cut -d' ' -f3 | cut -d'.' -f1) BSD_VERSION = $(shell uname -v 2>&1 | cut -d' ' -f2 | cut -d'.' -f1) P4_VERSION = $(shell less ../common/Dbversion.txt) $(shell if [ ! -d $(OBJDIR) ]; then mkdir $(OBJDIR); fi) TARGET = $(BINDIR)/db_r$(P4_VERSION) CFLAGS = -g -Wall -O2 -pipe -fno-rtti -fno-exceptions -pthread -D_THREAD_SAFE #ifeq ($(GCC_VERSION), 4) #CFLAGS += -mtune=i686 #else #CFLAGS += -mcpu=i686 #endif # MySQL LIBDIR += -L/usr/local/lib/mysql # boost INCDIR += -I../../Z_Extern/include/boost LIBDIR += -L../../Z_Lib/libthecore/lib -L../../Z_Lib/libsql -L../../Z_Lib/libpoly -L../../Z_Lib/libgame/lib # Extern INCDIR += -I../../Z_Extern/include LIBDIR += -I../../Z_Extern/lib # Project Library INCDIR += -I/usr/local/include ifeq ($(BSD_VERSION), 7) INCDIR += -I../../Z_Lib/libmysql/7.x-5.1.35 LIBDIR += -L../../Z_Lib/libmysql/7.x-5.1.35 else INCDIR += -I../../Z_Lib/libmysql/5.x-5.1.35 LIBDIR += -L../../Z_Lib/libmysql/5.x-5.1.35 endif LIBS = -lthecore -lmysqlclient -lsql -lpoly -lgame -lm -lz SRCS = Config.cpp NetBase.cpp Peer.cpp PeerBase.cpp Main.cpp Lock.cpp DBManager.cpp \ Cache.cpp LoginData.cpp ClientManager.cpp ClientManagerPlayer.cpp ClientManagerLogin.cpp \ ClientManagerBoot.cpp ClientManagerParty.cpp ClientManagerGuild.cpp GuildManager.cpp HB.cpp \ PrivManager.cpp ItemAwardManager.cpp ClientManagerEventFlag.cpp Marriage.cpp \ ItemIDRangeManager.cpp version.cpp ProtoReader.cpp CsvReader.cpp OBJS = $(SRCS:%.cpp=$(OBJDIR)/%.o) default: $(TARGET) $(TARGET): $(OBJS) @echo linking $(TARGET)... @$(CC) $(CFLAGS) $(LIBDIR) $(OBJS) $(LIBS) -o $(TARGET) @touch version.cpp $(OBJDIR)/%.o: %.cpp @echo compile $< @$(CC) $(CFLAGS) $(INCDIR) -c $< -o $@ $(OBJDIR)/version.o: version.cpp @$(CC) $(CFLAGS) -D__USER__=\"$(USER)\" -D__HOSTNAME__=\"$(HOSTNAME)\" -D__PWD__=\"$(PWD)\" -D__P4_VERSION__=\"$(P4_VERSION)\" -c $< -o $@ @echo compile $< $(OBJDIR): @mkdir $(OBJDIR) clean: @rm -f $(OBJS) $(BINDIR)/db_r* dep: @touch Depend makedepend -fDepend $(INCDIR) -I/usr/include/c++/3.3 -I/usr/include/c++/4.2 -p$(OBJDIR)/ $(SRCS) 2> /dev/null sinclude Depend Does anybody knows my problem?
×
×
  • 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.