Jump to content

crazyarashi

Developer
  • Posts

    776
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by crazyarashi

  1. I have this item script for autumn headband but it's not working anyone can check it :))) { bonus2 bSkillUseSP,SN_WINDWALK,20; bonus bLongAtkRate,5; if(getrefine()>=6) { bonus bAtk,2*(readparam(bInt)/5); } if(getrefine()>=8) { bonus2 bSkillAtk,RA_ARROWSTORM,2*(BaseLevel/10); }
  2. Out of topic may i ask what tools are you using to view those sprites :))
  3. Good day is it possible to disable teleport skill on a certain map and fly wing is allowed?
  4. Hi Good Day Rathena is it possible for the client to read multiple iteminfo.lua, I want to add custom items without editing the iteminfo.lua like serveritems.lua If Possible any guides how? :)) Advanced thanks for the answer
  5. Yes it would be something like this if getareausers("prontera",<255>,<55>,<200>,<65>) { and for the coords not so sure but i think it works like this y1 ------------------------ y2 - - - - - - - - - - - - x1 --------------------------x2
  6. https://github.com/rathena/rathena/wiki/Custom_Items Detailed Guide :))
  7. You Should Add the trans skill to the baby jobs in the skill_tree database of your server, and you should edit the clientside skilltreeview.lub or lua so you can see the skills and learn it in game :))
  8. Can you post your instance.db here :))
  9. yes, i think so just add the instance on the instance db and the quest db, and also the script to pre-re npc's :))
  10. Woot~ Thanks maybe that's why the emperium is not appearing
  11. prontera,255,255,5 script Cash Points Exchanger 758,{ set .@i, #CASHPOINTS; mes "[Cashpoints Exchanger]"; mes "You have ^0055FF"+.@i+" Cash Points^000000."; if (!.@i) { mes "Please come back later."; close; } mes "I can convert your ^FF0000Cash Points^000000 To a ^FF0000TCG^000000."; next; if(select(" - Trade: - ^777777Leave^000000")==2) close; mes "[Cashpoints Exchanger]"; mes "How many would you like to convert?"; next; input .@j; mes "[Cashpoints Exchanger]"; if (.@j < 1 || .@j > #CASHPOINTS) { mes "That's an invalid amount."; close; } mes "Are you sure you want to exchange ^0055FF"+.@j+" Cashpoints^000000?"; if(select(" - Yes: - No")==2) close; mes " "; set #CASHPOINTS, #CASHPOINTS-(.@j*1); getitem 7227, .@j; mes "You now have "+countitem(7227)+" TCG."; close; } Cashpoints to TCG
  12. Hi Rathena Good Day, Im Using Euphy's WOE Controller and i have a question. I've search the forums about this and see multiple answers so im not really sure about it Should i disable agit_controller.txt and agit_main.txt? some say you should just disable the agit_controller.txt and some say you don't need to disable anything. Anyone can clarify this for me :))
  13. Hi i didn't extract the parent folder since there is tons of file in data.grf but ill add a proper directory for it :))
  14. Please do Thanks for the help :))
  15. you have an unknown bonus2 check your custom items or items you edited that use bonus2 maybe you had a typo or something. :))
  16. Good Day, Does anyone know any guide how to edit and improve SMF Forums. *Changing Themes *Adding Contents *Adding Transparent Pictures To make it livelier (If Possible) First time making a forums and need a quick guide :)) Advanced Thank you for the answers :))
  17. Did you try running your server in a different client?
  18. Hi do you mind if i ask for an example if the script. isequippedcnt :))
  19. Hi this is my dress pack try using i didn't download any from the net im only using the one from the jRO grf. Dress Pack.rar
  20. Try This https://github.com/rathena/FluxCP/blob/master/data/npc/DonationNPC.txt
  21. Before that have you checked if your flux donations is fully functional? :))
  22. Hi, Good Day Rathena I want to know how to limit an accessory effect to 1 only. For example of you wear 2 Glorious Ring Only 1 will effect. and the other wont have effect. Is it in the item script? or others..
×
×
  • Create New...