ID:273529
 
Ok thank you for taking the time to look at my topic and im gonan get started now... i am currently trying to make a level system which implies the level is based on your stats and then divided example.

For Example.

This is Var ( i hope i have it as the right type )
Level = "[usr.tai+usr.nin+usr.wisdom/*10]"


Now this is an example of how i want format to be

Level = 200
Tai= 1200
Nin= 600
Wisdom= 200
------------
total = 2000
which divided by 10

2000 / 10 = 200
Whenever you change one of the independent variables, change the dependent variable.
levelsystem()

var/Ninvar=Mnin/10
var/Genvar=Mgen/10
var/Taivar=Mtai/10
level=round(Ninvar+Genvar+Taivar)
In response to Naruto1408
Thanks for the Hlp ( i had to change it around a lil but it helped )