Jump to content
  • 0

Pillar Effect Modification


Yuna

Question


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   5
  • Joined:  03/16/16
  • Last Seen:  

Hello,
I want the pillar effect to remain when you leave the area where the item is dropped and come back. Atm the effect stops once you leave the area.
Also, if the pillar effect can remain once you pick up the item. So when you drop the item on the floor again the effect will still be there.  I'm hoping this can be achieved through editing SRC.
Any help would be appreciated, thank you!
image.png.0c45507349c39c1a069911158003a627.png

Edited by Yuna
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  123
  • Topics Per Day:  0.03
  • Content Count:  640
  • Reputation:   82
  • Joined:  04/07/14
  • Last Seen:  

6 minutes ago, Yuna said:

Hello,
I want the pillar effect to remain when you leave the area where the item is dropped and come back. Atm the effect stops once you leave the area.
Also, if the pillar effect can remain once you pick up the item. So when you drop the item on the floor again the effect will still be there.  I'm hoping this can be achieved through editing SRC.
Any help would be appreciated, thank you!
image.png.0c45507349c39c1a069911158003a627.png

I think its not possible. Not unless you made it permanent effect when its drop.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   5
  • Joined:  03/16/16
  • Last Seen:  

3 minutes ago, Gidz Cross said:

I think its not possible. Not unless you made it permanent effect when its drop.

Actually it should be possible. I've seen some one do it. Take a look.
They made the effect remain after picking up the item.

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.01
  • Content Count:  271
  • Reputation:   62
  • Joined:  02/04/19
  • Last Seen:  

5 hours ago, Yuna said:

Actually it should be possible. I've seen some one do it. Take a look.
They made the effect remain after picking up the item.

 

Font https://rathena.org/board/topic/125515-item-option-drop-effect/

Commit: https://github.com/rathena/rathena/commit/9114083d7e2d35adb9effc9ac1053ff308cb066e

seems to be very easy just add the checks and colors

				if (optionCount == 1)
					p.dropeffectmode = DROPEFFECT_BLUE_PILLAR - 1;
				else if (optionCount == 2)
					p.dropeffectmode = DROPEFFECT_YELLOW_PILLAR - 1;
				else if (optionCount == 3)
					p.dropeffectmode = DROPEFFECT_PURPLE_PILLAR - 1;
				else if (optionCount == 4)
					p.dropeffectmode = DROPEFFECT_GREEN_PILLAR - 1;
				else
					p.dropeffectmode = DROPEFFECT_RED_PILLAR - 1;

I think it must be like this

Edited by M a p l e
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  67
  • Topics Per Day:  0.02
  • Content Count:  223
  • Reputation:   29
  • Joined:  10/21/12
  • Last Seen:  

@M a p l e how about card base or specific item ?

if (Megingard == )
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  123
  • Topics Per Day:  0.03
  • Content Count:  640
  • Reputation:   82
  • Joined:  04/07/14
  • Last Seen:  

On 7/5/2022 at 3:41 PM, Yuna said:

Actually it should be possible. I've seen some one do it. Take a look.
They made the effect remain after picking up the item.

 

Well this is itemdrop effect v2 (used by 2020 clients+) The one you posted is the initial release of the drop item effect which is HIGHLIGTING effect. They behave differently.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   5
  • Joined:  03/16/16
  • Last Seen:  

Still need a solution for this request. 

On 7/5/2022 at 3:35 PM, M a p l e said:

Font https://rathena.org/board/topic/125515-item-option-drop-effect/

Commit: https://github.com/rathena/rathena/commit/9114083d7e2d35adb9effc9ac1053ff308cb066e

seems to be very easy just add the checks and colors

				if (optionCount == 1)
					p.dropeffectmode = DROPEFFECT_BLUE_PILLAR - 1;
				else if (optionCount == 2)
					p.dropeffectmode = DROPEFFECT_YELLOW_PILLAR - 1;
				else if (optionCount == 3)
					p.dropeffectmode = DROPEFFECT_PURPLE_PILLAR - 1;
				else if (optionCount == 4)
					p.dropeffectmode = DROPEFFECT_GREEN_PILLAR - 1;
				else
					p.dropeffectmode = DROPEFFECT_RED_PILLAR - 1;

I think it must be like this

I have the pillar effect in-game, I'm trying to make it remain as I've explained on the post.

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