Jump to content
  • 0

Pillar Effect Modification


Question

Posted (edited)

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

6 answers to this question

Recommended Posts

  • 0
Posted
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.

  • 0
Posted
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.

 

  • 0
Posted (edited)
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
  • 0
Posted
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.

  • 0
Posted

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.

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...