mob/NPC
DeathReaper
icon='angel.dmi'
hp=12993467
def=2485090569769076
density=1
layer=99999
verb
Use_your_skillpoints()
set src in oview(3)
alert("Here you can use your skill points to boost your stats! You gain 100 + stat for each skillpoint you have!")
switch(input("What stat do you want to boost?") in list ("Str","Def","Pow","Con","Cancel"))
if("Str")
alert("How much do you want to put?")
input(usr,"How much influence for Str?","Str") as num
if(usr.skillpoint>=1)
usr.skillpoint-=1
src<<"<b><font color=><b>You have boosted your Str!"
usr.str+=100
if(usr.skillpoint==0)return
Problem description: