Jump to content
  • 0

how to force 2nd skill points on 2nd skill tree only?


Emad

Question


  • Group:  Members
  • Topic Count:  46
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  05/22/14
  • Last Seen:  

how to force 2nd skill points on 2nd skill tree only? is it possible?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  477
  • Reputation:   269
  • Joined:  06/13/17
  • Last Seen:  

This is the problem for instant job scripts that they forgot(or possibly don't know) to set jobchange_level/jobchange_level_3rd.. leaving them to 1 when their job is changed.

there's a player variable which are call "jobchange_level" for 2nd job tree, and "jobchange_level_3rd" for 3rd job tree. you will set them if you are using an instant job script.. 
to force the players use their 1st job points to 1st job tree only.. you must set their jobchange_level to their job level when they change into a 2nd job...

Sample would be you instant job from Novice to Lord Knight 99/70.. you must set jobchange_level to 50 if you want to force 49 points to your Swordsman Tree.. 
another example would be Novice to Rune Knight.. you will set the jobchange_level to 50 and you must also set the jobchange_level_3rd to 70 which is the max job level of the lord knight.

  • Love 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  46
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  05/22/14
  • Last Seen:  

14 minutes ago, Haruka Mayumi said:

This is the problem for instant job scripts that they forgot(or possibly don't know) to set jobchange_level/jobchange_level_3rd.. leaving them to 1 when their job is changed.

there's a player variable which are call "jobchange_level" for 2nd job tree, and "jobchange_level_3rd" for 3rd job tree. you will set them if you are using an instant job script.. 
to force the players use their 1st job points to 1st job tree only.. you must set their jobchange_level to their job level when they change into a 2nd job...

Sample would be you instant job from Novice to Lord Knight 99/70.. you must set jobchange_level to 50 if you want to force 49 points to your Swordsman Tree.. 
another example would be Novice to Rune Knight.. you will set the jobchange_level to 50 and you must also set the jobchange_level_3rd to 70 which is the max job level of the lord knight.

so do they function yet? if yes where i must write them?

Edited by emadkm
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  477
  • Reputation:   269
  • Joined:  06/13/17
  • Last Seen:  

1 hour ago, emadkm said:

so do they function yet? if yes where i must write them?

If you fully read and tried to understand what i wrote.. you just simply need to set the "jobchange_level" and/or "jobchange_level_3rd" character variable when they changed job..
sample script is

/*
{job changing script}
*/
.@ea = eaclass();
if(.@eac&EAJL_2)
	set jobchange_level,50;

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  46
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  05/22/14
  • Last Seen:  

On 2/17/2021 at 1:22 PM, Haruka Mayumi said:

If you fully read and tried to understand what i wrote.. you just simply need to set the "jobchange_level" and/or "jobchange_level_3rd" character variable when they changed job..
sample script is


/*
{job changing script}
*/
.@ea = eaclass();
if(.@eac&EAJL_2)
	set jobchange_level,50;

 

Edited by emadkm
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  46
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  05/22/14
  • Last Seen:  

On 2/17/2021 at 1:22 PM, Haruka Mayumi said:

If you fully read and tried to understand what i wrote.. you just simply need to set the "jobchange_level" and/or "jobchange_level_3rd" character variable when they changed job..
sample script is


/*
{job changing script}
*/
.@ea = eaclass();
if(.@eac&EAJL_2)
	set jobchange_level,50;

 

Edited by emadkm
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  211
  • Reputation:   17
  • Joined:  12/23/11
  • Last Seen:  

Because this is part of script

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  46
  • Topics Per Day:  0.01
  • Content Count:  109
  • Reputation:   0
  • Joined:  05/22/14
  • Last Seen:  

On 2/20/2021 at 10:29 AM, botka4aet said:

Because this is part of script

Ok it worked but when I put 3rd skills on 2nd class it won't work cuz it read as 2nd skills how to make it read as 3rd skills?

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...