summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-09-04- Removed usage of MAX_PC_BONUS all over the code, it is now only used in ↵skotlex8-138/+112
map.h (this is done so that individual bonuses can have their array length modified without having to change all the other bonuses as well). - Removed bonus bAddDamageByClass since it is not needed, and implemented bAddDefClass which can be used for the same (but previously was doing nothing). - Cleaned up the weapon_data structure to use a sub-structure to hold the add_dmg information. - Cleaned up some of the add dmg/def bonuses so the 'count' variable is not needed anymore. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11121 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03* Updated Staff of Destruction, Siroma Card and Imp CardPlaytester3-10/+9
- also fixed duration of Antimagic and Stoneskin - please report any bugs you find with all the new equips git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11120 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03Fixed Staff of Piercing, General Ygnigem Card and Vesper CardPlaytester3-8/+5
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11119 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03- Made regen work always, like Hp/Sp Loss, it no longer displays healing ↵skotlex3-10/+10
numbers as well. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11118 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03fixed && -> || typo in r11113 ...ultramage1-4/+4
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11115 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03Fixed Zeny Knife, Strong Shield, Cramp Card, Drosera Card and Slow PotionPlaytester2-12/+9
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11114 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03Fixed a copy-paste typo in r11112.ultramage1-4/+4
Applied the useful ARR_FIND() macro to 4 item bonuses. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11113 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03- Added bonuses bSPRegenRate, bHPRegenRate. They behave like the opposite of ↵skotlex10-82/+197
bHPLossRate/bSPLossRate, making you gain x Hp/Sp every y ms. - Added bonus bIgnoreMdefRate, used to ignore a % of the target's mdef when using magic attacks (bonus2 will ignore part of the mdef of all targets, bonus3 receives a race argument) - You can now use bonus2 bCastRate to adjust the cast rate of a single skill. - Cleaned the code for bleeding (hp-loss) and extended it to handle regen as well. - Some small cleanups in the pc_bonus functions - Removed bonus3 bHpLossRate since it was doing nothing and is not used. - Corrected bGetZeny bonus to be like in Aegis. The amount received is from 1 to the given amount, you can use negative zeny values to use an amount dependant on mob's level (amount*lv). - Updated doc/item_bonus.txt with all these changes - Anti-Magic/Stone-Skin now increase/decrease def/mdef only and in an absolute mode (+20*lv rather than +20%*lv). Also the duration is greatly decreased (x/15) when used on players. - Now when a player uses a strip skill without having it in the skill tree (auto-casted) the duration will be 0, the equipment will be stripped without causing the status change that blocks reequipping. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11112 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-03- Merged @whereis from my server (displays normal spawn maps for given ↵skotlex10-9/+113
mobs). This command should be working correctly considering I've been using it since July. I was meant to merge it as soon as I got my hard-drive back, but I kinda forgot @_@ - bonus3 autospell (and autospell when hit) will change the target to self when the skill to be casted is inf&4 (self skill). - Corrected script homevolution not making the homunculus /swt if it is invoked when not loyal. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11110 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-02Forgot to update base item db sql file! :PParadox924X1-1/+1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11108 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-02Updated Refined Sakkat Box to give only 1 Sakkat instead of 10.Paradox924X3-1/+4
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11106 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-02Fixed db/Changelog.txtPlaytester1-6/+8
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11105 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-01eol-style for the startup scripts and batch filesultramage15-575/+544
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11104 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-01Fixed one HORRIBLE typo in the last chat.c update (ARRAYSIZE -> ARRAYLENGTH)ultramage1-2/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11103 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-01Fixed certain typos in src/npc/doc filesultramage20-40/+40
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11102 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-01* Implemented 12.1 cards to the best of my ability. Let me know if I missed ↵L0ne_W0lf2-10/+52
any effects that are there that I missed. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11101 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-31* Documented/cleaned up chatroom code and packetryultramage7-109/+144
* Added some comments to clif_changechatowner() - totally broken, see the code + topic:163829 * Implemented the chatroom display packet properly - now has 4 types: public, private, npc and non-clickable npc chatroom * Implemented the chatroom leave packet properly - now utilizes the 'kicked' flag when the user was forced to leave - TODO: banlist support to prevent re-entry, see jAthena code git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11100 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30Updated sql filesPlaytester3-79/+485
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11098 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30Updated Cursed Abbey spawns some morePlaytester5-5/+9
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11096 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30* Fixed some minor bugs in the Sign Quest.SinSloth2-3/+9
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11094 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30- Oops, forgot a very important check in homevolution D:skotlex1-1/+1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11092 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30- Cleaned up a bit the homunculus evolution code, and fixed homevolution ↵skotlex6-32/+22
allowing the homunc to 're-evolve' even though it was already evolved. - Optimized a bit the skillheal code in regards to Apple of Idun and Sanctuary git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11090 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-30- Added a piece of missing code from the addition of sd->skillhealskotlex1-0/+1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11089 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-29* Blacksmith job quest bug fixes care of Micktu.L0ne_W0lf2-6/+8
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11088 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-29Updated all heal and offensive heal item bonusesPlaytester2-3/+5
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11087 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-29- oops, fixed bSkillHeal raising bSkillAtk insteadskotlex1-7/+7
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11086 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-29- Added bonus bSkillHeal to distinguish offensive skill damage increases ↵skotlex9-37/+69
from healing power boosts. - Moved battle_skillatk_bonus to pc.c, cleaned up the related skillatk bonus code to consider the skillheal bonus option. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11085 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-28* Knight job quest bug fixes.L0ne_W0lf2-4/+8
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11081 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-28* Made some changes due to recent fixes in the Sign Quest.SinSloth3-10/+17
* Dandelion's Request event now resets properly after it has been completed by a player. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11079 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-24* Changed the Keil Hyre Black Keycard distributing NPCs slightly.L0ne_W0lf4-37/+24
Changes to the Keil Hyre quest were mirrored on Stable as well. * Bug fixes to the Wizard and Knight job quests. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11076 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-24Fixed a rare crash concerning invalid homunculus data and one NULL-pointer.ultramage1-3/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11075 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-24Fixed a documentation mistake in 'areamonster' (missing argument).ultramage7-12/+15
Fixed incorrect sprite used for twintowers event npc. Fixed a mistake in changelog. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11074 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-24- Fixed the hotkey list sending to the client not displaying right away.skotlex4-5/+9
- Corrected the unit_id of NPC_EVILLAND (taken from jA) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11071 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-23Updated Unix start scripts from Shazeya, please read changelog for detailsDracoRPG3-329/+89
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11070 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-23Fixed Galion losing boss modePlaytester2-2/+4
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11069 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-22- Fixed Dragon Fear's status change selection and duration.skotlex4-15/+14
- Fixed Metamorphosis not displaying a speed-change update on the client. - Status changes that were blocked by element are no longer blocked, instead, now no-damage skills are blocked if they have an element which is absorbed by the target (This is the behaviour that Tharis believes is correct). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11067 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-22Updated Cursed Abbey spawnsPlaytester2-10/+18
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11064 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-22Some small MVP updates according to latest infoPlaytester2-3/+5
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11063 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-21Fixed Book of the Dead not autocasting the correct skillPlaytester2-1/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11062 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-21Improved item_bonus.txtPlaytester1-72/+73
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11061 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-21Fixed Coma status chances being way too lowPlaytester2-8/+9
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11060 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-21Corrected item drop rate limits to allow full 0.01%-100% range (fixes ↵ultramage1-13/+13
mistake from r11043) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11059 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-21Fixed up some commentsPlaytester1-5/+3
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11058 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-20* Corrected bonus for Gold_Tiara_. (Playtester)L0ne_W0lf2-1/+3
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11056 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-20- Oops, forgot to add the Pulse Strike damage modifier.skotlex2-2/+1
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11055 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-20- Fixed Earthquake not clearing out the target-count before counting targets.skotlex2-5/+4
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11052 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-20More compilation warning fixes...ultramage2-0/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11051 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-19Fixed small mistake in confs causing some confusion.Paradox924X2-1/+2
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11048 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-19Fixed a gcc compilation error and some warnings.ultramage3-1/+18
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11046 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-08-19* Fixed weight for Silver_Shotel and Spirit_of_Kamaitachi.L0ne_W0lf2-2/+3
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11044 54d463be-8e91-2dee-dedb-b68131a5f0ec