Hi guys,
 
	can someone help me with this script?
 
	i want the npc to check both Base and Job level (255) then reset level to 1, and give 1000 stat points, only 1 time per character.... is this possible to make?
 
	i have this for now, is working but i don't know what to add to give bonus stats, help plz !!!
 
	 
 
prontera,154,193,5	script	Renascer	4_F_NYDHOG,{
	if(BaseLevel < 255	&&	JobLevel < 255)
	{
		mes "Você ainda não está apto a Renascer.";
		mes "Volte quando estiver mais forte.";
		close;
	}
	else if(BaseLevel == 255	&&	JobLevel == 255)
	{
		mes "Você tem certeza que deseja Renascer?";
		mes "Você irá ganhar 1000 pontos de atributos extra!";
		if(select("[^4f179b•^000000] Sim, Claro!:[^4f179b•^000000] Não, Obrigado.") == 2) close;
		next;
		resetlvl(1);
		resetstatus;
		close;
		end;
	}
}