Experience Table Formula

Results 1 to 16 of 16
  1. #1
    Account Upgraded | Title Enabled! x1nixmzeng is offline
    MemberRank
    Nov 2007 Join Date
    England, UKLocation
    240Posts

    Experience Table Formula

    Optional Rant

    No complete or accurate experience tables have been posted until now.
    This makes me sad.


    Downloads

    I decided to release the formula so it can confidently be used in dynamic signatures or server developments. Crediting 'x1nixmzeng' is appreciated.

    I've uploaded the spreadsheet version which shows how the table is calculated and attached a CSV version in the format:
    Code:
    Level,Experience,Experience difference
    Spreadsheet can be viewed on Google Docs: http://spreadsheets.google.com/ccc?k...thkey=CKGqjOAM


    Bonus

    This experience table can be applied to IJJI GunZ as it uses the same default multipliers.
    Attached Files Attached Files


  2. #2
    Account Upgraded | Title Enabled! gsterv900 is offline
    MemberRank
    Jun 2009 Join Date
    573Posts

    Re: Experience Table Formula

    ive been looking for this because all the other ones only go up to 91

  3. #3
    Account Upgraded | Title Enabled! x1nixmzeng is offline
    MemberRank
    Nov 2007 Join Date
    England, UKLocation
    240Posts

    Re: Experience Table Formula

    Quote Originally Posted by gsterv900 View Post
    ive been looking for this because all the other ones only go up to 91
    That version is also wrong from level 87+

  4. #4
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Experience Table Formula

    Nice, about time someone did a full version of the exp table.

  5. #5
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: Experience Table Formula

    Good job mate.

  6. #6
    FGunZ Developer StephanW is offline
    MemberRank
    Dec 2008 Join Date
    The NetherlandsLocation
    743Posts

    Re: Experience Table Formula

    Good job on doing all this :D.

  7. #7
    igunz.net Dawson is offline
    LegendRank
    Feb 2010 Join Date
    ::1 (Canada BC)Location
    2,581Posts

    Re: Experience Table Formula

    Awesome, for this I thank you.

  8. #8

    Re: Experience Table Formula

    Thanks a lot!

  9. #9
    Gunz League owner Hakurah is offline
    MemberRank
    Dec 2006 Join Date
    Rio de JaneiroLocation
    602Posts

    Re: Experience Table Formula

    Useful enough, thanks :)

  10. #10
    @RaGEZONE IRC hackerz10001 is offline
    MemberRank
    Aug 2008 Join Date
    RaGEZONELocation
    579Posts

    Re: Experience Table Formula

    Thank you, now I can make way more levels than 99

  11. #11
    Infraction Banned Composure is offline
    MemberRank
    Aug 2010 Join Date
    18Posts

    Re: Experience Table Formula

    Ripped from Infamous (My emulator):

    Code:
            private static void LoadFormula(ref float[] mulTable)
            {
                XmlReader reader = new XmlTextReader("formula.xml");
                int low = 0, high = 0;
                float value = 0.0f;
    
                while (reader.Read())
                {
                    switch (reader.Name)
                    {
                        case "LM":
                            low = int.Parse(reader.GetAttribute("lower"));
                            high = int.Parse(reader.GetAttribute("upper"));
                            value = reader.ReadElementContentAsFloat();
    
                            for (; low < high; low++)
                                mulTable[low] = value;
    
                            break;
                        case "FORMULA_TABLE":
                            if (reader.GetAttribute("id") != "NeedExpLM")
                                return;
                            break;
                    }
                }
            }
            private static void CalculateEXP()
            {
                float[] MulTable = new float[100];
                
                LoadFormula(ref MulTable);
                for (int i = 1; i < 100; ++i)
                {
                    UInt32 exp = (UInt32)((double)(i * i) * MulTable[i] * 100.0 + .5f);
                    EXP.EXPTable[i] = Convert.ToUInt32(EXP.EXPTable[i - 1] + 2 * exp);
                }
            }
    Standard multiplier was 1.

  12. #12
    Account Upgraded | Title Enabled! x1nixmzeng is offline
    MemberRank
    Nov 2007 Join Date
    England, UKLocation
    240Posts

    Re: Experience Table Formula

    @Composure: I don't understand your post.

  13. #13
    Infraction Banned Composure is offline
    MemberRank
    Aug 2010 Join Date
    18Posts

    Re: Experience Table Formula

    Quote Originally Posted by x1nixmzeng View Post
    @Composure: I don't understand your post.
    That's how the table is calculated it. You take the need exp and add it in from the formula.

  14. #14
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Experience Table Formula

    Quote Originally Posted by x1nixmzeng View Post
    Optional Rant

    No complete or accurate experience tables have been posted until now.
    This makes me sad.


    Downloads

    I decided to release the formula so it can confidently be used in dynamic signatures or server developments. Crediting 'x1nixmzeng' is appreciated.

    I've uploaded the spreadsheet version which shows how the table is calculated and attached a CSV version in the format:
    Code:
    Level,Experience,Experience difference
    Spreadsheet can be viewed on Google Docs: http://spreadsheets.google.com/ccc?k...thkey=CKGqjOAM


    Bonus

    This experience table can be applied to IJJI GunZ as it uses the same default multipliers.
    it doesn't seem correct to me due to the fact it doesn't follow the formula.xml standards 1-20 are the same and then it builds from there and around I forget which level it glitches

  15. #15
    Account Upgraded | Title Enabled! x1nixmzeng is offline
    MemberRank
    Nov 2007 Join Date
    England, UKLocation
    240Posts

    Re: Experience Table Formula

    Quote Originally Posted by gregon13 View Post
    it doesn't seem correct to me due to the fact it doesn't follow the formula.xml standards 1-20 are the same and then it builds from there..
    Not sure you even viewed the spreadsheet. The formula.xml values are the multipliers used in the calculations.

    Quote Originally Posted by gregon13 View Post
    ..and around I forget which level it glitches
    This is my work. Not one of the countless copies of the GZF version. Try this: test it against IJJI rankings, or with your own characters. I did these things myself to check it's accuracy.

  16. #16
    Alpha Member gregon13 is offline
    MemberRank
    Nov 2007 Join Date
    CanadaLocation
    1,945Posts

    Re: Experience Table Formula

    Quote Originally Posted by x1nixmzeng View Post
    Not sure you even viewed the spreadsheet. The formula.xml values are the multipliers used in the calculations.



    This is my work. Not one of the countless copies of the GZF version. Try this: test it against IJJI rankings, or with your own characters. I did these things myself to check it's accuracy.
    I viewed While Lookin at Formula.xml it doesn't fit and it doesn't feel correct to me by following this it glitches and or using the original formula.xml that comes with the un modded files it glitches then again doesn't help MAIET either takes short cuts, ignores the problem or trys to hide it completely



Advertisement