diff options
author | Taylor Locke <kisuka@kisuka.com> | 2014-10-18 01:22:28 -0700 |
---|---|---|
committer | Taylor Locke <kisuka@kisuka.com> | 2014-10-18 01:32:57 -0700 |
commit | 4ac673941714032ada6d26fb60936ec510bbe496 (patch) | |
tree | 21e0aa8b626640428d7554a30762b8392be0ef1e /src/map/pc.c | |
parent | cc8dfc2f45d0c5405cc628393e846e94e1e7a812 (diff) | |
download | hercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.gz hercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.bz2 hercules-4ac673941714032ada6d26fb60936ec510bbe496.tar.xz hercules-4ac673941714032ada6d26fb60936ec510bbe496.zip |
Some Quality of Life Changes
checkquest deprecated; Use questprogress instead for a more logical
quest log checking command.
getbrokencount command added to get amount of broken equipment.
setdragon and setmadogear deprecated; use setriding instead.
setriding now handles all combat mounts.
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 44 |
1 files changed, 40 insertions, 4 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 697a24507..71860340d 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -8163,11 +8163,47 @@ int pc_setfalcon(TBL_PC* sd, int flag) *------------------------------------------*/ int pc_setriding(TBL_PC* sd, int flag) { - if( flag ){ - if( pc->checkskill(sd,KN_RIDING) > 0 ) // add peco - pc->setoption(sd, sd->sc.option|OPTION_RIDING); - } else if( pc_isriding(sd) ){ + if( flag ) + { + // Rune Knight (Dragon) + if( (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT ) { + if( pc->checkskill(sd, RK_DRAGONTRAINING) ) + pc->setoption(sd, sd->sc.option|flag); + } + // Ranger (Warg) + else if( (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER ) { + if( pc->checkskill(sd, RA_WUGRIDER) ) + pc->setoption(sd,sd->sc.option|OPTION_WUGRIDER); + } + // Mechanic (Mado Gear) + else if( (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC ) { + if( pc->checkskill(sd, NC_MADOLICENCE) ) + pc->setoption(sd, sd->sc.option|OPTION_MADOGEAR); + } + // Knight / Crusader (Peco Peco) + else { + if( pc->checkskill(sd, KN_RIDING) ) + pc->setoption(sd, sd->sc.option|OPTION_RIDING); + } + } + else if( pc_isriding(sd) ) + { + // Rune Knight (Dragon) + if( (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT ) { + pc->setoption(sd, sd->sc.option&~OPTION_DRAGON); + } + // Ranger (Warg) + else if( (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER ) { + pc->setoption(sd,sd->sc.option&~OPTION_WUGRIDER); + } + // Mechanic (Mado Gear) + else if( (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC ) { + pc->setoption(sd, sd->sc.option&~OPTION_MADOGEAR); + } + // Knight / Crusaders (Peco Peco) + else { pc->setoption(sd, sd->sc.option&~OPTION_RIDING); + } } return 0; |