Jump to content

Hello guys anyone can this fix status point


Sikdope

Recommended Posts


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  08/28/20
  • Last Seen:  

status point i dont know how to fix.. i need to 0 status point like mdef and def thankyou and godbless!

status.png

Edited by Sikdope
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  08/28/20
  • Last Seen:  

mga bro pwde pa help dito sa status points newbie lang salamat mga bro!

Hello mga bro! pwede ba pa help ako paano i-default yung status magiging 0 matk 0 def  0 mdef  maraming salamat mga bro!

bro san  ba sya aayusin? para maging ganito yung stats!

3.png

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1530
  • Reputation:   234
  • Joined:  08/03/12
  • Last Seen:  

0 status points means you cannot up any stats then.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  08/28/20
  • Last Seen:  

kahit reset stats ang taas pa din ng def 

Link to comment
Share on other sites

  • 2 months later...

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  55
  • Reputation:   4
  • Joined:  02/19/19
  • Last Seen:  

On 9/4/2020 at 10:51 AM, Sikdope said:

status point i dont know how to fix.. i need to 0 status point like mdef and def thankyou and godbless!

status.png

try this 

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

 

 

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);
	}
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
Reply to this topic...

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