diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 08:16:25 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 08:16:25 +0000 |
commit | ee93ce7a37a5ea542ecc5ec32bc8a9499b75a739 (patch) | |
tree | 40ab56e3843177e6b83e651b80c89d2b7915c4b0 /src/map/pc.c | |
parent | 1df4d8745da1cfdfa7d2dd24632074fab5234a6b (diff) | |
download | hercules-ee93ce7a37a5ea542ecc5ec32bc8a9499b75a739.tar.gz hercules-ee93ce7a37a5ea542ecc5ec32bc8a9499b75a739.tar.bz2 hercules-ee93ce7a37a5ea542ecc5ec32bc8a9499b75a739.tar.xz hercules-ee93ce7a37a5ea542ecc5ec32bc8a9499b75a739.zip |
- Shooting skills will now need arrows
* Added 'guildgetexp' script command
* Added bLongAtkRate item effect
* Updated Bow Thimble, Archer Skeleton Card, Tribal Solidarity, Sleipnir, Brisingamen, Mjolnir, Megingord, Counter Dagger, Poison Knife
* Updated SP requirements for Full Strip, Full Chemical Protection, Cannibalize
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@485 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 3988b950d..b6e4cbbf0 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2587,6 +2587,10 @@ int pc_bonus(struct map_session_data *sd,int type,int val) sd->classchange=val; } break; + case SP_LONG_ATK_RATE: + if(sd->status.weapon == 11 && sd->state.lr_flag != 2) + sd->atk_rate += val; + break; default: if(battle_config.error_log) printf("pc_bonus: unknown type %d %d !\n",type,val); |