Jump to content
  • 0

Character base level reset NPC to 1 to level up and gain more statpoints


Question

Posted (edited)

is there any NPC just like this?

the character will do a reset and the base level will be back to lvl 1 and do leveling again

to gain more stat points

every 10 reset there will be a reward

thanks in advance

Edited by AinsLord

7 answers to this question

Recommended Posts

  • 0
Posted (edited)
prontera,155,181,5	script	Sample	757,{
	if (BaseLevel < 99) {
		mes "You need to be at least level 99.";
	}
	else if (select("Reset", "cancel") == 1) {
		resetlvl 1;
		RESET_COUNT++;
		StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset.
		
		if (RESET_COUNT && RESET_COUNT % 10 == 0) {
			getitem 512, 10; // every 10 reset get apple.
		}
	}
	close;
}

 

Edited by Emistry
  • Upvote 1
  • 0
Posted
8 hours ago, Emistry said:
prontera,155,181,5	script	Sample	757,{
	if (BaseLevel < 99) {
		mes "You need to be at least level 99.";
	}
	else if (select("Reset", "cancel") == 1) {
		resetlvl 1;
		RESET_COUNT++
		StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset.
		
		if (RESET_COUNT && RESET_COUNT % 10 == 0) {
			getitem 512, 10; // every 10 reset get apple.
		}
	}
	close;
}

 

thanks a lot ill try this one ?❤️

  • 0
Posted
10 hours ago, Emistry said:
prontera,155,181,5	script	Sample	757,{
	if (BaseLevel < 99) {
		mes "You need to be at least level 99.";
	}
	else if (select("Reset", "cancel") == 1) {
		resetlvl 1;
		RESET_COUNT++
		StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset.
		
		if (RESET_COUNT && RESET_COUNT % 10 == 0) {
			getitem 512, 10; // every 10 reset get apple.
		}
	}
	close;
}

 

@Emistry i tried the script what happen is

first after reset no 

free 10 status point per reset.

second added stats are gone example like 500 str after reset it will become 1 str

can the status added stays after reset?

third i tried my reset stat NPC after resetting all the accumulated statpoints are gone

the only left is the 7237 statpoints that can be acquired lvl 1-255

i've checked my  use_statpoint_table: no 

its in "no" already still the extra statpoints is gone ?

can you help me thanks in advance

  • 0
Posted
44 minutes ago, Emistry said:
StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset.

add this to your reset npc script.

 

sir @Emistry

this one is already in the script but it doesnt add 10 stats points

prontera,143,173,5	script	Level Reset	757,{
	if (BaseLevel < 255) {
		mes "You need to be at least level 99.";
	}
	else if (select("Reset", "cancel") == 1) {
		resetlvl 1;
		RESET_COUNT++
		StatusPoint += (RESET_COUNT * 10); // free 10 status point per reset.
		
		if (RESET_COUNT && RESET_COUNT % 10 == 0) {
			getitem 512, 10; // every 10 reset get apple.
		}
	}
	close2;
}

i made it close2 coz it got warning on console

TY again in advance

  • 0
Posted

thanks again @Emistry

btw why i cant move after reset @go 0 is not even working

it takes like 10-15sec b4 i can move

and why if i reset stat the stats accumulated from reset is gone

i already modified the "use_statpoint_table: no "

TY in Advance

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.   Paste as plain text instead

  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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...