The Arbiters

Would you like to react to this message? Create an account in a few clicks or log in to continue.

Lineage 1 Resurrect Blood Pledge


5 posters

    All MyLineage Resource are Belong to You

    avatar
    CORELLON


    Posts : 9
    Join date : 2015-12-12

    All MyLineage Resource are Belong to You Empty All MyLineage Resource are Belong to You

    Post by CORELLON Sat Dec 12, 2015 11:35 pm

    Hail to you, champions!

    Here is a list of all the resources I have on Lin1. I will update it as I find new material.

    First is a roundup post from the L1J Resurrection site, which is impossible to find on the forum:

    Resource Roundup
    Link


    Second, and my current go to, is the official lineage site. Make sure you have google translate on in Chrome:

    Lineage Korean Database
    lineage.power.plaync.com/

    Enchant Guide from Soren
    Link

    Note that bzel can only go +2 on a +5 item, no higher! And bdai can only go +2 on a +5 weapon.


    Candle Explained
    https://zelgo.net/linweb/topic/read/710


    Karma Guide
    http://noobs-are-us.blogspot.ca/2010/07/karma-introduction-levels-and-rewards.html

    Resurrection Custom Shops
    https://zelgo.net/linweb/topic/read/649

    I'll update as I find new stuff!

    Links fixed, thx boss!


    Last edited by CORELLON on Fri Dec 18, 2015 10:38 am; edited 4 times in total
    SizzFlair
    SizzFlair
    Admin


    Posts : 40
    Join date : 2015-12-06
    Location : USA

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by SizzFlair Mon Dec 14, 2015 11:42 am

    You should be able to post links now.

    A good post indeed, which will help the newer players out.
    Karthus
    Karthus


    Posts : 4
    Join date : 2015-12-10
    Age : 36
    Location : St. Louis, MO

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by Karthus Tue Dec 15, 2015 6:37 am

    Hmm, so did they change it from live? You could bzel for +2 all the way up to +6 armors trying for +8. I think maybe they haven't tried it yet on this server? I know for a fact, that I used to make +8homr by nzel to +6 then bzel(blows, goes +7, or rarely even +8--which was the easiest way to make it) -- Just figured I would add this note, but if we find out we can bzel +6 to make +8 armors on this server just like live, we should keep that between the pledge =p at least for now, right?
    SizzFlair
    SizzFlair
    Admin


    Posts : 40
    Join date : 2015-12-06
    Location : USA

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by SizzFlair Tue Dec 15, 2015 2:11 pm

    I'll try that next time I do a rush.
    avatar
    telsek


    Posts : 5
    Join date : 2015-12-11

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by telsek Wed Dec 16, 2015 11:44 am

    int roll = _random.nextInt(100) + 1;

    if (enchantLevel <= 2) {

    return roll >= 77 ? 3 : roll >= 33 ? 2 : 1;

    } else if (enchantLevel >= 3 && enchantLevel <= 5) {

    return roll < 50 ? 2 : 1;
    I believe this is directly from the source code for both weapons and armor. For anything +2 or lower you will receive +1 thru +3, for anything +3 thru +5 you will receive +1 or +2 and for anything over +5 you will receive +1 if enchant is successful.
    SizzFlair
    SizzFlair
    Admin


    Posts : 40
    Join date : 2015-12-06
    Location : USA

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by SizzFlair Wed Dec 16, 2015 5:13 pm

    telsek wrote:int roll = _random.nextInt(100) + 1;

    if (enchantLevel <= 2) {

    return roll >= 77 ? 3 : roll >= 33 ? 2 : 1;

    } else if (enchantLevel >= 3 && enchantLevel <= 5) {

    return roll < 50 ? 2 : 1;
    I believe this is directly from the source code for both weapons and armor.  For anything +2 or lower you will receive +1 thru +3, for anything +3 thru +5 you will receive +1 or +2 and for anything over +5 you will receive +1 if enchant is successful.

    Well there you have it Smile
    avatar
    Nym


    Posts : 5
    Join date : 2015-12-16

    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by Nym Fri Dec 18, 2015 12:26 am

    Cool beans!

    So you really CAN can get +3 from a blessed enchant scroll, but only if the item is +2 or lower. Waste! lol (Even odds of +1, +2, or +3)

    And for all those noobs claiming you can get +2 on a +6 item: Wrong! If the item is +3 through and including +5 you have a 50/50 chance to get +1 or +2. On a +6 or higher item a successful enchant can only ever give +1.

    Tech info: (Skip this if tech stuff bores you)

    _random.nextInt(100) gives you a random number from 0 to 99 for 100 possible values. The +1 in the code makes it 1 to 100 instead. Odds for *successful* enchants are as follows:

    For a +0 to +2 item:
    1 to 33 = +2 (33% chance)
    34 to 76 = +1 (33% chance)
    77 to 100 = +3 (34% chance)

    For a +3 to +5 item:
    1 to 49 = +2 (49% chance)
    50 to 100 = +1 (51% chance)

    The programmer obviously forgot he was working with 1-100 here and not 0-99, so the odds are slightly in favor of +1 versus +2. The code *should* have been:
    return roll <= 50 ? 2 : 1;
    With "<=" instead of "<"

    Sponsored content


    All MyLineage Resource are Belong to You Empty Re: All MyLineage Resource are Belong to You

    Post by Sponsored content


      Current date/time is Thu Mar 28, 2024 5:49 pm