Jump to content

.InyaProduction

Former Staff
  • Posts

    511
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    0%

Posts posted by .InyaProduction

  1.  

    Hello everyone..
     
    I would like to ask you something.
    It's possible to make new att bonus?
    I mean, how can I add it in source file?
    Example: I want to make bonus Strong Against Metin Stones.
    What I need for it, please?

     

    If you dont need one of the strong against bonusses (maybe you dont need orcs) use that on all metins and just rename it in client

     

    Its the easy BUT also dirty solution

  2. Well, Inya. You're the first one who actually brought up evidence on this topic.

    If it's true what vanilla said when she claimed alessa would teach her, then everything else would make sense. The "I don't help you", the IDA knowledge and - if they might be friends - the wrong poll. Additionally there are tons of people who can edit stuff with IDA. You can't say that someone is another person just because they can do the same 'magic tricks'. Also you're telling that Emily17 is an old account. How do you know? But still, you have valid points for her being alessa. Your claim isn't without doubt but it's still a big possibility. Though are still other things that don't add up at all. For example: Why? Why would she claim to not be alessa? And why would she do such blatant mistakes?

     

    Edit: I've visited the page of Emily17. Seems like it isn't too far fetched. Her behaviour seems a bit similar to vanilla. Still no crucial evidences for her being emily17 but it isn't impossible.

    Vanilla herself told me her old account is emily17. Sadly i dont even find her epvp contact right now.

     

    The post of alessa at epvp wasnt allowed from Vanilla (like this its in the commentarys) so seems like an accident on the wrong account

     

    There are many people with IDA skills. But not many with such good IDA skills

     

    Cause Alessa is known for being the one who faked being a girl some time ago. Alessa pretended to be a girl and ended up being revealed as male. So its - again - same scheme like it seems to me

    • Love 1
  3. vanilla did the same thing he already did two years before, there hes name was Alessa

    I highly suggest that you should refrain from making claims against people if you don't have any evidence to back up your thesis.

    Either prove it or remove it. I'm interested to get to know more about vanilla but all I want is facts and not ridiculous claims without any evidence. He isnt so wrong. Vanilla did indeed do some mistakes that reveal her as Alessa. Beginning at saying to someone "She wont help him cause he once had a 'fight' with alessa and alessa was her teacher" Yeah we all believe that...

    Secondly:

    Vanillas old epvp account is emily17 with which she helped at a backdoor fix for 34083. But wait who is known for being pretty good in IDA? Right alessa

    Last and the least:

    http://www.elitepvpers.com/forum/metin2-pserver-discussions-questions/3389896-vanilla-core-source.html

    She accidently started a poll with her wrong epvp account about the development of the vanilla core.

    And please dont say me this is all random. Its on your own to believe this. But i wouldnt say this if I wasnt believing this myself as it doesnt give me any profit. I already thought about vanilla as alessa way before these stuff happened. This stuff only prooved my thoughts

    Regards

    Inya

    • Love 3
  4. Soul Stone Drop

    // ADD_GRANDMASTER_SKILL
    // È¥¼® ¾ÆÀÌÅÛ µå·Ó
    if (pkChr->GetLevel() >= 40 && pkChr->GetMobRank() >= MOB_RANK_BOSS && GetDropPerKillPct(/* minimum */ 1, /* default */ 1000, iDeltaPercent, "three_skill_item") / GetThreeSkillLevelAdjust(pkChr->GetLevel()) >= number(1, iRandRange))
    {
    const DWORD ITEM_VNUM = 50513;
    
    if ((item = CreateItem(ITEM_VNUM, 1, 0, true)))
    vec_item.push_back(item);
    }
    // END_OF_ADD_GRANDMASTER_SKILL
    The thing i focus on is GetThreeSkillLevelAdjust. This function is following:

     

    int GetThreeSkillLevelAdjust(int level)
    {
    	if (level < 40)
    		return 32;
    	if (level < 45)
    		return 16;
    	if (level < 50)
    		return 8;
    	if (level < 55)
    		return 4;
    	if (level < 60)
    		return 2;
    	return 1;
    }
    
    So you will only drop Soulstones from bosses if youre lvl 40 and above. All levels below 60 got much decreased chances of getting one

     

     


    I will add more facts when i find them ;)

    • Love 6
  5. You could enrich this feature by adding JS-based browser geolocation.

     

    Maybe some server-side code for implementing and processing JS geolocation would be helpful.

    As it is, most mobile devices today provide means to acquire its location, and even desktop browser can easily determine the location without GPS (I didn't expect that until I tested it myself - http://html5demos.com/geo).

    Well i saw that browser supported locating and was thinking about integrating it as it's a pretty nice and easy tool. As you mentioned it now, it will follow in the next days.

     

    This might be not very common in the sphere of Metin2, or helpful in location-based service restrictions or logging, but it can impact location-based services like "What's around?" services.

    DreamPHP shouldn't be metin2-only its a general lib for webdevelopers who dont like big frameworks (thats why I dont build a network between different library parts, so that you can just remove them if they aren't needed)

     

    In general, I would love to see some information about required the minimum PHP version, and especially about the code structure/pattern.

    Thats a good idea, well i have to clean the code up anyways then i think ill add a standart code structure

     

    For one, I must say that I dislike the used __callStatic() pattern.

    I would much prefer to see an autoloading-based aproach, where the current "core class" can effectively be replace by any comliant autoloader, like C omposer.

    If PHP versions prior to 5.3 (DEPRECATED!) are out of scope, namespaces would be a great addition to divide different feature sets.

     

    Doing so could later allow you to propagate the overall package - or parts of it - on e.g. Packagist, which would make installation and updating easier and will also encourage new developers to adapt clean, modern code organization.

    I have to admit I didn't work with autoloading yet. I would really appreciate if you participate at this point. I don't even know if there would be compatibility problems if the homepage where the lib is used in has an autoloader itself too, so i just used the method i got teached about a year ago at work.

    About namespaces:

    Namespaces are a great thing but like you said not useable with all php versions and I wan't this lib to be useable whereever possible

×
×
  • 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.