Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Replaced 'getserverdef' command with 'script_hardcoded_constants' fun…
…ction in source. These constants can now be directly accessed in scripts. (Hercules 950e3eb) - Relocated 'Option_*' constants from 'db/const.txt' to source; added OPTION_COSTUME compound. (Hercules a5728fd) - Added MAX_CHAT_USERS define. (Hercules 950e3eb) - Follow-up ca9642a: applied 'Loc' changes to Pre-Renewal database. Signed-off-by: Euphy <euphy.raliel@rathena.org>
- Loading branch information
Showing
with
303 additions
and 317 deletions.
- +0 −40 db/const.txt
- +86 −86 db/pre-re/item_db.txt
- +15 −19 doc/script_commands.txt
- +1 −1 npc/battleground/bg_common.txt
- +1 −1 npc/events/bossnia.txt
- +1 −1 npc/kafras/cool_event_corp.txt
- +1 −1 npc/kafras/functions_kafras.txt
- +1 −1 npc/merchants/advanced_refiner.txt
- +1 −1 npc/merchants/refine.txt
- +2 −2 npc/other/marriage.txt
- +1 −1 npc/re/cities/brasilis.txt
- +1 −1 npc/re/cities/dewata.txt
- +1 −1 npc/re/instances/BakonawaLake.txt
- +1 −1 npc/re/instances/BangungotHospital.txt
- +1 −1 npc/re/jobs/3-1/archbishop.txt
- +2 −2 npc/re/jobs/3-1/guillotine_cross.txt
- +1 −1 npc/re/jobs/3-1/mechanic.txt
- +1 −1 npc/re/jobs/3-1/ranger.txt
- +1 −1 npc/re/jobs/3-1/rune_knight.txt
- +2 −2 npc/re/jobs/3-1/warlock.txt
- +1 −1 npc/re/jobs/3-2/genetic.txt
- +1 −1 npc/re/jobs/3-2/minstrel.txt
- +1 −1 npc/re/jobs/3-2/royal_guard.txt
- +1 −1 npc/re/jobs/3-2/shadow_chaser.txt
- +1 −1 npc/re/jobs/3-2/sorcerer.txt
- +1 −1 npc/re/jobs/3-2/sura.txt
- +1 −1 npc/re/jobs/3-2/wanderer.txt
- +4 −4 npc/re/jobs/novice/novice.txt
- +4 −4 npc/re/quests/quests_brasilis.txt
- +19 −19 npc/re/quests/quests_malaya.txt
- +86 −86 sql-files/item_db.sql
- +3 −1 src/map/chat.h
- +4 −4 src/map/clif.c
- +53 −27 src/map/script.c
- +1 −0 src/map/script.h
- +1 −0 src/map/status.h
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
| @@ -302,33 +302,6 @@ EAJ_BABY_SURA 0x6204 | ||
| EAJ_BABY_GENETIC 0x6205 | ||
| EAJ_BABY_CHASER 0x6206 | ||
|
|
||
| bc_all 0 | ||
| bc_map 1 | ||
| bc_area 2 | ||
| @@ -4547,18 +4520,5 @@ IT_AMMO 10 | ||
| IT_DELAYCONSUME 11 | ||
| IT_CASH 18 | ||
|
|
||
| false 0 | ||
| true 1 | ||
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
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
| @@ -74,7 +74,7 @@ function script F_CoolEventCorp { | ||
| mes "Please choose"; | ||
| mes "your destination."; | ||
| next; | ||
| if (VIP_SCRIPT && !vip_status(1)) | ||
| set .@cost,4400; | ||
| else | ||
| set .@cost,2200; | ||
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
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
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.