Surefirer Posted June 28, 2019 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 113 Reputation: 1 Joined: 12/15/18 Last Seen: January 19, 2023 Share Posted June 28, 2019 (edited) Hello, There is an error when I install the magic circle rainbow. [Debug]: Source (NPC): FAKE_NPC (invisible/not on a map) [error]: buillding_hateffect: unsupported hat effect id 0 I did not change or add info in the HatEffectInfo.lua since its already there, the hat effect id for this item is 90. HAT_EF_MagiccircleRainbow = 90 [HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true} in my item db, I use this script: 48133,MagiccircleRainbow,MagiccircleRainbow,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,,{ hateffect HAT_EF_MagiccircleRainbow,true; },{},{ hateffect HAT_EF_MagiccircleRainbow,false; } The file goes to: Data/texture/effect/efst_MagiccircleRainbow I installed Magic_Circle and Gold_Shower before, there is no problem. I used the same way that I did before to install the magic circle rainbow. The only difference is now I use 2018-06-20eRegexeRE client. Can someone help me on this ? Thanks in advance Edited June 28, 2019 by Surefirer Quote Link to comment Share on other sites More sharing options...
0 Surefirer Posted July 7, 2019 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 113 Reputation: 1 Joined: 12/15/18 Last Seen: January 19, 2023 Author Share Posted July 7, 2019 I updated RA to the lastest, extract the lastest hateffectinfo.lub, and put it in my own grf, problem sloved. I think its either my hateffectinfo.lub formate outdated or missing something in the SCR folder. Quote Link to comment Share on other sites More sharing options...
0 Kakaroto Posted June 28, 2019 Group: Members Topic Count: 99 Topics Per Day: 0.02 Content Count: 635 Reputation: 95 Joined: 05/11/12 Last Seen: 19 hours ago Share Posted June 28, 2019 (edited) Have you add this effect in SRC too? https://github.com/rathena/rathena/blob/master/src/map/script.hpp#L1908 https://github.com/rathena/rathena/blob/master/src/map/script_constants.hpp#L7126 Edited June 28, 2019 by Kakaroto Quote Link to comment Share on other sites More sharing options...
0 Surefirer Posted June 28, 2019 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 113 Reputation: 1 Joined: 12/15/18 Last Seen: January 19, 2023 Author Share Posted June 28, 2019 2 hours ago, Kakaroto said: Have you add this effect in SRC too? https://github.com/rathena/rathena/blob/master/src/map/script.hpp#L1908 https://github.com/rathena/rathena/blob/master/src/map/script_constants.hpp#L7126 Hello, Thanks for reply. I took a look into the src, it was missing there, so I added the info into both script.hpp and script_constants.hpp. However, my client side give this this error (please see picture I attached). My hateffectinfo.lob info: HAT_EF_MagiccircleRainbow = 90 [HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true} I have no idea why it reads texture\effect\efst_mstone\stoneofint2.str, is it supposed to read texture\effect\efst_MagiccircleRainbow\\mc.str? Quote Link to comment Share on other sites More sharing options...
0 Kakaroto Posted June 28, 2019 Group: Members Topic Count: 99 Topics Per Day: 0.02 Content Count: 635 Reputation: 95 Joined: 05/11/12 Last Seen: 19 hours ago Share Posted June 28, 2019 1 hour ago, Surefirer said: Hello, Thanks for reply. I took a look into the src, it was missing there, so I added the info into both script.hpp and script_constants.hpp. However, my client side give this this error (please see picture I attached). My hateffectinfo.lob info: HAT_EF_MagiccircleRainbow = 90 [HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true} I have no idea why it reads texture\effect\efst_mstone\stoneofint2.str, is it supposed to read texture\effect\efst_MagiccircleRainbow\\mc.str? Downloas kro, extract and pick this files. Quote Link to comment Share on other sites More sharing options...
0 Surefirer Posted June 28, 2019 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 113 Reputation: 1 Joined: 12/15/18 Last Seen: January 19, 2023 Author Share Posted June 28, 2019 On 6/29/2019 at 1:42 AM, Kakaroto said: Downloas kro, extract and pick this files. It supposed to read texture\effect\efst_MagiccircleRainbow\\mc.str But its reading texture\effect\efst_mstone\stoneofint2 right now, they are completely different item. My hateffectinfo.lob info: HAT_EF_MagiccircleRainbow = 90 [HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true} As you can see, the resource file name is right, but its just not read this path. So here is what I exactly did to install this item, hopeful someone can help me. Server side: Item db: 48133,C_Magic_Circle_Rainbow,Magic_Circle_Rainbow,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,,{ hateffect HAT_EF_MAGICCIRCLERAINBOW,true; },{},{ hateffect HAT_EF_MAGICCIRCLERAINBOW,false; } added effect into scr both script.hpp and script_constants.hpp: HAT_EF_MAGICCIRCLERAINBOW, Client saide: extract all the file from JRO, added into: Data\texture\effect\efst_MagiccircleRainbow (including drop, collection, and item) hateffectinfo.lub: HAT_EF_MagiccircleRainbow = 90; [HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true} Till this point, I launch the game, it gave me error as shown in the attached picture above, so I found this file in the kro client, extracted, added into client. I launch the game again, it showed a totally different effect. I attached a picture. Really can not figure what is wrong. No one knows how to solve this issue? Is this consider a bug? solved. Quote Link to comment Share on other sites More sharing options...
0 Haganezuka Posted July 6, 2019 Group: Members Topic Count: 23 Topics Per Day: 0.01 Content Count: 116 Reputation: 4 Joined: 08/14/16 Last Seen: Wednesday at 04:43 PM Share Posted July 6, 2019 @Surefirer Please post your solution so other users who will encounter this in the future will have the solution ready. thanks Quote Link to comment Share on other sites More sharing options...
Question
Surefirer
Hello,
There is an error when I install the magic circle rainbow.
[Debug]: Source (NPC): FAKE_NPC (invisible/not on a map)
[error]: buillding_hateffect: unsupported hat effect id 0
I did not change or add info in the HatEffectInfo.lua since its already there, the hat effect id for this item is 90.
HAT_EF_MagiccircleRainbow = 90
[HatEFID.HAT_EF_MagiccircleRainbow] = {resourceFileName = "efst_MagiccircleRainbow\\mc.str", hatEffectPos = -12, hatEffectPosX = 0, isRenderBeforeCharacter = true, isIgnoreRiding = true}
in my item db, I use this script:
48133,MagiccircleRainbow,MagiccircleRainbow,4,0,,0,,,,0,0xFFFFFFFF,63,2,8192,,1,0,,{ hateffect HAT_EF_MagiccircleRainbow,true; },{},{ hateffect HAT_EF_MagiccircleRainbow,false; }
The file goes to:
Data/texture/effect/efst_MagiccircleRainbow
I installed Magic_Circle and Gold_Shower before, there is no problem. I used the same way that I did before to install the magic circle rainbow. The only difference is now I use 2018-06-20eRegexeRE client.
Can someone help me on this ? Thanks in advance
Edited by SurefirerLink to comment
Share on other sites
6 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.