From b15e0c4634b8c8f62f7110617ed5c3ccf2078d04 Mon Sep 17 00:00:00 2001 From: skotlex Date: Wed, 9 Aug 2006 17:58:00 +0000 Subject: - Should have fixed a signed/unsigned warning in login-txt - Moved the class-change code from battle_calc_weapon_attack to skill_additional_effect. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8211 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/login/login.c | 4 +++- src/map/battle.c | 21 --------------------- src/map/itemdb.c | 1 + src/map/skill.c | 26 ++++++++++++++++++++++++++ 4 files changed, 30 insertions(+), 22 deletions(-) (limited to 'src') diff --git a/src/login/login.c b/src/login/login.c index 81727b003..8dd82cffb 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -1911,7 +1911,8 @@ int parse_fromchar(int fd) { } { struct online_login_data *p; - unsigned int aid, users; + int aid; + unsigned int users; online_db->foreach(online_db,online_db_setoffline,id); //Set all chars from this char-server offline first users = RFIFOW(fd,4); for (i = 0; i < users; i++) { @@ -1952,6 +1953,7 @@ int parse_fromchar(int fd) { WFIFOSET(fd,WFIFOW(fd,2)); } break; + case 0x2736: // WAN IP update from char-server if (RFIFOREST(fd) < 6) return 0; diff --git a/src/map/battle.c b/src/map/battle.c index 32857bcb3..1731e12e7 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2024,27 +2024,6 @@ static struct Damage battle_calc_weapon_attack( } } - if(sd && sd->classchange && target->type == BL_MOB && !(tstatus->mode&MD_BOSS) && (rand()%10000 < sd->classchange)) - { - struct mob_data *tmd = (TBL_MOB*)target; - if (!tmd->guardian_data && (tmd->class_ < 1324 || tmd->class_ > 1363) && !mob_is_clone(tmd->class_)) - { //Classchange: - struct mob_db *mob; - int k, class_; - i = 0; - do { - do { - class_ = rand() % MAX_MOB_DB; - } while (!mobdb_checkid(class_)); - - k = rand() % 1000000; - mob = mob_db(class_); - } while ((mob->status.mode&(MD_BOSS|MD_PLANT) || mob->summonper[0] <= k) && (i++) < 2000); - if (i< 2000) - mob_class_change(tmd,class_); - } - } - if (wd.damage || wd.damage2) { if (sd && battle_config.equip_self_break_rate) { // Self weapon breaking diff --git a/src/map/itemdb.c b/src/map/itemdb.c index f3d462002..76ce6f406 100644 --- a/src/map/itemdb.c +++ b/src/map/itemdb.c @@ -111,6 +111,7 @@ int itemdb_searchrandomid(int group) ShowError("itemdb_searchrandomid: No item entries for group id %d\n", group); return UNKNOWN_ITEM_ID; } + /*========================================== * Calculates total item-group related bonuses for the given item. [Skotlex] *------------------------------------------ diff --git a/src/map/skill.c b/src/map/skill.c index e2239d84f..c541ad4ac 100644 --- a/src/map/skill.c +++ b/src/map/skill.c @@ -1454,6 +1454,32 @@ int skill_additional_effect (struct block_list* src, struct block_list *bl, int break; //Only one auto skill comes off at a time. } } + + //Polymorph + if(sd && sd->classchange && attack_type&BF_WEAPON && + dstmd && !(tstatus->mode&MD_BOSS) && !dstmd->guardian_data && + (dstmd->class_ < 1324 || dstmd->class_ > 1363) && //Treasure boxes + !mob_is_clone(dstmd->class_) && + (rand()%10000 < sd->classchange)) + { + struct mob_db *mob; + int class_; + skill = 0; + do { + do { + class_ = rand() % MAX_MOB_DB; + } while (!mobdb_checkid(class_)); + + rate = rand() % 1000000; + mob = mob_db(class_); + } while ( + (mob->status.mode&(MD_BOSS|MD_PLANT) || mob->summonper[0] <= rate) && + (skill++) < 2000); + if (skill < 2000) + mob_class_change(dstmd,class_); + } + + return 0; } -- cgit v1.2.3-70-g09d2