ID:172871
 
ive looked in quite a few places on byond and i just cant seem to find the coding for classes and races and.if someone could show me how that would be nice.

i would also like to know how to set a level up system.

plz help. thanx:)Redgar
Redgar wrote:
ive looked in quite a few places on byond and i just cant seem to find the coding for classes and races and.if someone could show me how that would be nice.

i would also like to know how to set a level up system.

plz help. thanx:)Redgar

http://developer.byond.com/hub/SSJ4_Gohan_Majin/ CharacterSaving

That's Character Choice & Saving.

and

http://developer.byond.com/hub/SSJ4_Gohan_Majin/BattleSystem

Battle System/Leveling System

--SSJ4_Gohan_Majin
In response to SSJ4_Gohan_Majin
thnx Ssj4_Gohan_Majin. Your Reply helped me out alot:)
In response to Redgar
I didnt have time to look at his, but if you want a short one you could always use

mob/proc/Level_Up()
if(src.exp >= src.n_exp)
view() << "[usr] has leveled up!"
src.level += 1
src.max_hp += rand(30.50)
src.str += rand(10,20)
src.def += rand(10,20)
src.agil += rand(10,20)



Im not sure if this works or not because im at school and cannot compile it. I might have also left something out. You should add onto it with whatever else it is you will want to raise as well

-Chance-