Jump to content

Panic

Members
  • Posts

    43
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    United States

Recent Profile Visitors

2794 profile views

Panic's Achievements

Poring

Poring (1/15)

  • First Post
  • Collaborator
  • Reacting Well
  • Week One Done
  • One Month Later

Recent Badges

20

Reputation

10

Community Answers

  1. It only took me 2 years of complaining to get him to work on it. (^:
  2. This is not a normal headgear sprite, this headgear works the same way the "Digital Space" headgear works, it is a client effect (hence why it is has sprite files located in the effects folder) that is then used as a hat effect. You need a client version that has this client effect, or you can message @Haziel as I believe he made a version that works as a traditional headgear.
  3. Tokei keeps SDE up to date, use the mediafire (http://www.mediafire.com/file/p0zhcc8ipa6cjt3/SDE_v1.2.0.9.zip/file) link located in that thread, it should have the latest version of SDE which is v1.2.0.9 . (When it comes to programs created by Tokei always use the mediafire links in his posts, it is far easier to update mediafire links than it is file downloads on rA Also you should always check his change logs as he put in the logs that the program was update to work with yaml. ?)
  4. If you are getting this error then you did not set them properly, or your iteminfo is incorrect.
  5. data\luafiles514\lua files\transparentitem\transparentitem.lub You need to add more entries into this file. By default the file looks something like this: transparentItemlist = { { 1, 255, 255, 25500 }, { 2, 255, 255, 25500 }, { 3, 255, 255, 25500 }, { 4, 255, 255, 25500 }, { 5, 255, 255, 25500 }, { 6, 255, 255, 25500 }, { 7, 255, 255, 25500 }, { 8, 255, 255, 25500 }, { 9, 255, 255, 25500 }, { 10, 255, 255, 25500 }, { 11, 255, 255, 25500 }, { 12, 255, 255, 25500 }, { 13, 255, 255, 25500 }, { 14, 255, 255, 25500 }, { 15, 255, 255, 25500 }, { 16, 255, 255, 25500 }, { 17, 255, 255, 25500 }, { 18, 255, 255, 25500 }, { 19, 255, 255, 25500 }, { 20, 255, 255, 25500 }, { 21, 255, 255, 2000 }, { 22, 255, 255, 25500 }, { 23, 255, 255, 25500 }, { 24, 255, 255, 25500 }, { 25, 255, 255, 25500 }, { 26, 255, 255, 25500 }, { 27, 255, 255, 25500 }, { 28, 255, 255, 25500 }, { 29, 255, 255, 25500 }, { 30, 255, 255, 25500 }, { 31, 255, 255, 25500 }, { 32, 255, 255, 25500 }, { 33, 255, 255, 25500 }, { 34, 255, 255, 25500 }, { 35, 255, 255, 25500 }, { 36, 255, 200, 25500 }, { 37, 255, 255, 25500 }, { 38, 255, 200, 25500 }, { 39, 255, 255, 25500 }, { 40, 255, 255, 25500 }, { 41, 255, 255, 25500 }, { 42, 255, 255, 25500 }, { 43, 255, 255, 25500 }, { 44, 255, 255, 25500 }, { 44, 255, 255, 25500 }, { 45, 255, 255, 25500 }, { 46, 255, 255, 25500 }, { 47, 255, 255, 25500 }, { 48, 255, 255, 25500 }, { 49, 255, 255, 25500 }, { 50, 255, 255, 25500 }, { 0, 0, 0, 0 } } So depending on how many you want you can just ctrl D the lines a few times and ten change the numbers so if you wanted your ID range to go up to 200 you'd do something like this: transparentItemlist = { { 1, 255, 255, 25500 }, { 2, 255, 255, 25500 }, { 3, 255, 255, 25500 }, { 4, 255, 255, 25500 }, { 5, 255, 255, 25500 }, { 6, 255, 255, 25500 }, { 7, 255, 255, 25500 }, { 8, 255, 255, 25500 }, { 9, 255, 255, 25500 }, { 10, 255, 255, 25500 }, { 11, 255, 255, 25500 }, { 12, 255, 255, 25500 }, { 13, 255, 255, 25500 }, { 14, 255, 255, 25500 }, { 15, 255, 255, 25500 }, { 16, 255, 255, 25500 }, { 17, 255, 255, 25500 }, { 18, 255, 255, 25500 }, { 19, 255, 255, 25500 }, { 20, 255, 255, 25500 }, { 21, 255, 255, 2000 }, { 22, 255, 255, 25500 }, { 23, 255, 255, 25500 }, { 24, 255, 255, 25500 }, { 25, 255, 255, 25500 }, { 26, 255, 255, 25500 }, { 27, 255, 255, 25500 }, { 28, 255, 255, 25500 }, { 29, 255, 255, 25500 }, { 30, 255, 255, 25500 }, { 31, 255, 255, 25500 }, { 32, 255, 255, 25500 }, { 33, 255, 255, 25500 }, { 34, 255, 255, 25500 }, { 35, 255, 255, 25500 }, { 36, 255, 200, 25500 }, { 37, 255, 255, 25500 }, { 38, 255, 200, 25500 }, { 39, 255, 255, 25500 }, { 40, 255, 255, 25500 }, { 41, 255, 255, 25500 }, { 42, 255, 255, 25500 }, { 43, 255, 255, 25500 }, { 44, 255, 255, 25500 }, { 44, 255, 255, 25500 }, { 45, 255, 255, 25500 }, { 46, 255, 255, 25500 }, { 47, 255, 255, 25500 }, { 48, 255, 255, 25500 }, { 49, 255, 255, 25500 }, { 50, 255, 255, 25500 }, { 51, 255, 255, 25500 }, { 52, 255, 255, 25500 }, { 53, 255, 255, 25500 }, { 54, 255, 255, 25500 }, { 55, 255, 255, 25500 }, { 56, 255, 255, 25500 }, { 57, 255, 255, 25500 }, { 58, 255, 255, 25500 }, { 59, 255, 255, 25500 }, { 60, 255, 255, 25500 }, { 61, 255, 255, 25500 }, { 62, 255, 255, 25500 }, { 63, 255, 255, 25500 }, { 64, 255, 255, 25500 }, { 65, 255, 255, 25500 }, { 66, 255, 255, 25500 }, { 67, 255, 255, 25500 }, { 68, 255, 255, 25500 }, { 69, 255, 255, 25500 }, { 70, 255, 255, 25500 }, { 71, 255, 255, 25500 }, { 72, 255, 255, 25500 }, { 73, 255, 255, 25500 }, { 74, 255, 255, 25500 }, { 75, 255, 255, 25500 }, { 76, 255, 255, 25500 }, { 77, 255, 255, 25500 }, { 78, 255, 255, 25500 }, { 79, 255, 255, 25500 }, { 80, 255, 255, 25500 }, { 81, 255, 255, 25500 }, { 82, 255, 255, 25500 }, { 83, 255, 255, 25500 }, { 84, 255, 255, 25500 }, { 85, 255, 255, 25500 }, { 86, 255, 255, 25500 }, { 87, 255, 255, 25500 }, { 88, 255, 255, 25500 }, { 89, 255, 255, 25500 }, { 90, 255, 255, 25500 }, { 91, 255, 255, 25500 }, { 92, 255, 255, 25500 }, { 93, 255, 255, 25500 }, { 94, 255, 255, 25500 }, { 95, 255, 255, 25500 }, { 96, 255, 255, 25500 }, { 97, 255, 255, 25500 }, { 98, 255, 255, 25500 }, { 99, 255, 255, 25500 }, { 100, 255, 255, 25500 }, { 101, 255, 255, 25500 }, { 102, 255, 255, 25500 }, { 103, 255, 255, 25500 }, { 104, 255, 255, 25500 }, { 105, 255, 255, 25500 }, { 106, 255, 255, 25500 }, { 107, 255, 255, 25500 }, { 108, 255, 255, 25500 }, { 109, 255, 255, 25500 }, { 110, 255, 255, 25500 }, { 111, 255, 255, 25500 }, { 112, 255, 255, 25500 }, { 113, 255, 255, 25500 }, { 114, 255, 255, 25500 }, { 115, 255, 255, 25500 }, { 116, 255, 255, 25500 }, { 117, 255, 255, 25500 }, { 118, 255, 255, 25500 }, { 119, 255, 255, 25500 }, { 120, 255, 255, 25500 }, { 121, 255, 255, 25500 }, { 122, 255, 255, 25500 }, { 123, 255, 255, 25500 }, { 124, 255, 255, 25500 }, { 125, 255, 255, 25500 }, { 126, 255, 255, 25500 }, { 127, 255, 255, 25500 }, { 128, 255, 255, 25500 }, { 129, 255, 255, 25500 }, { 130, 255, 255, 25500 }, { 131, 255, 255, 25500 }, { 132, 255, 255, 25500 }, { 133, 255, 255, 25500 }, { 134, 255, 255, 25500 }, { 135, 255, 255, 25500 }, { 136, 255, 255, 25500 }, { 137, 255, 255, 25500 }, { 138, 255, 255, 25500 }, { 139, 255, 255, 25500 }, { 140, 255, 255, 25500 }, { 141, 255, 255, 25500 }, { 142, 255, 255, 25500 }, { 143, 255, 255, 25500 }, { 144, 255, 255, 25500 }, { 145, 255, 255, 25500 }, { 146, 255, 255, 25500 }, { 147, 255, 255, 25500 }, { 148, 255, 255, 25500 }, { 149, 255, 255, 25500 }, { 150, 255, 255, 25500 }, { 151, 255, 255, 25500 }, { 152, 255, 255, 25500 }, { 153, 255, 255, 25500 }, { 154, 255, 255, 25500 }, { 155, 255, 255, 25500 }, { 156, 255, 255, 25500 }, { 157, 255, 255, 25500 }, { 158, 255, 255, 25500 }, { 159, 255, 255, 25500 }, { 160, 255, 255, 25500 }, { 161, 255, 255, 25500 }, { 162, 255, 255, 25500 }, { 163, 255, 255, 25500 }, { 164, 255, 255, 25500 }, { 165, 255, 255, 25500 }, { 166, 255, 255, 25500 }, { 167, 255, 255, 25500 }, { 168, 255, 255, 25500 }, { 169, 255, 255, 25500 }, { 170, 255, 255, 25500 }, { 171, 255, 255, 25500 }, { 172, 255, 255, 25500 }, { 173, 255, 255, 25500 }, { 174, 255, 255, 25500 }, { 175, 255, 255, 25500 }, { 176, 255, 255, 25500 }, { 177, 255, 255, 25500 }, { 178, 255, 255, 25500 }, { 179, 255, 255, 25500 }, { 180, 255, 255, 25500 }, { 181, 255, 255, 25500 }, { 182, 255, 255, 25500 }, { 183, 255, 255, 25500 }, { 184, 255, 255, 25500 }, { 185, 255, 255, 25500 }, { 186, 255, 255, 25500 }, { 187, 255, 255, 25500 }, { 188, 255, 255, 25500 }, { 189, 255, 255, 25500 }, { 191, 255, 255, 25500 }, { 192, 255, 255, 25500 }, { 193, 255, 255, 25500 }, { 194, 255, 255, 25500 }, { 195, 255, 255, 25500 }, { 196, 255, 255, 25500 }, { 197, 255, 255, 25500 }, { 198, 255, 255, 25500 }, { 199, 255, 255, 25500 }, { 200, 255, 255, 25500 }, { 0, 0, 0, 0 } }
  6. Glad I could help friend, have a good day.
  7. You need to create entries for your garments in spriterobeid.lub (where you assign it's view ID similar to accessoryid.lub) and spriterobename.lub (where you assign the ID to a resource like accname.lub) it's pretty self explanatory when you open the lubs. Both lubs can be found in your datainfo folder. This would be your entry for the wings you are trying to use (directly from kRO). spriterobeid.lub ROBE_WINGS_OF_FALLEN_ANGEL = 3, 3 would be your view ID for your DB entry (you can change the ID if you wish). spriterobename.lub [SPRITE_ROBE_IDs.ROBE_WINGS_OF_FALLEN_ANGEL] = "타락천사의날개", Make sure to put the name entry in both tables RobeNameTable and RobeNameTable_Eng.
  8. You need to add it as a garment, not a headgear. If you do not add it as a garment it will not register with the transparentitem.lub. You need to set the equip location to 8192 for costume or 4 for non-costume garment.
  9. This is a layering issue, not a sprite issue, depending on your client version you will need to grab/edit the files in data/luafiles514/lua files/spreditinfo @Haziel has an adjusted version you can find on his discord (https://discord.gg/3yKG3WfTaY) under #support-files. (it might be uploaded somewhere here on rA but I'm not sifting through the clown fiesta file section :^])
  10. Well it all comes down to what do you want out of your server? Are you planning on making a Pre-renewal server? Renewal server? We'd need to know what you plan to do in order to give you any tips on clients. And yes as usual, I would avoid any hosting service that is specifically targeted at RO. (personal opinion though)
  11. This hat does not have any sprite or act files outside of it's drag and drop. This is a client effect combo'd with the hat effect system depending on your client version it'll be effect 974 and hat effect 23 assuming you are using the official hateffectinfo.lub.
  12. This means you are using models on your custom map that your client can't handle. If you are using the new .rsm2 models you need to upgrade to a 2020 client to be able to enter this map. Either remove your .rsm2 models on the map or upgrade your client. (doesn't look like this map is) depending on how old your client is it could be some of the newer pront textures.
  13. You'd have to show me a specific error, because neither one of those files was largely changed with the 2020 client. You can reach out to me on Discord if you want me to help without needing to wait for forum replies. Panic#1463
×
×
  • Create New...