Jump to content
  • 0
Sign in to follow this  
skyundersea

[Help] Rebirth Script

Question

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;
	}
}

 

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0
On 3/5/2019 at 4:46 AM, skyundersea said:

i have this for now, is working but i don't know what to add to give bonus stats, help plz !!!

StatusPoint += 1000;

it seems you forgot to add jobchange into novice high

and no need to resetstatus if your resetlvl is type 1

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.