Jump to content

evilpuncker

Community Contributors
  • Content Count

    2178
  • Joined

  • Last visited

  • Days Won

    66

Everything posted by evilpuncker

  1. seems like the files you got are corrupted somehow, try downloading a fresh copy of hercules and compile it
  2. vai em pc.c procura por: int pc_maxparameterincrease(struct map_session_data* sd, int type) { int base, final, status_points = sd->status.status_point; base = final = pc->getstat(sd, type); while (final <= pc_maxparameter(sd) && status_points >= 0) {#ifdef RENEWAL // renewal status point cost formula status_points -= (final < 100) ? (2 + (final - 1) / 10) : (16 + 4 * ((final - 100) / 5));#else status_points -= ( 1 + (final + 9) / 10 );#endif final++; } final--; return final > base ? final-base : 0;} altere para: int pc_maxparameterincrease(struct map_session_data* sd, int type) { int base, final, status_points = sd->status.status_point; base = final = pc->getstat(sd, type); while (final <= pc_maxparameter(sd) && status_points >= 0) {#ifndef RENEWAL // renewal status point cost formula status_points -= (final < 100) ? (2 + (final - 1) / 10) : (16 + 4 * ((final - 100) / 5));#else status_points -= ( 1 + (final + 9) / 10 );#endif final++; } final--; return final > base ? final-base : 0;} e recompile
  3. btw why not fix the script to add the correct count of numbers?
  4. glad to have u here <3 thor patcher the best :D and I'm really excited about your new updates

  5. bellow sc_start .@j,240000,.@sum; add the following: if ( .@spirit = .spirit[BaseJob] ); else if ( Upper & 1 && BaseLevel < 70 ) .@spirit = 494; else end; sc_start4 SC_SOULLINK, -1, 5, .@spirit,0,0; and bellow OnInit: add it: .spirit[Job_Alchemist] = 445; .spirit[Job_Monk] = 447; .spirit[Job_Star_Gladiator] = 448; .spirit[Job_Sage] = 449; .spirit[Job_Crusader] = 450; .spirit[Job_SuperNovice] = 451; .spirit[Job_Knight] = 452; .spirit[Job_Wizard] = 453; .spirit[Job_Priest] = 454; .spirit[Job_Bard] = .spirit[Job_Dancer] = 455; .spirit[Job_Rogue] = 456; .spirit[Job_Assassin] = 457; .spirit[Job_Blacksmith] = 458; .spirit[Job_Hunter] = 460; .spirit[Job_Soul_Linker] = 461; @edit btw, why you used 0 for min level?
  6. your clientinfo got the same login ports xd
  7. create another account and see if it changes
  8. remove your account id from clientinfo.xml
  9. just change it to the one in pre-re folder
  10. change the two occurrences of L_check into something else, like L_asds
  11. this? // Give additional experience bonus per party-member involved on even-share parties (excluding yourself)?// ex. If set to 10, an even-share party of 5 people will receive +40% exp (4 members * 10% exp):// 140% party experience in total, so each member receives 140%/5 = 28% exp (instead of 20%).party_even_share_bonus: 0
  12. eu uso client de 2014 e meus atributos são 600 e funcionam normalmente, não sei qual deve ser o seu problema :/
  13. actually using it in linux is even easier: http://herc.ws/wiki/Building_HPM_Plugin_for_gcc so it does work
  14. http://herc.ws/board/topic/2615-afk/?p=32284 plugin if you don't mind
  15. he left us again xD hope he comes back soon, this is a great addon
  16. comment the line DISABLE_PACKETVER_RE since you are NOT using a RE client i use client date 2013-06-05. thank you update your kRO installation to get those missing files
  17. maybe it is hardcoded in the client just like foods
  18. I suggest you to use those: .@atcmd_command$ = The name of the @command used. .@atcmd_parameters$[] = Array containing the given parameters, starting from an index of 0. .@atcmd_numparameters = The number of parameters defined. take this as example
  19. try reporting it at bug tracker if you think it is an emulator issue
  20. try to find the difference between the two diffs and update the rA one
×
×
  • Create New...

Important Information

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