• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

trigger formula GUI

Status
Not open for further replies.
ok i need to create this formula in gui but its complicated i made it but didnt work so im starting from start asking for your guys help

i have done formula before just this is a bit complicated

RsFurmula-Xp.png


what it does is for each level it determindes the amount of xp needed untill the next level eg lvl 28 to 29 will be
212167b20ce22a8562428c3d6d48c1.png

the formual in simple terms
L = Level
(L/4)+75*2 (L/7) = XP Needed for level
need it to copy this table

LevelExp.Exp. DiffLevelExp.Exp. DiffLevelExp.Exp. Diff LevelExp.Exp. Diff
10N/A268,74089851111,94510,612761,336,443126,022
28383 279,73099052123,66011,715771,475,581139,138
3174912810,8241,09453136,59412,934781,629,200153,619
42761022912,0311,20754150,87214,278791,798,808169,608
53881123013,3631,33255166,63615,764801,986,068187,260
65121243114,8331,47056184,04017,404812,192,818206,750
76501383216,4561,62357203,25419,214822,421,087 228,269
88011513318,2471,79158224,46621,212832,673,114252,027
99691683420,2241,97759247,88623,420842,951,373278,259
101,1541853522,4062,18260273,74225,856853,258,594307,221
111,3582043624,8152,40961302,28828,546863,597,792339,198
121,5842263727,4732,65862333,80431,516873,972,294374,502
31,8332493830,4082,93563368,59934,795884,385,776413,482
142,1072743933,6483,24064407,01538,416894,842,295456,519
152,4113044037,2243,57665449,42842,413905,346,332504,037
162,7463354141,1713,94766496,25446,826915,902,831556,499
173,1153694245,5294,35867547,95351,699926,517,253614,422
183,5234084350,3394,81068605,03257,079937,195,629678,376
193,9734504455,6495,31069668,05163,019947,944,614748,985
204,4704974561,5125,86370737,62769,576958,771,558826,944
215,0185484667,9836,47171814,44576,818969,684,577913,019
225,6246064775,1277,14472899,25784,8129710,692,6291,008,052
236,2916674883,0147,88773992,89593,6389811,805,6061,112,977
247,0287374991,7218,707741,096,278103,3839913,034,4311,228,825
257,84281450101,3339,612751,210,421114,143
rep will be given to all helpers
 
Last edited:
Level 33
Joined
Mar 27, 2008
Messages
8,035
I don't know if this help, but...

EXP Formula
A formula is used to calculate the experience required. At N level, it requires it's previous experience required at N-1 level.

a = Previous Value Factor
b = Level Factor
c = Constant Factor
XP for level N = ((XP for level N - 1) * a) + (N * b) + c

or :

Æ’(N)=((f(N-1)-1)*a)+(N*b)+c


Example for basic values for melee games :

a = 1.00
b = 100
c = 100

Level 1 = 0
Level 2 = ((Level (1-0) Exp)*1)+(1*100)+100 = 0+100+100 = 200
Level 3 = ((Level (2-1) Exp)*1)+(2*100)+100 = 200+200+100 = 500
Level 4 = ((Level (3-1) Exp)*1)+(3*100)+100 = 500+300+100 = 900
Level 5 = ((Level (4-1) Exp)*1)+(4*100)+100 = 900+400+100 = 1400
Level 6 = ((Level (5-1) Exp)*1)+(5*100)+100 = 1400+500+100 = 2000
Level 7 = ((Level (6-1) Exp)*1)+(6*100)+100 = 2000+600+100 = 2700
Level 8 = ((Level (7-1) Exp)*1)+(7*100)+100 = 2700+700+100 = 3500
Level 9 = ((Level (8-1) Exp)*1)+(8*100)+100 = 3500+800+100 = 4400
Level 10 = ((Level (9-1) Exp)*1)+(2*100)+100 = 4400+900+100 = 5400
Source: World Editor Tutorials.net
 
Status
Not open for further replies.
Top