Jump to content

malufett

Members
  • Posts

    554
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by malufett

  1. malufett

    pk command

    hmm..the coding is crappy..I'll just try to create another one... correct me if I was wrong.. @pkmode does: enable/disable individual to be hit/deal in pk mode Notes: - use @pk to enable/disable - won't work in duel(of course you accept therefore you must face the opponent) - won't work in battlegrounds and guild wars - won't work on mobs - only works in PVP mode/maps Download: pk_mod_rA_r16215.PATCH
  2. remove all the occurrence of the the skill @ battle.c under: battle_calc_return_damage(struct block_list* bl, struct block_list *src, int *dmg, int flag, int skillid);
  3. just remove/comment the entries in the skill_db, skill_tree_db and other skill related database...
  4. malufett

    pk command

    can you post the file/diff you use since there is to many diff patches on that thread and its hard to guess which one did you use...
  5. better anyways where are the db?
  6. if it shows in passive mode it means there is something wrong with your skill_db...
  7. just delete it on your pet table however this will not bring back the egg...
  8. ok..now I found out it is a client issue...Thanks to Anna for making a test... to fix this make sure your lua/lub files support the skill tree of any 3rd classes....so better update your files...
  9. @skill.c do the manipulation here case WZ_STORMGUST:[/color] /** * Storm Gust counter was dropped in renewal **/ #ifdef RENEWAL sc_start(bl,SC_FREEZE,65-(5*skilllv),skilllv,skill_get_time2(skillid,skilllv)); #else //Tharis pointed out that this is normal freeze chance with a base of 300% if(tsc->sg_counter >= 3 && sc_start(bl,SC_FREEZE,300,skilllv,skill_get_time2(skillid,skilllv))) tsc->sg_counter = 0; /** * being it only resets on success it'd keep stacking and eventually overflowing on mvps, so we reset at a high value **/ else if( tsc->sg_counter > 250 ) tsc->sg_counter = 0; #endif break;
  10. are you sure that those you are using??
  11. can you two show me your re/skill_db.txt and re/skill_tree.txt
  12. aside from Genetic what other jobs make this issue???
  13. make sure your files are fully updated..make do a fresh checkout or check your skill dbs....
  14. use the status change SC_SPHERE_1 to SC_SPHERE_5 and then use its val1 to determined its element...hopes that gives you an idea....^^
  15. just a question where is the part in the code where this part in the formula happens...?? and why is that the sum_castReduction is not raw in the code it shows that the percentage is already apply in the base cast.. if (sc->data[sC_SLOWCAST]) time += time * sc->data[sC_SLOWCAST]->val2 / 100; if (sc->data[sC_SUFFRAGIUM]) { time -= time * sc->data[sC_SUFFRAGIUM]->val2 / 100; status_change_end(bl, SC_SUFFRAGIUM, INVALID_TIMER); } if (sc->data[sC_MEMORIZE]) { time>>=1; if ((--sc->data[sC_MEMORIZE]->val2) <= 0) status_change_end(bl, SC_MEMORIZE, INVALID_TIMER); } if (sc->data[sC_POEMBRAGI]) time -= time * sc->data[sC_POEMBRAGI]->val2 / 100; at least the fixed cast time formula is done correctly..
  16. you can't edit that in source....its a client side...
  17. meron...nung ginawa ko yan ang naging problema ko lang eh yung group_id at level...change mo lang yung level to group_id sa login table...so far sa ibang table wala pa naman...pero try mo munang gumawa ng back up bago gamitin...
  18. I need information about the ASPD bonuses on skills..you can see the list of skills needed to be confirm/ or confirmation at main post...
  19. this cause the issue..doing 39000% when rosa shield is equipped skillratio += 200; if( sd ) { struct item_data *shield_data = sd->inventory_data[sd->equip_index[EQI_HAND_L]]; if( shield_data ) skillratio *= shield_data->def; } else skillratio *= 9; ATM i'm looking for the formula...soon to fix this..
  20. because the next IDs are reserved for future skills coming from official server..better reserved IDs if making custom skill.. @topic Great!
  21. nope...regardless of level...so level 1 to 5 gives a +50%...
  22. change this @ status.c val3 = 50*(val1+1); //Damage increase (+50 +50*lv%) to val3 = 50; // so regardless the level it gives +50%; note: applies to all applicable skills..
×
×
  • Create New...