Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-04-05 | Add pet_catch_rate_official_formula battle flag | Kenpachi Developer | 2 | -0/+2 | |
2020-04-05 | Apply code style to pet related part of status_calc_pc_() function | Kenpachi Developer | 1 | -5/+9 | |
2020-04-05 | Apply code style to BUILDIN(setunitdata) function | Kenpachi Developer | 1 | -284/+343 | |
2020-04-05 | Apply code style to pet_read_db_sub_intimacy() function | Kenpachi Developer | 1 | -7/+15 | |
2020-04-05 | Apply code style to pet_read_db_sub() function | Kenpachi Developer | 1 | -46/+63 | |
2020-04-05 | Apply code style to pet_skill_bonus_timer() function | Kenpachi Developer | 1 | -20/+29 | |
2020-04-05 | Apply code style to pet_ai_sub_hard() function | Kenpachi Developer | 1 | -64/+75 | |
2020-04-05 | Apply code style to pet_food() function | Kenpachi Developer | 1 | -10/+19 | |
2020-04-05 | Apply code style to pet_menu() function | Kenpachi Developer | 1 | -27/+37 | |
2020-04-05 | Apply code style to pet_catch_process2() function | Kenpachi Developer | 1 | -31/+30 | |
2020-04-05 | Apply code style to pet_data_init() function | Kenpachi Developer | 1 | -27/+32 | |
2020-04-05 | Apply code style to pet_performance() function | Kenpachi Developer | 1 | -6/+16 | |
2020-04-05 | Apply code style to pet_hungry() function | Kenpachi Developer | 1 | -27/+30 | |
2020-04-05 | Apply code style to pet_target_check() function | Kenpachi Developer | 1 | -32/+23 | |
2020-04-05 | Apply code style to pet_create_egg() function | Kenpachi Developer | 1 | -9/+22 | |
2020-04-05 | Apply code style to pet_set_intimate() function | Kenpachi Developer | 1 | -9/+17 | |
2020-04-05 | Apply code style to pet_hungry_val() function | Kenpachi Developer | 1 | -4/+12 | |
2020-04-05 | Apply code style to pc_dead() function | Kenpachi Developer | 1 | -183/+224 | |
2020-04-05 | Apply code style to pc_setpos() function | Kenpachi Developer | 1 | -120/+165 | |
2020-04-05 | Apply code style to clif_parse_pet_evolution() function | Kenpachi Developer | 1 | -35/+44 | |
2020-04-05 | Apply code style to clif_parse_LoadEndAck() function | Kenpachi Developer | 1 | -172/+202 | |
2020-04-05 | Apply code style to ACMD(pethungry) function | Kenpachi Developer | 1 | -17/+27 | |
2020-04-05 | Apply code style to ACMD(petfriendly) function | Kenpachi Developer | 1 | -18/+26 | |
2020-04-05 | Apply code style to ACMD(makeegg) function | Kenpachi Developer | 1 | -24/+31 | |
2020-04-05 | Apply code style to inter_pet_create() function | Kenpachi Developer | 1 | -11/+27 | |
2020-04-05 | Apply code style to inter_pet_fromsql() function | Kenpachi Developer | 1 | -4/+16 | |
2020-04-05 | Apply code style to inter_pet_tosql() function | Kenpachi Developer | 1 | -11/+13 | |
2020-04-05 | Add pet_set_hunger() function | Kenpachi Developer | 4 | -8/+21 | |
2020-04-05 | Adjust inter_pet_fromsql() function to use prepared statement | Kenpachi Developer | 1 | -28/+43 | |
2020-04-05 | Adjust inter_pet_tosql() function to use prepared statement | Kenpachi Developer | 1 | -20/+55 | |
2020-04-05 | Remove pet_equip_min_friendly config setting | Kenpachi Developer | 4 | -8/+2 | |
2020-04-05 | Increase MAX_MOB_DB to 22000 | Kenpachi Developer | 1 | -1/+1 | |
Increased MAX_MOB_DB to 22000 to support new mobs/pets with IDs 20000+. (For example NIGHTMARE_TERROR_H (20373) and WANDER_MAN_H (20420).) This also eliminates the conflict between job IDs and clone IDs. (Issue #303) | |||||
2020-04-05 | Remove pet_hungry_friendly_decrease config setting | Kenpachi Developer | 2 | -2/+0 | |
2020-04-05 | Add new field Intimacy.StarvingDecrement to pet DB | Kenpachi Developer | 2 | -1/+9 | |
2020-04-05 | Add new field Intimacy.StarvingDelay to pet DB | Kenpachi Developer | 2 | -4/+12 | |
2020-04-05 | Add new field HungerDecrement to pet DB | Kenpachi Developer | 2 | -1/+8 | |
2020-04-05 | Add default values and limits to pet DB fields | Kenpachi Developer | 1 | -21/+31 | |
2020-04-05 | Change EggItem field in pet DB to be mandatory | Kenpachi Developer | 1 | -8/+12 | |
2020-04-05 | Remove SpriteName field from pet DB | Kenpachi Developer | 1 | -6/+1 | |
Since it was never used for anything, the SpriteName field is removed from the pet DB. Internally it's kept and set to the sprite name corresponding to the defined monster ID, to not break plug-ins which may use it. | |||||
2020-04-05 | Add ID validation to pet_read_db_sub() function | Kenpachi Developer | 1 | -0/+6 | |
2020-04-05 | Add a base rate validation to pet_target_check() function | Kenpachi Developer | 1 | -0/+3 | |
2020-04-05 | Add a HungerDelay validation to pet_hungry() function | Kenpachi Developer | 1 | -0/+11 | |
2020-04-05 | Add pet_hungry_timer only if a pet's HungerDelay is greater than 0 | Kenpachi Developer | 1 | -8/+5 | |
2020-04-05 | Adjust pet intimacy calculation when feeding | Kenpachi Developer | 1 | -15/+18 | |
Adjusted the hunger level depending intimacy calculation when feeding the pet, to be closer to offical behaviour. (Thanks to @hemagx again.) | |||||
2020-04-05 | Adjust pet catch rate calculation | Kenpachi Developer | 1 | -1/+1 | |
Thanks to @hemagx. | |||||
2020-04-05 | Add value capping to pet_set_intimate() function | Kenpachi Developer | 2 | -12/+4 | |
2020-04-05 | Add enum for pet intimacy levels and use its constants | Kenpachi Developer | 9 | -31/+46 | |
2020-04-05 | Add enum for pet hunger levels and use its constants | Kenpachi Developer | 6 | -25/+39 | |
2020-04-05 | HPM Hooks Update | Hercules.ws | 5 | -0/+34 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2020-04-05 | Merge pull request #2657 from Kenpachi2k13/autocast_clean_up | Haru | 14 | -226/+221 | |
Clean up auto-cast related code |