Permalink
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
* Implemented VIP system in many official scripts.
- VIP players gain two more badges after Battleground matches. - VIP players pay ten times less for transportation to Brasilis and Dewata. - VIP players get free buffs and mercenary rentals in the Eden Group Headquarters. (iRO only, disabled) - Non-VIP players must use a Reset Stone to begin the third job quests. - Non-VIP players must have a Marriage Covenant to get married. - Non-VIP players pay double for Kafra and Cool Event Corp. Teleport Services. - Non-VIP players pay considerably more for refining equipment. - Non-VIP players gain less quest reward items in Port Malaya quests. - Non-VIP players gain less EXP rewards in Brasilis quests. - Non-VIP players cannot access all towns in Acolyte Warpers script. (iRO only, disabled) - A Reset Stone is required for Bossnia entry. Note that official servers run different VIP/premium systems; the changes above are based on euRO, unless otherwise stated. * Other script changes: - Adding Marriage Covenant item in marriage script. - Fixed some EXP values in Brasilis quests. - Minor updates to Kafra functions. - Turned Cool Event Corp. scripts into a basic function. - Turned Battleground badge rewards into basic functions. Signed-off-by: Euphy <euphy.raliel@rathena.org>
- Loading branch information
Showing
with
962 additions
and 1,299 deletions.
- +9 −6 conf/battle/player.conf
- +15 −15 conf/login_athena.conf
- +2 −0 db/const.txt
- +2 −0 db/quest_db.txt
- +25 −1 doc/script_commands.txt
- +57 −2 npc/battleground/bg_common.txt
- +24 −203 npc/battleground/flavius/flavius01.txt
- +24 −203 npc/battleground/flavius/flavius02.txt
- +20 −163 npc/battleground/tierra/tierra01.txt
- +20 −163 npc/battleground/tierra/tierra02.txt
- +59 −18 npc/events/bossnia.txt
- +44 −271 npc/kafras/cool_event_corp.txt
- +25 −7 npc/kafras/functions_kafras.txt
- +18 −4 npc/merchants/advanced_refiner.txt
- +77 −58 npc/merchants/refine.txt
- +36 −3 npc/other/CashShop_Functions.txt
- +12 −4 npc/other/acolyte_warp.txt
- +86 −48 npc/other/marriage.txt
- +18 −11 npc/re/cities/brasilis.txt
- +14 −7 npc/re/cities/dewata.txt
- +5 −4 npc/re/instances/BakonawaLake.txt
- +5 −4 npc/re/instances/BangungotHospital.txt
- +8 −1 npc/re/jobs/3-1/archbishop.txt
- +14 −1 npc/re/jobs/3-1/guillotine_cross.txt
- +8 −1 npc/re/jobs/3-1/mechanic.txt
- +8 −1 npc/re/jobs/3-1/ranger.txt
- +8 −1 npc/re/jobs/3-1/rune_knight.txt
- +14 −1 npc/re/jobs/3-1/warlock.txt
- +8 −1 npc/re/jobs/3-2/genetic.txt
- +8 −1 npc/re/jobs/3-2/minstrel.txt
- +8 −1 npc/re/jobs/3-2/royal_guard.txt
- +8 −1 npc/re/jobs/3-2/shadow_chaser.txt
- +8 −1 npc/re/jobs/3-2/sorcerer.txt
- +12 −2 npc/re/jobs/3-2/sura.txt
- +8 −1 npc/re/jobs/3-2/wanderer.txt
- +16 −14 npc/re/jobs/novice/novice.txt
- +131 −1 npc/re/quests/eden/eden_iro.txt
- +18 −5 npc/re/quests/quests_brasilis.txt
- +63 −64 npc/re/quests/quests_malaya.txt
- +7 −1 src/config/core.h
- +10 −5 src/map/script.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -3392,3 +3392,5 @@ VAR_MAX_GUILD 6 | ||
| VAR_MAX_GUILDLEVEL 7 | ||
| VAR_MAX_GUILD_STORAGE 8 | ||
| VAR_MAX_BG_MEMBERS 9 | ||
| VAR_VIP_SCRIPT 10 | ||
| VAR_MIN_STORAGE 11 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -2819,3 +2819,5 @@ | ||
| 60353,0,0,0,0,0,0,0,"Bathroom Ghost" | ||
| 60354,0,0,0,0,0,0,0,"Bathroom Ghost" | ||
| 60355,0,0,0,0,0,0,0,"Bathroom Ghost" | ||
|
|
||
| 62238,3600,0,0,0,0,0,0,"Midgardian Mercenary timer" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
d2ee0ddThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's not related to this commit; this is only the script portion.