anacondaq Posted September 28, 2014 Group: Members Topic Count: 42 Topics Per Day: 0.01 Content Count: 1096 Reputation: 348 Joined: 02/26/12 Last Seen: May 30, 2023 Share Posted September 28, 2014 (edited) Hi, after this commit https://github.com/rathena/rathena/commit/9b4d922ef4ab11c76ce9e73dd18ac2c4aed9cb79 And this commit is good, you make emulator closer to official behavior. But players what are playing on the old pre-re servers, and what "used to the old" want to back showing AUTOGUARD and REFLECT shield icon to them. Can you please make a option in sources to enable/disable official behavior in sources? Thank you very much:) For example in /conf/battle/skill.conf // Show AUTOGUARD and REFLECT SHIELD skill icons for players under devotion. devo_show_icons: no Edited September 28, 2014 by Anacondaqq Quote Link to comment Share on other sites More sharing options...
1 Cydh Posted October 23, 2014 Group: Developer Topic Count: 153 Topics Per Day: 0.03 Content Count: 2285 Reputation: 748 Joined: 06/16/12 Last Seen: February 21 Share Posted October 23, 2014 if you want ti faster, and don't mind to edit it later, u can edit it hardcoded here src/map/status.c#L10257 if(!(flag&SCSTART_NOICON) && !(flag&SCSTART_LOADED && StatusDisplayType[type]))change to if(!(flag&SCSTART_LOADED && StatusDisplayType[type]))currently SCSTART_NOICON flag is being used by those SC from Devotion effects, nothing else, so remove the check won't breaks other behaviors 2 Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 22, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 22, 2014 Hi, after this commit https://github.com/rathena/rathena/commit/9b4d922ef4ab11c76ce9e73dd18ac2c4aed9cb79 And this commit is good, you make emulator closer to official behavior. But players what are playing on the old pre-re servers, and what "used to the old" want to back showing AUTOGUARD and REFLECT shield icon to them. Can you please make a option in sources to enable/disable official behavior in sources? Thank you very much:) For example in /conf/battle/skill.conf // Show AUTOGUARD and REFLECT SHIELD skill icons for players under devotion. devo_show_icons: no bump for this 1 Quote Link to comment Share on other sites More sharing options...
t3quila Posted October 22, 2014 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 36 Reputation: 4 Joined: 04/16/12 Last Seen: December 9, 2018 Share Posted October 22, 2014 i have no idea for add option in battle config, but if you just want showing Devotion Icon for who receiving status devotion, you just add this on status.c StatusIconChangeTable[SC_DEVOTION] = SI_DEVOTION;recompile, and you must add your image icon (example devotion.tga) to effect folder, and add name and description to your status icon lua (luafiles514/lua files/stateicon) Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 22, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 22, 2014 i have no idea for add option in battle config, but if you just want showing Devotion Icon for who receiving status devotion, you just add this on status.c StatusIconChangeTable[SC_DEVOTION] = SI_DEVOTION;recompile, and you must add your image icon (example devotion.tga) to effect folder, and add name and description to your status icon lua (luafiles514/lua files/stateicon) devotion icon is showing. but the autoguard and reflect shield doesnt show 1 Quote Link to comment Share on other sites More sharing options...
Napster Posted October 22, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted October 22, 2014 (edited) not test status.conf // Show Icon Status Effective for Devotion // defatut = no (offcial not show) devotion_icon_effectskill: yes devotion_icon_effectskill.patch Edited October 22, 2014 by Napster Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 22, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 22, 2014 not test status.conf // Show Icon Status Effective for Devotion // defatut = no (offcial not show) devotion_icon_effectskill: yes sir your diff doesn't support my git version i'm using 12427 downloaded last september 26 here is my src to help you src.zip Quote Link to comment Share on other sites More sharing options...
t3quila Posted October 23, 2014 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 36 Reputation: 4 Joined: 04/16/12 Last Seen: December 9, 2018 Share Posted October 23, 2014 you must patch it manually --" Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 23, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 23, 2014 you must patch it manually --" I added it manually Quote Link to comment Share on other sites More sharing options...
Napster Posted October 23, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted October 23, 2014 (edited) you must patch it manually --" I added it manually replace src/map map.rar Edited October 23, 2014 by Napster 1 Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 23, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 23, 2014 you must patch it manually --" I added it manually replace src/map Thank you sir. for future researchers I'm using git version 12427 if you want ti faster, and don't mind to edit it later, u can edit it hardcoded here src/map/status.c#L10257 if(!(flag&SCSTART_NOICON) && !(flag&SCSTART_LOADED && StatusDisplayType[type]))change to if(!(flag&SCSTART_LOADED && StatusDisplayType[type]))currently SCSTART_NOICON flag is being used by those SC from Devotion effects, nothing else, so remove the check won't breaks other behaviors Thank you for this one also. This will help the person who needs it and using the latest git Quote Link to comment Share on other sites More sharing options...
darking123 Posted October 28, 2014 Group: Members Topic Count: 318 Topics Per Day: 0.07 Content Count: 931 Reputation: 13 Joined: 12/20/11 Last Seen: November 21, 2020 Share Posted October 28, 2014 (edited) if you want ti faster, and don't mind to edit it later, u can edit it hardcoded here src/map/status.c#L10257 if(!(flag&SCSTART_NOICON) && !(flag&SCSTART_LOADED && StatusDisplayType[type]))change to if(!(flag&SCSTART_LOADED && StatusDisplayType[type]))currently SCSTART_NOICON flag is being used by those SC from Devotion effects, nothing else, so remove the check won't breaks other behaviors you must patch it manually --" I added it manually replace src/map Hi sir. when I tried to use the devotion skill to my party member. it says skill has failed. help please my item type is set to 4. i also tried to use type 5 but still doesn't work Edited October 28, 2014 by glemor123 Quote Link to comment Share on other sites More sharing options...
Question
anacondaq
Hi, after this commit https://github.com/rathena/rathena/commit/9b4d922ef4ab11c76ce9e73dd18ac2c4aed9cb79
And this commit is good, you make emulator closer to official behavior.
But players what are playing on the old pre-re servers, and what "used to the old" want to back showing AUTOGUARD and REFLECT shield icon to them.
Can you please make a option in sources to enable/disable official behavior in sources?
Thank you very much:)
For example in
/conf/battle/skill.conf
Edited by AnacondaqqLink to comment
Share on other sites
11 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.