Jump to content

Kichi

Members
  • Posts

    509
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Kichi

  1. bonusautoscript "{ sc_start SC_INCBASEATK,9000,3000; heal -500,0; }",10,BF_WEAPON; autobonus "{ sc_start SC_INCBASEATK,9000,3000; heal -500,0; }",10,BF_WEAPON; change them all
  2. Kichi

    /memo support

    DELETE FROM `memo` WHERE 1=1;
  3. you can give novice an item / a skill by using script in game. you can remove the skill tree inside db/(re / pre-re)/skill_tree.txt
  4. untested find: pc.c if(battle_config.bone_drop==2 || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp)) { change to: if((battle_config.bone_drop==2 || (battle_config.bone_drop==1 && map[sd->bl.m].flag.pvp)) && src->id != sd->bl.id) {
  5. SI_ like a bundle from client when you execute for example SI_BANDING, it will give you banding icon and banding effect
  6. the script is correct but the cell_basilica and land_protector doesn't work properly need to edit the source code there are already answered in this forum
  7. this not possible in scripting you need to edit / add function in Source Code
  8. there are no existing normal way to counter maya purple You need source modification to make a counter Example: 1. When player A have a smokie pet active and do hiding, player B with MP effect can't detect player A. 2. Make some kind of item bonus: bonus bPerfectHiding,0; both of my sollution to make MP will not detect hiding enemy with some conditions
  9. I think thats not .wav because .wav only affect to crash the Client not the emulator. CMIIW map server crash because of map index http://rathena.org/board/tracker/issue-7696-map-crash/
  10. [Debug]: mapindex_name2id: Map "Test" not found in the index list! it say that emulator can't find map Test if this script could crash map server, it will be serious BUG for rAthena. because this bug (Crash because map index ) reported since more than year ago, and never fixed till now,
  11. wd.damage = 40 * sstatus->str + (8 / 100) * skill_lv * sstatus->hp; example: level 1 Final Strike (STR*40) + (HP*8%) mean VIT 1 / 9999 will not affect the damage (based on formula) only STR and HP are affect the damage. As long as your HP increase, your damage will be increase. Or there are max damage limit
  12. StatusIconChangeTable[SC_UNHOLYLIGHT] = SI_PLUSMAGICPOWER; status SC_UNHOLYLIGHT will load effect SI_PLUSMAGICPOWER
  13. skill.c change to: case WL_EARTHSTRAIN: { int rate = 0, i; rate = 6 * skill_lv + sstatus->dex / 10 + (sd? sd->status.job_level / 4 : 0) - tstatus->dex /5;// The tstatus->dex / 5 part is unofficial, but players gotta have some kind of way to have resistance. [Rytech] //rate -= rate * tstatus->dex / 200; // Disabled until official resistance is found. sc_start(src,bl,SC_CURSE,rate,skill_lv,skill_get_time(skill_id,skill_lv)); sc_start(src,bl,SC_STUN,rate,skill_lv,skill_get_time(skill_id,skill_lv)); } break; skill.txt change to: 2213,11,8,2,0,0x2,7,5,-20,yes,0,0,0,weapon,2,0x400, WL_COMET,Comet
  14. Find this: status.c map_freeblock_lock(); if(status->hp >= max(status->max_hp>>2, sce->val4)) //Stop damaging after 25% HP left. status_zap(bl, sce->val4, 0); Change to map_freeblock_lock(); if(status->hp >= max(status->max_hp/10, sce->val4)) //Stop damaging after 10% HP left. status_zap(bl, sce->val4, 0);
  15. totaly agree /no thats good idea to import all dbs to make server owner easy add new item from rathena and it won't conflict with the custom from owner
  16. Before i found that "Memorial Wave Map exist on map index" Then i search about it and found this link I hope rAthena Apply monster Control because thats related to official Memorial Dungeon Thank You
  17. Post your website here and the image you talking about
  18. izlude = maybe you using old izlude map in client side (small size, there are shop building in center) disconnect from server = Check that your player recieve/have same files as yours (if you success login) or ask your player if they put your RO files into other RO files
  19. Im on windows using Microsoft Visual Studio 2012
×
×
  • Create New...