Jump to content

Kichi

Members
  • Posts

    509
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Kichi

  1. sry, been long time not active. i'll update as soon as possible
  2. my last application was rejected i think the qualification is higher :3
  3. the disconnection is a feature if (sum >= sd->tem_tick_skill3 - 20 && sum <= sd->tem_tick_skill3 + 20) this is the range of detection, if we lowered from 20, mean we use lowered range. but don't give it to high number. We use 20, because if at real Private Server, the packet sent depend on user connection speed. i'll do test once more, to get the exact number
  4. change: if (sum >= sd->tem_tick_skill3 - 20 && sum <= sd->tem_tick_skill3 + 20) to: if (sum >= sd->tem_tick_skill3 - 3 && sum <= sd->tem_tick_skill3 + 3) and increase the count setting from 5 to higher number hansip_spam_count : 10
  5. did you using third party program to spam? if you did, yea there is an option to kick player automaticly, it's not bug but a feature to detect who spam skill packet. take a look the tick, you have constanly 817, i think you using WPE that's why HANSIP kick out you you may turn off the feature on battle config
  6. not possible NPC is pasive but if you talking about skill, yes NPC able to harming mob
  7. yea, "Hansip", the name is even better. wkwkwkmaybe auto-"bata" later? haha just want to make more nationalist nice suggestion External Link Hansip v 1.3
  8. need moderator to approve the file first
  9. really? it would be a tiresome thing
  10. Update 25 June 1.3 -Change name from NDG to Hansip -Add skill packet spam detector & punishment (force disconnect) -Support PRE-RE
  11. necromancer is counted as boss/mvp, maybe his mode.
  12. Lol btw are you made a tool to recolouring those sprites? XD
  13. Just duplicate and remove the function for bonus check skill.c int skill_break_equip2 (struct block_list *src,struct block_list *bl, unsigned short where, int rate, int flag) { const int where_list[4] = {EQP_WEAPON, EQP_ARMOR, EQP_SHIELD, EQP_HELM}; const enum sc_type scatk[4] = {SC_STRIPWEAPON, SC_STRIPARMOR, SC_STRIPSHIELD, SC_STRIPHELM}; const enum sc_type scdef[4] = {SC_CP_WEAPON, SC_CP_ARMOR, SC_CP_SHIELD, SC_CP_HELM}; struct status_change *sc = status_get_sc(bl); int i; TBL_PC *sd; sd = BL_CAST(BL_PC, bl); if (sc && !sc->count) sc = NULL; if (sd) { if (where&EQP_WEAPON) { switch (sd->status.weapon) { case W_FIST: //Bare fists should not break case W_1HAXE: case W_2HAXE: case W_MACE: // Axes and Maces can't be broken [DracoRPG] case W_2HMACE: case W_STAFF: case W_2HSTAFF: case W_BOOK: //Rods and Books can't be broken [Skotlex] case W_HUUMA: where &= ~EQP_WEAPON; } } } if (flag&BCT_ENEMY) { if (battle_config.equip_skill_break_rate != 100) rate = rate*battle_config.equip_skill_break_rate/100; } else if (flag&(BCT_PARTY|BCT_SELF)) { if (battle_config.equip_self_break_rate != 100) rate = rate*battle_config.equip_self_break_rate/100; } for (i = 0; i < 4; i++) { if (where&where_list[i]) { if (sc && sc->count && sc->data[scdef[i]]) where&=~where_list[i]; else if (rnd()%10000 >= rate) where&=~where_list[i]; else if (!sd && !(status_get_mode(bl)&MD_BOSS)) //Cause Strip effect. sc_start(src,bl,scatk[i],100,0,skill_get_time(status_sc2skill(scatk[i]),1)); } } if (!where) //Nothing to break. return 0; if (sd) { for (i = 0; i < EQI_MAX; i++) { int j = sd->equip_index[i]; if (j < 0 || sd->status.inventory[j].attribute == 1 || !sd->inventory_data[j]) continue; switch(i) { case EQI_HEAD_TOP: //Upper Head flag = (where&EQP_HELM); break; case EQI_ARMOR: //Body flag = (where&EQP_ARMOR); break; case EQI_HAND_R: //Left/Right hands case EQI_HAND_L: flag = ( (where&EQP_WEAPON && sd->inventory_data[j]->type == IT_WEAPON) || (where&EQP_SHIELD && sd->inventory_data[j]->type == IT_ARMOR)); break; case EQI_SHOES: flag = (where&EQP_SHOES); break; case EQI_GARMENT: flag = (where&EQP_GARMENT); break; default: continue; } if (flag) { sd->status.inventory[j].attribute = 1; pc_unequipitem(sd, j, 3); } } clif_equiplist(sd); } return where; //Return list of pieces broken. } skill.h int skill_break_equip2(struct block_list *src,struct block_list *bl, unsigned short where, int rate, int flag); skill_break_equip2(src,bl, EQP_ARMOR, 150*skill_lv, BCT_ENEMY);
  14. this happened because your column has greater value than the size of column this ever happened to someone, and crashing his server
  15. did you mean this? battle.c case AM_ACIDTERROR: skillratio += 40*skill_lv; break;
  16. hmm that's why i don't see blue wolf in a few month pity people who using his service and didn't have a backup
  17. yggdrasil delay ada di /db/(re / pre-re)/item_delay.txt untuk tulisan yang bermasalah, itu hanya butuh luafiles514 versi inggris. sangat susah mencari luafiles514 yang tepat (terkadang harus cocok dengan versi client) tapi anda dapat menemukan 1 paket disini HERE small client
  18. @Sryx no, this is mine. it is not related to anyone @Akbare oke mas bro, jangan lupa cendolnya dong
  19. yes, there is a way, but would be huge update about sloted rental item, as my experience, you can insert card to a rental equip without lose the item expiration date. (default svn) but you will lose the card because you can't remove through card remover. forgot which emulator, rAthena or his neighbour i remember, because i've made a mod that would return card to the player once expiration date is over
  20. untested not working gives error on compile although untested, i always test it on compiler it doesn't give any error if you put the code correctly double check please
×
×
  • Create New...