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

Then try setting the skill to one upon first login in global_player.pl under a sub EVENT_CONNECT, maybe?

Code:
sub EVENT_CONNECT
{
	if(!defined $qglobals{First_Connect})
	{
		quest::setskill(skillid, 1);
		quest::setglobal("First_Connect", 1, 5, "F");
	}
}
Reply With Quote