Jump to content

TheDerpySupport

Members
  • Posts

    208
  • Joined

  • Last visited

  • Days Won

    5

Community Answers

  1. TheDerpySupport's post in How to use Adventurer Agency! was marked as the answer   
    You need to have parties and they have to post looking for requests on the agency board; it's just so you can find open parties for dungeons and stuff
  2. TheDerpySupport's post in show sprite on Accessory was marked as the answer   
    Sadly not, You could simply use the shadow equipment headgear slots for this though.
  3. TheDerpySupport's post in [FIXED] How do I get Inventory features ? was marked as the answer   
    This is probably due to the client features you're looking for being in a later client date. Some features are hard coded into the clients themselves.
  4. TheDerpySupport's post in HELP - Bonus of tranclasses attributes! was marked as the answer   
    These are from job level bonuses. The file you want is Job_db2.txt
  5. TheDerpySupport's post in How to display player name in a mes during a talk with an NPC was marked as the answer   
    You would do something like
    mes "What's up "+strcharinfo(0)+", all good?";  
  6. TheDerpySupport's post in How to add icons here was marked as the answer   
    You would either need heavy client edits or just simply upgrade to a 2018 client
  7. TheDerpySupport's post in Bodystyle on Mob Avail was marked as the answer   
    yes this is possible; It requires a source edit though; Give me a few moments to find something for it .   https://github.com/rathena/rathena/pull/2849
  8. TheDerpySupport's post in 2018-05-30bRagexeRE not support langtype? was marked as the answer   
    With 2018 Clients you can do one of two things to support langtype 1;
    1. In your `luafiles514/lua files/` folder there is a folder called "Service_Korea" and within it a file called "ExternalSettings_KR"; Rename the folder to "service_usa" and the file to "externalsettings_usa"
    2. With NEMO diff your client to use the "Always read Korean External Settings"
     
    This is not true so please do not spread false information
  9. TheDerpySupport's post in Annoying Icon was marked as the answer   
    Its not located in System folder. Thats to remove the icons from the minimaps. Use this link/file to remove them all if thats what you want. https://github.com/TheDerpySupport/Untold-RO/blob/master/data/luafiles514/lua files/signboardlist.lub
  10. TheDerpySupport's post in GM job player change was marked as the answer   
    You do not need to create a script for this; GM Level 99 can already do this by using #job <player> <job>; It will run as the player using the command
  11. TheDerpySupport's post in New Jobs Palettes was marked as the answer   
    You'll need at least a 2018-05-30 client to view Star Emperor and Soul Reaper; There may be an option in the script to save costume because Secrets has explained to me how it saves the costume
  12. TheDerpySupport's post in Need help using rand command. was marked as the answer   
    Well this is my script you're using so It's relatively easy to understand;
    if (rand(0,9) == 2){ getitem 26080,1; //Credit specialeffect2 EF_TEMP_OK; mapannounce strcharinfo(3),strcharinfo(0)+" has caught a ATM Credit Card x1!",bc_map,"0xff77ff"; } This would be 10%
    rand(0,19) would be 5% and 1% would be rand(0,99)
  13. TheDerpySupport's post in Korean Characters on some jobs how to hex? was marked as the answer   
    For Langtype 1 you need to change the service_korea folder to service_usa and externalsettings_kr.lub to externalsettings_usa.lub
  14. TheDerpySupport's post in BLUE PUB NEAR PRONTERA MARKET was marked as the answer   
    Yes it's called Signboard.lub located in luafiles514/lua files/;
    If you'd like you can use my Signboard file to overwrite the default one.
    https://github.com/TheDerpySupport/Untold-RO/blob/master/data/luafiles514/lua files/signboardlist.lub
  15. TheDerpySupport's post in rAthena Inquiries was marked as the answer   
    The complete pack has to be manually updated and is not ideal for trying to run a server from;
    As for the costumes, yes, you need to add them to your GRFs.;
    We recently just added support for Star Emperor and Soul Reaper within this week and you will have to download rAthena from our git(link in my signature) and you can follow the wiki(also in my signature) for installation help.
  16. TheDerpySupport's post in rATHENA client supporting Star Emperor & Soul Reaper was marked as the answer   
    https://clients.herc.ws/download/TopdeyflopChekAyHadlektuvEmbia/EcouHawOottAtGiamEsjejmymRojwy/2018-05-30bRagexeRE.exe
  17. TheDerpySupport's post in ASPD was marked as the answer   
    In Renewal all weapons and shields have ASPD penalties, You can either disable renewal(requires recompile) or change the penalties at db\re\job_db1.txt
  18. TheDerpySupport's post in Badges NPC Shop was marked as the answer   
    You can do this using an itemshop type NPC.
     
    -%TAB%itemshop%TAB%<NPC Name>%TAB%<sprite id>,<costitemid>{:<discount>},<itemid>:<price>{,<itemid>:<price>...} <map name>,<x>,<y>,<facing>%TAB%itemshop%TAB%<NPC Name>%TAB%<sprite id>,<costitemid>{:<discount>},<itemid>:<price>{,<itemid>:<price>...}  
  19. TheDerpySupport's post in Coinshop that uses coin as currency was marked as the answer   
    You can do this using an itemshop type NPC.
    -%TAB%itemshop%TAB%<NPC Name>%TAB%<sprite id>,<costitemid>{:<discount>},<itemid>:<price>{,<itemid>:<price>...} <map name>,<x>,<y>,<facing>%TAB%itemshop%TAB%<NPC Name>%TAB%<sprite id>,<costitemid>{:<discount>},<itemid>:<price>{,<itemid>:<price>...}  
  20. TheDerpySupport's post in scr logo bug was marked as the answer   
    This is due to you trying to use transparent pixels/anti-aliasing on the image instead of solid pixels; You will need to completely redo the outer edge of the image in a solid pixel and then when you fill the transparency with pink it will be fixed.
  21. TheDerpySupport's post in Equip with clothing script was marked as the answer   
    i = getlook(LOOK_CLOTHES_COLOR); setlook LOOK_CLOTHES_COLOR,1;
    setlook LOOK_CLOTHES_COLOR, i;
    The top part you put in your OnEquip and the 2nd part is OnUnequip;
  22. TheDerpySupport's post in Cluckers winning chance. was marked as the answer   
    It means it generates a number at random 1~50 and if it lands on 1, 2, or 3 you win; You can either lower the rand(50) or increase the number less than to look for.
  23. TheDerpySupport's post in How to delete magnifying glass icon that appear on Guide NPC head? was marked as the answer   
    You need to edit the signboard lub file.
    https://github.com/TheDerpySupport/Untold-RO/blob/master/data/luafiles514/lua files/signboardlist.lub
    You can download this file and place it in the appropriate location to remove them all
  24. TheDerpySupport's post in Requesting a Guide on how to add Quests on LOC or EVT tabs in your ALT+U window was marked as the answer   
    Check out my files on it.
    https://github.com/TheDerpySupport/Untold-RO/tree/master/data/luafiles514/lua files/quest
  25. TheDerpySupport's post in costume_11 resource error and crash the client was marked as the answer   
    For the last part you have to set your packetversion in source and recompile your server;
    Àΰ£Á·(Job/Hair)/¸öÅë (Job)/
    So it's a female act file you're missing. As far as the costume_11 folder I have no clue but you probably need to upgrade your kRO files.
×
×
  • Create New...