mob
Human_Master
icon = 'npc.dmi'
icon_state = "humandojo"
npc = 1
DblClick()
if(usr.dojo == 0)
alert("Welcome to the Dojo.")
alert("In order to leave this Dojo you must complete certain tasks to become a warrior with a Novice fighting style.")
alert("First, let me test your ki level and determine your Center of Gravity.")
usr.SetCGrav()
alert("Now that I have determined your Center of Gravity, go and begin to train and become a great warrior. Come back to me when you think you have reached your limit.")
usr.dojo = 1
if(usr.dojo == 1)
if(usr.powerlevel < 10)
alert("You are still not strong enough to leave this island. Come back soon though.")
else
alert("Ahh, my son you have finally reached the limit of my training. Here, enjoy your new fighting style.")
usr.style = "Novice"
alert("Oh yea, you might want to learn a little bit about your fighting style.")
alert("Your fighting style determines how you attack and also increases your damage.")
alert("This style was fairly easy to acquire, but the next styles will not be as easy.")
alert("Good luck my young warrior!")
Nothing is working for me. For some reason, when I double click on the npc, nothing happens at all. Please help.