Jump to content

Neo-Mind

Members
  • Posts

    806
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Neo-Mind

  1. can you show a snapshot of the issue. It seems to be a palette problem with the sprite but can't be sure unless we can see it.
  2. Working on Custom Weapon system for old clients - 80% done

  3. With the new lua system, any equip (right now only headgears, weapons and garments) that shows on a character has a second id called view id. This id is what the client uses to access information about where to get sprites for displaying on the character. For headgears we specify them through accname.lua and accessoryid.lua files. (accessoryid modification is actually optional if you dont mind using view id directly - example shown below). Now for your case - Angeling_Wings with view id 874 In accessoryid.lua [ACCESSORY_Angeling_Wings] = 874 In accname.lua [ACCESSORY_IDs.ACCESSORY_Angeling_Wings] = "_Angeling_Wings" If you find this confusing you can also do it this way : No modification in accessoryid.lua In accname.lua [874] = "_Angeling_Wings" From this the client simply suffixes the above string to the 32 and ¿© to get the sprite paths. So the sprites names should be => data\sprite\¾Ç¼¼»ç¸®\¿©\¿©_Angeling_Wings.spr data\sprite\¾Ç¼¼»ç¸®\¿©\¿©_Angeling_Wings.act data\sprite\¾Ç¼¼»ç¸®\³²\³²_Angeling_Wings.spr data\sprite\¾Ç¼¼»ç¸®\³²\³²_Angeling_Wings.act if you don't want the underscore before "Angeling" you should remove it in accname.lua as well. i diffed mine to 30000 too there is no issue in that (since it is the max value possible)
  4. Working on Custom Weapon system for old clients - 60% done

  5. Autopots transform and heal out!! Nice work
  6. Illusion Doping .... now that's dope!!!
  7. Now those are some awesome looking skulls
  8. perhaps this page should be called Clash of the Graphic Titans!! and to think i didn't see this till now ... *grabs popcorn*
  9. Looks like the permission is still pending. i never liked that sprite much to begin with anyways From the screenshot it looks good.
  10. no that is for new clients - In new clients those 7 different tables (text files) has been merged into one lua file placed in system subfolder called iteminfo.lub The format is different from the txt files. Anyways since you are using older client (even 2012-10-04a uses the old system of txt files) , you need not worry about iteminfo.lua
  11. ok first off i believe you have enabled the server to read from sql database for your item db To add custom items, you can add them in any of the following tables 1) item_db (only for pre renewal mode) 2) item_db_re (only for renewal mode) 3) item_db2 Generally i prefer to add stuff in item_db2 - since its blank initially and you won't mix up customs with originals EDIT: As for the description and other stuff they are client related. If you are adding headgears you need to edit accname and accessoryid files Also depending on your client's date you might need to edit iteminfo.lub inside system folder instead of those table txt files mentioned under "Item Placement on Data Folder"
  12. Edit -nevermind- its fixed
  13. you can use an item id within those two ranges for your custom bow and it should show up properly. Try using item id 18104 and higher - looks like they are free,
  14. 1) If you want the sprite as an add-on to the job sprite then you have to add it as a headgear or garment. 2) if you want to replace job sprite for the duration item is equipped (like how it is done for santa & summer suits), use changebase <jobid> in equip script and changebase Class in unequip script Reference for adding custom items. http://rathena.org/wiki/Custom_Items
  15. Its just a guess but i think the scarf is misaligned in one of the act positions. you can try walking down and see if it jumps up during that.
  16. New Clients don't have item id limits?? Then you are limited to using the item id range specified earlier. Ok here is what i found (as per the 2012-10-04a client) : The valid ranges for Bows are => 1700-1749, 18100 - 18499
  17. choose Encoding -> Korean -> EUC-KR
  18. nope Gunslinger weapons should be in => /data/sprite/Àΰ£Á·/°Ç³Ê Check here for details (search for Gunslinger) => http://ratemyserver.net/index.php?page=riot_bible_section&section=6
  19. damn should have been yellow hair
×
×
  • Create New...