View Single Post
  #14  
Old 08-17-2013, 11:59 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,604
Default

Yeah. If you mean by train it to them at said level, yes. But actually making it trainable on their Guildmaster, I don't believe that's possible, here's my interpretation of what you're saying.
Code:
sub EVENT_LEVEL_UP
{
	if($class eq "Bard")
	{
		if($ulevel == 40)
		{
			quest::setskill(id, 1);
		}
	}
	if($class eq "Rogue")
	{
		if($ulevel == 6)
		{
			quest::setskill(id, 1);
		}
	}
}
Reply With Quote