Jump to content
  • 0

how to disable transcendent bonus stat point?


zaruramen

Question


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  41
  • Reputation:   0
  • Joined:  08/27/15
  • Last Seen:  

hello

 

I try to set this

 

// Status points bonus for transcendent class
transcendent_status_points: 52 to 1 (0 is invalid) 

 

 

 
but when I changed class to transcendent I still got 52 bonus stat point
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Content Moderator
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  639
  • Reputation:   596
  • Joined:  11/25/11
  • Last Seen:  

On src/map/pc.c.
There's a function that grants or take the Transcedent Classes' Bonus when a non-Trans turn into Trans and vice-versa.

	// Give or reduce transcendent status points
	if( (b_class&JOBL_UPPER) && !(sd->class_&JOBL_UPPER) ){ // Change from a non t class to a t class -> give points
		sd->status.status_point += battle_config.transcendent_status_points;
		clif_updatestatus(sd,SP_STATUSPOINT);
	}else if( !(b_class&JOBL_UPPER) && (sd->class_&JOBL_UPPER) ){ // Change from a t class to a non t class -> remove points
		if( sd->status.status_point < battle_config.transcendent_status_points ){
			// The player already used his bonus points, so we have to reset his status points
			pc_resetstate(sd);
		}
		sd->status.status_point -= battle_config.transcendent_status_points;
		clif_updatestatus(sd,SP_STATUSPOINT);
	}

The answer for your task may be there, try to modify, disable or comment it.

Edited by Haziel
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.01
  • Content Count:  140
  • Reputation:   11
  • Joined:  09/28/14
  • Last Seen:  

What do you mean by stat bonus @.@

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  41
  • Reputation:   0
  • Joined:  08/27/15
  • Last Seen:  

What do you mean by stat bonus @.@

 

when I'm level 99 I got 1325 point with transcendent class but with other class I got 1273 point.

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

 

hello

 

I try to set this

 

// Status points bonus for transcendent class
transcendent_status_points: 52 to 1 (0 is invalid) 

 

 

 
but when I changed class to transcendent I still got 52 bonus stat point

 

did you reload the setting using @reloadbattleconf?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  41
  • Reputation:   0
  • Joined:  08/27/15
  • Last Seen:  

 

 

hello

 

I try to set this

 

// Status points bonus for transcendent class
transcendent_status_points: 52 to 1 (0 is invalid) 

 

 

 
but when I changed class to transcendent I still got 52 bonus stat point

 

did you reload the setting using @reloadbattleconf?

 

yes I did :)

 

 

@Haziel

 

Worked Thank you very much

Edited by zaruramen
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...