Jump to content

WhiteEagle

Members
  • Posts

    390
  • Joined

  • Last visited

Everything posted by WhiteEagle

  1. Hey, you can edit the skills in skill_db.yml. Search for - Id: 24 Name: AL_RUWACH Description: Ruwach MaxLevel: 1 Type: Magic TargetType: Self and change Type: Magic to Misc - Id: 24 Name: AL_RUWACH Description: Ruwach MaxLevel: 1 Type: Misc TargetType: Self or remove Type. That should work.
  2. I don't have test it, but it should work. Go in itemdb.cpp and search for /** Specifies if item-type should drop unidentified. * @param nameid ID of item */ char itemdb_isidentified(t_itemid nameid) { int type=itemdb_type(nameid); switch (type) { case IT_WEAPON: case IT_ARMOR: case IT_PETARMOR: case IT_SHADOWGEAR: case IT_CHARM: return 0; default: return 1; } } and change it to: /** Specifies if item-type should drop unidentified. * @param nameid ID of item */ char itemdb_isidentified(t_itemid nameid) { int type=itemdb_type(nameid); { return 1; } } or if you want only for weapons and armor: /** Specifies if item-type should drop unidentified. * @param nameid ID of item */ char itemdb_isidentified(t_itemid nameid) { int type=itemdb_type(nameid); switch (type) { case IT_WEAPON: return 1; case IT_ARMOR: return 1; case IT_PETARMOR: case IT_SHADOWGEAR: case IT_CHARM: return 0; default: return 1; } }
  3. For the item-def, you need to use the pre-renewal item_db.yml.
  4. Yes. Server is recompiled. I did all diff changes again and same result. No compiling errors and still just 4 warps. Don't know what I do wrong
  5. Thanks for your time and work.Unfortunately, I am still only shown the 4 standard maps. I am using the version 2020-06-17aRagexe. Do I need to install anything apart from the mod?
  6. Hi Functor, would be really nice from you if you could do this for me too. Thank you very much 2020-06-17aRagexe_patched-WARP.exe
  7. No, the problem is present since it was released. (I am talking about the current .yml version)
  8. Currently, the problem with the "Random Option System" is that when options can be distributed randomly, it happens that a option is not displayed. This happens when one of the random options is skipped. Can anyone solve this problem? It is extremely inconvenient when the player cannot see what options active now. Here is a picture which shows what is meant. The knife has 2 options but only one is shown in the item description. In the SQL the problem can be shown very simply. Here you can see that this problem only occurs when one of the options is skipped, as already mentioned above. In this case option_id1 was skipped and option_id2 got the value. I hope I could describe the problem so far understandable so that the error can be fixed. Thank you
  9. The problem has caused a diff "allow spam skills by hotkey". Anyways, thanks for your help. Hope guys with the same problem help this too. :DD
  10. Here this works: 1. Go to the path -> db/ 1.1 Add in item_randomopt_db.yml: Footer: Imports: - Path: db/pre-re/item_randomopt_db.yml Mode: Prerenewal - Path: db/re/item_randomopt_db.yml Mode: Renewal - Path: db/import/item_randomopt_db.yml 1.2 Add in item_randomopt_group.yml: Footer: Imports: - Path: db/pre-re/item_randomopt_group.yml Mode: Prerenewal - Path: db/re/item_randomopt_group.yml Mode: Renewal - Path: db/import/item_randomopt_group.yml 2. Go to the path -> db/re 2.1 Copy item_randomopt_group.yml and item_randomopt_db.yml 2.2 Add both files in db/pre-re 3. Have fun
  11. Ok. I have now used a fresh client and fresh installed rAthena. Same problem. Just 4 Spheres..... I use the translated files from chrisll.
  12. I've source modifications. But not on Monk skills or anything with spiritball.
  13. That's the problem. I don't do any modifications on monk skills or with 'spiritball' values.
  14. Thanks for your time and answer. I am using the pre-renewal database and yes I've the same and original settings. - Id: 260 Name: MO_SPIRITSRECOVERY Description: Spiritual Cadence MaxLevel: 5 Type: Weapon - Id: 261 Name: MO_CALLSPIRITS Description: Summon Spirit Sphere MaxLevel: 5 TargetType: Self DamageFlags: NoDamage: true Hit: Single HitCount: 1 CastTime: 1000 Duration1: 600000 Requires: SpCost: 8 - Id: 262 Name: MO_ABSORBSPIRITS Description: Absorb Spirit Sphere MaxLevel: 1 Type: Weapon TargetType: Support DamageFlags: NoDamage: true Range: 9 Hit: Single HitCount: 1 CastCancel: true CastTime: 1000 Requires: SpCost: 5 I have no clue why this happen
  15. I don't know why, but Call Spirit just summon 4 spirits now and I don't find any solutions about this. When I use Dangerous Soul Collect (CH_SOULCOLLECT) I got all 5 spirits. Would be awesome if someone has an idea/solution. Here some part of the source what I've found and i tried the int limit to set to 5 instead of skill_lv but it doesn't help. case MO_CALLSPIRITS: if(sd) { int limit = skill_lv; if( sd->sc.data[SC_RAISINGDRAGON] ) limit += sd->sc.data[SC_RAISINGDRAGON]->val1; clif_skill_nodamage(src,bl,skill_id,skill_lv,1); pc_addspiritball(sd,skill_get_time(skill_id,skill_lv),limit); } break; case CH_SOULCOLLECT: if(sd) { int limit = 5; if( sd->sc.data[SC_RAISINGDRAGON] ) limit += sd->sc.data[SC_RAISINGDRAGON]->val1; clif_skill_nodamage(src,bl,skill_id,skill_lv,1); for (i = 0; i < limit; i++) pc_addspiritball(sd,skill_get_time(skill_id,skill_lv),limit); } break;
  16. I don't know if anything has changed, but pet support skills are not working at the moment.
  17. I think the easiest way is to create 2 different exe, each calling a different iteminfo.
  18. I have the problem that the web-server files are not created. I do not get any error messages. I am using Debian 9. Tested it with Debian 10 too. Same result. Same files on Windows (PC) works perfect. Can anyone help me to make it works for me on Debian 9? Wanna use Emblems ./configure --enable-web-service Message: configure: output name = login-server, char-server, map-server configure: creating ./config.status config.status: creating Makefile config.status: creating src/common/Makefile config.status: creating 3rdparty/libconfig/Makefile config.status: creating 3rdparty/yaml-cpp/Makefile config.status: creating 3rdparty/httplib/Makefile config.status: creating src/char/Makefile config.status: creating src/login/Makefile config.status: creating src/map/Makefile config.status: creating src/tool/Makefile config.status: creating src/web/Makefile Make server- Last message. No web-server file is created. CXX vending.cpp LD map-server
  19. Because then it is only set for the individual player. If you are in a party, it is not counted for the other party members and if you set it for the party, everyone gets the full EXP, no matter how high the level difference of the individual party members is. So many checks need to be built in to make it work as it should. With setunitdata, every time the Monster of the Day changes, you could just change the EXP and be done. For instances, you could determine the exp for each individual MvP, e.g. how long a player needs to get to the MvP. The faster the player arrives, the more exp the MvP gives and and and
  20. Is someone kind enough to give me the code to add UMOB_BASEEXP and UMOB_JOBEXP to getunitdata/setunitdata. I would need these for events like "Monster of the Day", where the exp for individual monsters are raised. Would be awesome
  21. Can anyone upload the model.pth that works for ragnarok stuff? Would be awesome.
  22. Hi Akkarin, I have installed your theme and the Youtube window is not displayed. I have also tested it with other youtube_codes, nothing.. Am I missing something? The other question is, where is the event sidebar displayed or how do I display it? // Events Sidebar 'events' => array( 'Race to 99', 'Screenshot Contest' ), Thanks ~
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.