Jump to content

clydelion

Members
  • Posts

    754
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by clydelion

  1. LOL. That's funny. xD It should be like this..
  2. It can be done. http://upaste.me/97e06513ef662888
  3. Yes, it is what this does. This is different from my other mod. EDIT: You may add && skill_id <= 2498 to skill_id >= 2001 to make it skill_id >= 2001 && skill_id <= 2498 So that it only affects existing 3rd job skills.
  4. Yes, it is. But it needs a modification. Index: conf/battle/skill.conf =================================================================== --- conf/battle/skill.conf (revision 17067) +++ conf/battle/skill.conf (working copy) @@ -39,6 +39,7 @@ // At what dex does the cast time become zero (instacast)? castrate_dex_scale: 150 +castrate_dex_scale_3rd: 180 //[clydelion] // How much (dex*2+int) does variable cast turns zero? vcast_stat_scale: 530 Index: src/map/battle.c =================================================================== --- src/map/battle.c (revision 17067) +++ src/map/battle.c (working copy) @@ -5710,6 +5710,7 @@ { "max_cloth_color", &battle_config.max_cloth_color, 4, 0, INT_MAX, }, { "pet_hair_style", &battle_config.pet_hair_style, 100, 0, INT_MAX, }, { "castrate_dex_scale", &battle_config.castrate_dex_scale, 150, 1, INT_MAX, }, + { "castrate_dex_scale_3rd", &battle_config.castrate_dex_scale_3rd, 180, 1, INT_MAX, }, //[clydelion] { "vcast_stat_scale", &battle_config.vcast_stat_scale, 530, 1, INT_MAX, }, { "area_size", &battle_config.area_size, 14, 0, INT_MAX, }, { "zeny_from_mobs", &battle_config.zeny_from_mobs, 0, 0, 1, }, Index: src/map/battle.h =================================================================== --- src/map/battle.h (revision 17067) +++ src/map/battle.h (working copy) @@ -346,6 +346,7 @@ int pet_hair_style; // added by [skotlex] int castrate_dex_scale; // added by [MouseJstr] + int castrate_dex_scale_3rd; //[clydelion] int area_size; // added by [MouseJstr] int max_def, over_def_bonus; //added by [skotlex] Index: src/map/skill.c =================================================================== --- src/map/skill.c (revision 17067) +++ src/map/skill.c (working copy) @@ -13702,6 +13702,7 @@ *------------------------------------------*/ int skill_castfix (struct block_list *bl, uint16 skill_id, uint16 skill_lv) { int time = skill_get_cast(skill_id, skill_lv); + int castrate_dex_scale = (skill_id >= 2001)? battle_config.castrate_dex_scale_3rd : battle_config.castrate_dex_scale; //[clydelion] nullpo_ret(bl); #ifndef RENEWAL_CAST @@ -13712,9 +13713,9 @@ // calculate base cast time (reduced by dex) if( !(skill_get_castnodex(skill_id, skill_lv)&1) ) { - int scale = battle_config.castrate_dex_scale - status_get_dex(bl); + int scale = castrate_dex_scale - status_get_dex(bl); if( scale > 0 ) // not instant cast - time = time * scale / battle_config.castrate_dex_scale; + time = time * scale / castrate_dex_scale; else return 0; // instant cast } @@ -13880,7 +13881,7 @@ int time = skill_get_delay(skill_id, skill_lv); struct map_session_data *sd; struct status_change *sc = status_get_sc(bl); - + int castrate_dex_scale = (skill_id >= 2001)? battle_config.castrate_dex_scale_3rd : battle_config.castrate_dex_scale; //[clydelion] nullpo_ret(bl); sd = BL_CAST(BL_PC, bl); @@ -13911,17 +13912,17 @@ default: if (battle_config.delay_dependon_dex && !(delaynodex&1)) { // if skill delay is allowed to be reduced by dex - int scale = battle_config.castrate_dex_scale - status_get_dex(bl); + int scale = castrate_dex_scale - status_get_dex(bl); if (scale > 0) - time = time * scale / battle_config.castrate_dex_scale; + time = time * scale / castrate_dex_scale; else //To be capped later to minimum. time = 0; } if (battle_config.delay_dependon_agi && !(delaynodex&1)) { // if skill delay is allowed to be reduced by agi - int scale = battle_config.castrate_dex_scale - status_get_agi(bl); + int scale = castrate_dex_scale - status_get_agi(bl); if (scale > 0) - time = time * scale / battle_config.castrate_dex_scale; + time = time * scale / castrate_dex_scale; else //To be capped later to minimum. time = 0; } http://upaste.me/raw/2841650435abfc73
  5. That's normal. Whenever you do src modifications, the only way to update is manually or reapplying your mods in a new svn.
  6. You can put up invisible npcs, and utilize the OnTouch event to continue walking(like way points). edit: oh crap, this was the idea in the first post. sorry i read it back wards :/ edit2: try to put unitstop <gid>; before every unitwalk. This way, it deletes the walktimer from within the source, thus, wouldn't throw errors anymore.
  7. That's why I said manually diff it. Or try this diff dropautodelete_3ceam.diff
  8. You probably messed up your status.c. You used a status.c file which is incompatible with your emu or revision. Revert to the previous status.c file.
  9. I asked this in IRC and I want to ask it here too.. This is about Epoque's skill_amotion_leniency.. http://pastebin.com/raw.php?i=37nBw8im The aim of this new config is to prevent casting another skill while skill motion is not yet finished. It should wait for amotion to finish. But as it is right now, it is waiting for 2x (or +90%) the amotion. Is this intended? I used this to monitor it in-game. Spam skills like meteor assault, or any skill with zero to little delay. Also, I think this is the reason why users feel a slightly longer delay even in default settings. This is based on my understanding, sorry if I am wrong.
  10. So cute hamster! :3 Its too late for Xmas though! xD
  11. Here you go.. http://svn6.assembla.com/svn/ClientSide/Lua_Project/lubs/Lub%20Files%205.0.2/2010-12-29%20Lub%20Files%20%5bTranslated%5d.rar
  12. they probably renamed their data.ini to an equivalent filename with the same length like 'loot.odb' (length is 8 characters including the dot)
  13. Upload the development to googlecode or github, so that it won't die like the other control panels. Most of the things that went successful is opensource (*athena,ceres,flux,shinsdiffpatcher, and others).
  14. replace the last entry in packet_db.txt with this http://svn6.assembla.com/svn/ClientSide/Packets/Packet_db/packets_2011-03-15aRagexeRE.txt
  15. MAX_LEVEL is the server limit. The per-job limit is located in exp.txt
  16. Looking at your packet_db.txt, you probably are using eathena or and old version of rathena. You can try using rathena's packetdb, then adjust max packet db, ver, and pos like that of the latest rathena's in clif.h file.
  17. You want to create a level? Please rephrase your question, it is not making sense. :/
  18. First, please verify that your client is really 20110315. If not, change PACKETVER in mmo.h file. Secondly, don't forget to recompile all 3 servers.
  19. I believe this is one of Lance's Vanguard features.
  20. is it not here? http://www.emaxxtech.com/products/index
  21. Well to start off.. 'sc' is the usual variable used in the source to store status change data(status, how many seconds, some variables to determine how strong the effect is), while 'sd' is the usual variable used to store player data(name,coordinates, level, almost all character information of that session). note that these are just names and they can be named according to the developer's preference. i.e. sd and target_sd have the same structure but the data stored are usually different(not always the case)
×
×
  • Create New...