ID:143024
 
mob
InnerT
icon = 'NPCs.dmi'
name = "{NPC}Inner Hollow Teacher"
icon_state = "InnerT"
npc = 1
verb
Talk()
set category = "NPC's"
set src in oview(2)
if(usr.race == "Human")
if(usr.level < 20)
usr << "You are too weak to become a Inner Hollow, please train some more."
return
switch(input("Do you want to Release your Inner Hollow?", text) in list ("Yes","No"))
if("Yes")
if(usr.talkrace)
return
usr.talkrace = 1
usr.cankido = 1
world << "
Race Info: [usr] is now a Inner Hollow!"
usr.race = "Inner Hollow"
usr << "Your health got boosted by 500!"
usr.mhealth += 500
usr << "
Your reiatsu got boosted by 150!"
usr.mrei += 150
usr << "Your attack got boosted by 80!"
usr.mattack += 80
usr << "
Your defence got boosted by 80!"
usr.mdefence += 80
usr << "Your reiatsu power got boosted by 20!"
usr.reiatsu += 20
usr.race = "Inner Hollow"
usr.verbs += /mob/IHS1/verb/IHS1

im trying to add this skill i just made into my inner hollow race and it says undefind type path if any one can help plz do if u need the mob code ill post it as well
</20>
Always put DM code in <-dm> tags so it's readable.
How did that code even compile with all them weird indentations
In response to Scizzees
it really does not look like that i messed it up wile posting anyways i fixed the prob myself ill post here if i have anymore probs
Wrath69 wrote:
mob
> InnerT
> icon = 'NPCs.dmi'
> name = "{NPC}Inner Hollow Teacher"
> icon_state = "InnerT"
> npc = 1
> verb
> Talk()
> set category = "NPC's"
> set src in oview(2)
> if(usr.race == "Human")
> if(usr.level < 20)
> usr << "<b>You are too weak to become a Inner Hollow, please train some more."
> return
> switch(input("Do you want to Release your Inner Hollow?", text) in list ("Yes","No"))
> if("Yes")
> if(usr.talkrace)
> return
> usr.talkrace = 1
> usr.cankido = 1
> world << "<b><font color = aqua>Race Info: [usr] is now a Inner Hollow!"
> usr.race = "Inner Hollow"
> usr << "<b>Your health got boosted by 500!"
> usr.mhealth += 500
> usr << "<b>Your reiatsu got boosted by 150!"
> usr.mrei += 150
> usr << "<b>Your attack got boosted by 80!"
> usr.mattack += 80
> usr << "<b>Your defence got boosted by 80!"
> usr.mdefence += 80
> usr << "<b>Your reiatsu power got boosted by 20!"
> usr.reiatsu += 20
> usr.race = "Inner Hollow"
> usr.verbs += /mob/IHS1/verb/IHS1


usr.verbs += /mob/IHS1/verb/IHS1


You checked see if that has been wrote properly?