Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
replace using Notepad++
|
|
Follow-up to dbe5f2237cada6a261e297b60857dc305860a88d
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Quest scripts folders
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Follow-up to 3bd77ffc0daca508352834add828766490075aee
- The names were too generic (not namespaced), and were easily clashing
with custom (and potential future official) constants or variables.
- Constants are now prefixed with a 'GETTIME_' namespace:
- GETTIME_SECOND
- GETTIME_MINUTE
- GETTIME_HOUR
- GETTIME_WEEKDAY
- GETTIME_DAYOFMONTH
- GETTIME_MONTH
- GETTIME_YEAR
- GETTIME_DAYOFYEAR
- Fixed some excessive (and some times incorrect) parentheses in
various scripts using gettime().
- Updated documentation.
Signed-off-by: Haru <haru@dotalux.com>
|
|
constant for gettime( <type> )
constant for Weekday and Month.
|
|
Fixed a bug in Lv4 Weapon Quest dialog
|
|
Fix quests/first_class/tu_merchant.txt
|
|
Fix quest log linking in first_class/tu_sword.txt
|
|
Dialog with rolled rock/paper/scissors didn't appear because of variable typo.
An ancient one. Discovered by Aafemt.
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
|
|
that was blocking players who had level 10 increase weight limit to continue the quest
|
|
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Replaced leftover sprite IDs with constants
- Corrected some NPC facing directions (in modulo 8)
|
|
Always results "0" in dialog.
An ancient one. Discovered by Aafemt.
|
|
http://herc.ws/board/tracker/issue-8677-lots-of-blank-things-in-scripts/
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Reference: rathena/rathena@1d64b8f9e1d95f40778a625c10735a10d9e6f5db (part)
Signed-off-by: Haru <haru@dotalux.com>
|
|
Reference: rathena/rathena@1d64b8f9e1d95f40778a625c10735a10d9e6f5db (part)
Signed-off-by: Haru <haru@dotalux.com>
|
|
Special thanks to MordekaiserGod for pointing out the issue.
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Because of some very old typo, this quest could never reach Minerals exchange dialog.
|
|
|
|
|
|
|
|
Update lvl4_weapon_quest.txt
|
|
Update lvl4_weapon_quest.txt
|
|
Endless Tower, and Bascojin Slave.
|
|
you can change the "npchand == 1" to "npchand1 == 1" or simply change the "npchand1 = random(1,3)" to "npchand = random(1,3)"
|
|
if (.@shobu > 1) {
mes "[Kayron]";
mes "Let's see...";
mes "You won " + shobu + " times.";
mes "You must be really";
mes "Without a doubt, you've";
mes "got some pretty good luck~";
next;
mes "[Kayron]";
mes "Alright, I'll keep my end of the bargain. Give me the materials";
mes "and some time to finish preparing. I'll talk to you later, okay?";
close;
}
mes "You won " + shobu + " times.";
should be:
mes "You won " + .@shobu + " times.";
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
Replaced their use in scripts with checkmount and setmount,
respectively.
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Some scripts were partly refactored/rewritten to use a more modern
coding style (and to fix some issues)
- Note: the 'menu' command will be deprecated soon in favor of 'select'
and 'prompt'.
Signed-off-by: Haru <haru@dotalux.com>
|
|
* fixing some typo on script
|
|
Merchant NPC in Izlude.
|
|
Fix Heart Fragment quest.
|
|
- The Security NPC should print **your** code in the dialog, not the number you have to guess !
- Typo error ```.@ball``` instead of ```@ball```
|
|
Signed-off-by: Haru <haru@dotalux.com>
|
|
- Fixed files with mixed character set or invalid CP949 characters.
- Uncommented '#music' script in the_sign_quest.txt (now the
soundeffect filename should be fixed).
- Added a note to the header of CP949 files not to read or save them as
UTF8, since it'd break their encoding. It should be safe enough to
read them as EUC-KR if your text editor doesn't offer CP949 as an
option.
- Added FIXME notes about untranslated strings in assassin_skills.txt
and WolfchevLaboratory.txt.
Signed-off-by: Haru <haru@dotalux.com>
|
|
- All text files should end with an EOL. Period.
- See http://robots.thoughtbot.com/no-newline-at-end-of-file for info
on how to configure the most common text editors to do it
automatically for you.
Signed-off-by: Haru <haru@dotalux.com>
|
|
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome>
|