Jump to content
  • 0

How to increase skill points basic for skills?


tathanngudong

Question


  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  64
  • Reputation:   3
  • Joined:  04/17/15
  • Last Seen:  

i edit Max Level of skill Throw Kunai but i don't know how increase skill point basic of that skill ...

Please...help

http://z124.jpg

Edited by tathanngudong
Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  431
  • Reputation:   164
  • Joined:  12/12/17
  • Last Seen:  

Do you mean you want to add more skill points? 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  64
  • Reputation:   3
  • Joined:  04/17/15
  • Last Seen:  

26 minutes ago, pajodex said:

Do you mean you want to add more skill points? 

Yes.. that's it!! please show me how "add skill points" ? 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  63
  • Reputation:   2
  • Joined:  08/10/12
  • Last Seen:  

Either increase the job level for a certain class or create an npc that sells skill points.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  63
  • Reputation:   2
  • Joined:  08/10/12
  • Last Seen:  

Either increase the job level for a certain class or create an npc that sells skill points.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  431
  • Reputation:   164
  • Joined:  12/12/17
  • Last Seen:  

23 minutes ago, tathanngudong said:

Yes.. that's it!! please show me how "add skill points" ? 

If you can wait, I will do it tomorrow. I'm about to sleep now. Or wait for someone to code. 

Here is the idea " skillpoints = skillpoints + n".. You have to modify the reset npc also. "If(job=ninja) set skillpoints, skillpoints + n" I'm on phone. Too lazy to format 

Edited by pajodex
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  64
  • Reputation:   3
  • Joined:  04/17/15
  • Last Seen:  

Just now, pajodex said:

If you can wait, I will do it tomorrow. I'm about to sleep now. Or wait for someone to code. 

thank you

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  431
  • Reputation:   164
  • Joined:  12/12/17
  • Last Seen:  

Hi,

Here you go, feel free to edit this at your needs.

//============= by pajodex ======================//
prontera,150,180,4	script	Skill Points giver	100,{
	If(SkillPoint_r == 1) {
		mes "You have received your extra skill points";
		close2;
		end;
	}
	mes "Hi, I can give you extra skill points";
	If(select("Yes:No") == 1 ) {
		next;
		mes "Here you go!";
		set SkillPoint,SkillPoint+100; // gives 100 extra skill points
		SkillPoint_r = 1;
		close;
	}
	else { mes "Come back at any time"; close; }
}

@tathanngudong

Edited by pajodex
  • Love 1
  • Like 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  64
  • Reputation:   3
  • Joined:  04/17/15
  • Last Seen:  

1 hour ago, pajodex said:

Hi,

Here you go, feel free to edit this at your needs.


//============= by pajodex ======================//
prontera,150,180,4	script	Skill Points giver	100,{
	If(SkillPoint_r == 1) {
		mes "You have received your extra skill points";
		close2;
		end;
	}
	mes "Hi, I can give you extra skill points";
	If(select("Yes:No") == 1 ) {
		next;
		mes "Here you go!";
		set SkillPoint,SkillPoint+100; // gives 100 extra skill points
		SkillPoint_r = 1;
		close;
	}
	else { mes "Come back at any time"; close; }
}

@tathanngudong

thanks you about npc... but that not i means... 
i mean... Max level of that skill is 10... Although my skill points are redundant...i can't increase max skill point for that skill... 

i don't know how to do that! please...show me what i should to do...
 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  431
  • Reputation:   164
  • Joined:  12/12/17
  • Last Seen:  

5 minutes ago, tathanngudong said:

thanks you about npc... but that not i means... 
i mean... Max level of that skill is 10... Although my skill points are redundant...i can't increase max skill point for that skill... 

i don't know how to do that! please...show me what i should to do...
 

I see, I think you have to edit the client side for this to work. 

 

You should be able to know how to use GRF Editor... Then do the ff


Find these:

data/luafiles514/luafiles/skillonfoz/skillinfolist.lub
data/luafiles514/luafiles/skillonfoz/skilldescript.lub

and look for this:

[SKID.NJ_KUNAI] = {

Then edit the max level.

 

Note: Don't forget to compile your grf

Edited by pajodex
  • Upvote 1
  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  20
  • Topics Per Day:  0.01
  • Content Count:  64
  • Reputation:   3
  • Joined:  04/17/15
  • Last Seen:  

Just now, pajodex said:

I see, I think you have to edit the client side for this to work. 


Find these:


data/luafiles514/luafiles/skillonfoz/skillinfolist.lub
data/luafiles514/luafiles/skillonfoz/skilldescript.lub

and look for this:


[SKID.NJ_KUNAI] = {

Then edit the max level

Oh my... that's it!! Thanks you so much 

http://871775d9f3adaff2d4c89612433063cd.gif

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  78
  • Topics Per Day:  0.03
  • Content Count:  431
  • Reputation:   164
  • Joined:  12/12/17
  • Last Seen:  

3 minutes ago, tathanngudong said:

Oh my... that's it!! Thanks you so much 

If this worked, tick this thread to solved. Also, upvote if you want /heh 

This will help other players who needs the same solution! Thanks and you're welcome~

 

PS: This should have been in client support xD

Edited by pajodex
Link to comment
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.   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.

×
×
  • Create New...