Beiträge von Ikarus_ Developer

    My support is actually closed, i closed the sellings (of any product) 1 year ago but i continued to give support to my clients in the last year, and few months ago i stopped even to give support. The shop was sold with 'free support' but 'free' != 'lifelong'. I consider Ikarus Shop v1 obsolete and i don't recommend to use it actually. I don't recommend the leaked one neither obv. It's life is basically ended.


    It might happen that i will start to distribute a v1.5/v1.8 if I find someone I trust to help me to distribute it. My time is infinitesimal, so I could never start doing 2 installations per day again like I done in past.


    In that case , it would be a much simpler service than it was in past. In the past I gave away a lot of stuff for free. Whoever changed files received free reinstallation, whoever installed new systems connected in some way with my shop received the free adjustment. Many things given to people who have not been able to appreciate nothing. So in the future I will only distribute the product and any security patches, nothing else.

    Hi Guys,

    I m pretty sure most of you perfectly know what i m meaning for "DEVIL TOWER LAG AFTER WARP", It's a critical FPS Drop which happen very often just after a warp in a dungeon.

    I ve found the way to definitely fix it with a few lines short change.



    Just to spend a few words for those who want to understand something before copying and pasting the fix here is the explanation of the bug:


    HERE IS THE CODE:

    The fix about duplication bug is free released right to know.

    I don't understand why this story still turns.

    If people like to use the leakered stuff and don't even bother to install the fix I released SEVERAL MONTHS AGO then saying around that my shop is bad seems a bit of a slander.


    Bitte melden Sie sich an, um diesen Link zu sehen. <-- look at date ^^

    Hi guys,


    There's a guy that is blackmailing all servers that are using my offlineshop.

    Not just my clients, but also those who downloaded it from some idiot's leak.

    I'm sharing the fix here as 60/70% of the servers currently open use my shop.




    Random User :

    Why are u sharing it using Metin2downloads?


    Answer:

    I m bored to see this guy make money by blackmailing.





    Random User part2:

    Is it right to share this fix even with those who are not your customer?


    Answer:

    I honestly think that anyone who uses the shop without permission, taking it from sources different from me, is not worthy of help from me, however I can't even allow so many people to be fooled by this idiot boy.





    Random User part3:

    Do you know who is blackmailing the p.server founders?


    Answer:

    Yes, i know his discord account : Mădălin#2332


    I recommend to don't pay him at all. I would like to know other accounts of this guy, if anyone know some please report to me.


    I also have the proofs about what i m talking.








    BIG DISCLAIMER:

    Test the code on a test-sever before to move it on a live-server.

    Thanks to VegaS for the tip about cooldown

    Hello community,


    I have always seen people go crazy for this problem which is solved with 2 lines of code, in particular with the various offlineshops (mine, or the free release great and ken) that are unfairly blamed for having duplication bugs. No!


    I believe that if you warp a player on another core without performing any checks you can't blame those who made the other systems which are then used to take advantage of the vulnerability you caused.


    If you implement something you need to make sure there are adequate checks to avoid causing vulnerabilities. In my opinion the cause of the duplication is not the various offlineshops, but the channel switcher which does not perform not even half checks before executing the warp.




    Anyway, no more chatter.

    I will explain here how to fix this problem.

    Hi guys,




    A guy reported to me a weird bug about shamans w/m which are skipping collision when they are too fast to attack.


    On default source files it is still an unresolved bug which appear when the shaman's attack speed is more than 145/150.




    here a video which show how it is not getting the damage text for each hit on the stone.



    Bitte melden Sie sich an, um dieses Medienelement zu sehen.


    here the fix:

    There is a bug about the stealth of the assassin with buffs actived.


    If the players near the assassin that is using the stealth move the camera zoom , the effects become visible again.


    Bitte melden Sie sich an, um dieses Bild zu sehen.





    source : myself



    Sameone could need to add

    #include "../UserInterface/Locale_inc.h"

    at the beginning of the file source/EterBase/StdAfx.h

    to include the defines in Locale_inc.h



    ------- EDIT ------

    Due to some change on client-source someone may require a small fix to be added to this system:

    C
    1. // SEARCH
    2. void CEffectInstance::__Initialize() {
    3. // ADD
    4. #ifdef __ENABLE_STEALTH_FIX__
    5. ReleaseAlwaysHidden();
    6. #endif

    If I use licenses for my products, it is to prevent the worms with which this world is full from exploiting the work of others for personal revenues.

    Licenses are also a protection of the customer, who will be happier to spend his money without what he buys is published one day for free .. It is not always possible to obtain this result but we do everything possible

    I don't like posting correction code, it's not very respectful of who worked to make this release. If he read my advice I'm sure he can do an update to fix it.

    I appreciate your work and i thank you for share.

    I gues you would like to know that there are some big problems with this shop.

    I took a quick look at this code, and I immediately noticed that you don't delete some objects pointed to every query you run and this causes memory leak. In short, you risk that in a very populated server the ram will end after a few hours.

    I hope you will see this constructive criticism as an aid and not as an attack.

    Regards

    you are right but i prefer work with python

    anyway my "complete tool" on my machine give me way to make more actions (eg. compile offlineshop-library and put it on extern folder and other related things which there arent in the general gmake)

    The clock detenction of gmake doesnt touch the file, this mean you have to compile the file every time if you dont touch the file, this tool touch the file if the last edit is in the future

    I wrote this small tool in python to manage easly the server source in a unique script to run.

    The tool is written in Python 2.7 but it should works fine with next version.


    Basically, the tool can help you to build/touch/strip without navigate in the differents paths.


    The tool can perform:



    -Build:

    build game/db

    build game/db with clean

    build game&db (consecutively)

    build game&db with clean



    -Touch (which dont' create new file when is used with a wrong name):

    perform Touch of one or more files in game/src (by inserting the names separated with a space)

    perform Touch of one or more files in db/src (by inserting the names separated with a space)


    -Strip:

    Strip game (by copying it)

    Strip db (--same)


    Additional features:

    - the tool find if a file is edited $val seconds in the future (eg. if you have set a wrong date in your compiler) and it will touch the file automatically.

    - the tool is written in procedural python (no OOP) so you should read easly it even if you are not an expert with python.

    - You can run more than one commands in sequence by separating them with one of these character : ("&&","&","|"," ",'\t',"-",',') (es. : 1&9 -> build game and strip game)

    - the tool can get command-line arguments to perform what you need (you could take a look under to know the command you can pass)



    to-know:

    - To run a script in python in the compiler you need to have installed Python (i recommend python27 which i can guarantee it will works). If you haven't installed python you can do it by using pkg manager (pkg install pyhon27) or ports (cd /usr/ports/lang/python27 && make config-recursive && make install clean)

    - If you get some problem with the script you can post a comment in this thread to know the solution, anyway it should works perfectly with martysama source (most commonly used).

    - To run the script you should give 7XX octal permission.

    - To run the script you need to go at the same path where is the script and to use "./scriptname.py" to run it.

    - If you are creating the scriptfile using notepad++ (or some external editor) is possible to have a problem about the EOL character (you have to set it on "Unix EOL").

    - You have way to enable/disable the question "exit?" when the build fail


    - To run the script you should put it on "Server" folder, when you can find game, db, common, etc.


    For any kind of problems i recommend you to write a comment in this thread (instead of pm) because another user could get same problem and find here the solution.

    i hope it would be usefull.


    byebye




    COMMANDLINE ARGUMENTS


    SCRIPT