Jump to content
  • 0

Star Gladiator Soul Link


Bringer

Question


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  740
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

done

Edited by Bringer
Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  177
  • Reputation:   4
  • Joined:  05/23/12
  • Last Seen:  

 

Increase damage on Boss monster and Holy monster by 100%.  [ERROR] RC_BOSS

		if (sc && sc->data[SC_SPIRIT && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
			sd->right_weapon.addrace[RC_ANGEL] += 100;
			sd->left_weapon.addrace[RC_ANGEL] += 100;
			sd->right_weapon.addele[ELE_HOLY] += 100;
			sd->left_weapon.addele[ELE_HOLY] += 100;
			sd->right_weapon.addrace[RC_BOSS] += 100;
			sd->left_weapon.addrace[RC_BOSS] += 100;
		}

Try using Class_Boss

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  740
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

 

 

Increase damage on Boss monster and Holy monster by 100%.  [ERROR] RC_BOSS

		if (sc && sc->data[SC_SPIRIT && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
			sd->right_weapon.addrace[RC_ANGEL] += 100;
			sd->left_weapon.addrace[RC_ANGEL] += 100;
			sd->right_weapon.addele[ELE_HOLY] += 100;
			sd->left_weapon.addele[ELE_HOLY] += 100;
			sd->right_weapon.addrace[RC_BOSS] += 100;
			sd->left_weapon.addrace[RC_BOSS] += 100;
		}

Try using Class_Boss

 

error 'Class_Boss' undeclared

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  54
  • Topics Per Day:  0.01
  • Content Count:  177
  • Reputation:   4
  • Joined:  05/23/12
  • Last Seen:  

 

 

 

Increase damage on Boss monster and Holy monster by 100%.  [ERROR] RC_BOSS

		if (sc && sc->data[SC_SPIRIT && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
			sd->right_weapon.addrace[RC_ANGEL] += 100;
			sd->left_weapon.addrace[RC_ANGEL] += 100;
			sd->right_weapon.addele[ELE_HOLY] += 100;
			sd->left_weapon.addele[ELE_HOLY] += 100;
			sd->right_weapon.addrace[RC_BOSS] += 100;
			sd->left_weapon.addrace[RC_BOSS] += 100;
		}

Try using Class_Boss

 

error 'Class_Boss' undeclared

 

MD_BOSS, try.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.02
  • Content Count:  291
  • Reputation:   26
  • Joined:  12/16/17
  • Last Seen:  

On 2/14/2017 at 11:59 AM, noobzter003 said:

RC_BOSS change to CLASS_BOSS

 

hi how did you fix your increase damage on boss monster and holy monsters?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  740
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

13 minutes ago, Ryo Osaki said:

hi how did you fix your increase damage on boss monster and holy monsters?

	if(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
		sd->right_weapon.addclass[CLASS_BOSS] += 100;
		sd->left_weapon.addclass[CLASS_BOSS] += 100;
		sd->right_weapon.addele[ELE_HOLY] += 100;
		sd->left_weapon.addele[ELE_HOLY] += 100;
	}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  45
  • Topics Per Day:  0.02
  • Content Count:  291
  • Reputation:   26
  • Joined:  12/16/17
  • Last Seen:  

55 minutes ago, Bringer said:

	if(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
		sd->right_weapon.addclass[CLASS_BOSS] += 100;
		sd->left_weapon.addclass[CLASS_BOSS] += 100;
		sd->right_weapon.addele[ELE_HOLY] += 100;
		sd->left_weapon.addele[ELE_HOLY] += 100;
	}

 

Thanks bro. ❤️ Love ya

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  41
  • Reputation:   0
  • Joined:  05/04/18
  • Last Seen:  

On 11/15/2019 at 9:13 AM, Ukiram said:

Thanks bro. ❤️ Love ya

 

On 11/15/2019 at 8:18 AM, Bringer said:

	if(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_STAR) {
		sd->right_weapon.addclass[CLASS_BOSS] += 100;
		sd->left_weapon.addclass[CLASS_BOSS] += 100;
		sd->right_weapon.addele[ELE_HOLY] += 100;
		sd->left_weapon.addele[ELE_HOLY] += 100;
	}

 

Hi, where will I put this?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  740
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

2 hours ago, Yhaj said:

 

Hi, where will I put this?

status.cpp

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.01
  • Content Count:  41
  • Reputation:   0
  • Joined:  05/04/18
  • Last Seen:  

15 hours ago, Bringer said:

status.cpp

Hmmm.. I mean where in the status.cpp? It's too many lines there...

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  740
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

On 9/22/2020 at 11:49 AM, Yhaj said:

Hmmm.. I mean where in the status.cpp? It's too many lines there...

Quote

 

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