Jump to content

Start_

Members
  • Posts

    928
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by Start_

  1. Try change this function to npc script-based.
  2. It should limit all bonus not just subdefele try look at src on my repo. (Use Notepad++ Find all by [Start]) https://github.com/kaninhot004/rathena/tree/monster_room In my server player had random option about 1000% and they still died
  3. if (sd->indexed_bonus.subdefele[type2] > 99) sd->indexed_bonus.subdefele[type2] = 99; Limit it on src '\src\map\pc.cpp' line 4353
  4. Rate 1 is smallest value that can be put on db. Try set all drop rate in conf to normal value (100) and type @mi 1086 In game, it will show exact drop rate 0.01% for sure. Then adjust drop rate at your wish and check with mi again.
  5. If you cant enter character screen it's was hair, hair color, clothes color, robe, bodystyle, headgear look for sure. Try go into sql database > char -> set all above value to 0 After that track it which error came from.
  6. You should search in src folders like {bank, button, packet, receive}. (Not sure, I'm not know that much) Then write a debug console command to print out message if you're at correct coding lines.
  7. Look like it's client command but some command link up with server like /w The /commands I think it's not link up with server. so maybe you should try set motd? Also /showname can be done in savedata folder (OptionInfo.lua)
  8. Use nemo to made new clients (I can't remember what it call, try find something call hotkey, allow, etc.)
  9. Install correct data (By your client date) from https://github.com/zackdreaver/ROenglishRE Try backup first then copy paste till it worked if you confused.
  10. Try change to snprintf(atcmd_output, CHAT_SIZE_MAX, "%d +%d[%d,%d,%d,%d] | Price %d | Amount %d | Map %s (%d,%d) | Seller %s",pl_sd->cart.u.items_cart[pl_sd->vending[j].index].nameid ,pl_sd->cart.u.items_cart[pl_sd->vending[j].index].refine
  11. https://lmgtfy.app/?q=Zackdreaver+ROenglishRE+Sprite+Collection Install his Sprite Collection too. Use Google
  12. Any error pop? And make sure you align spacebar correctly.
  13. Can you explained more about unknown encoding? Or capture screenshot.
  14. If you're similar with Unity you can grab my repo https://github.com/kaninhot004/item_db_to_iteminfo_converter and do this. First you need to put item_db, etc.. into Resources folders. (If you're using normal rAthena databases you don't need to do because I already update it.) 1.) Tap Start > Sync 2.) Stop the play mode 3.) Go to Assets/Item Database Editor 4.) Tap Modify all ( Play around with checkmark that call remove item restrictions ) 5.) Tap Print Item Database -> All item db will print at Output folders.
  15. Use Grf Editor to extract files.
  16. db > re > mob skill db Remove TELEPORT from all MVP.
  17. setarray .@indices[1], EQI_ACC_L,EQI_ACC_R,EQI_SHOES,EQI_GARMENT,EQI_HEAD_LOW,EQI_HEAD_MID,EQI_HEAD_TOP,EQI_ARMOR,EQI_HAND_L,EQI_HAND_R,EQI_COSTUME_HEAD_TOP,EQI_COSTUME_HEAD_MID,EQI_COSTUME_HEAD_LOW,EQI_COSTUME_GARMENT,EQI_SHADOW_ARMOR,EQI_SHADOW_WEAPON,EQI_SHADOW_SHIELD,EQI_SHADOW_SHOES,EQI_SHADOW_ACC_R,EQI_SHADOW_ACC_L; for(.@i = 1; .@i<getarraysize(.@indices); ++.@i) { if(getequipisequiped(.@indices[.@i])) { .@menu$ = .@menu$ + F_getpositionname(.@indices[.@i]) + "-[" + getequipname(.@indices[.@i]) + "]"; .@equipped = 1; } .@menu$ = .@menu$ + ":"; } .@part = .@indices[select(.@menu$)]; setrandomoption(.@part,0,rand(1,220),rand(1,2),0); setrandomoption(.@part,1,rand(1,220),rand(1,2),0); setrandomoption(.@part,2,rand(1,220),rand(1,2),0); setrandomoption(.@part,3,rand(1,220),rand(1,2),0); setrandomoption(.@part,4,rand(1,220),rand(1,2),0);
  18. Just change start_position to specific map like Prontera. (conf > char_athena)
  19. There are index (Slots) to choose. 0 mean slot 1 and so on
  20. Read at \rathena\doc\script_commands.txt Lines 10267 You can simply test with simple npc to see result.
  21. \doc\sample\npc_dynamic_shop.txt
×
×
  • Create New...