
Fixes https://github.com/rathena/rathena/issues/6463 Implements Episode 17.1 - Illusion Adds viewpointmap script command Adds getbaseexp_ratio and getjobexp_ratio script command Comments quest log support for the Nameless Island Quest, Nameless Island Access Quest and Geoborg Family Curse Quest due to utilizing quest IDs that are used elsewhere. Credits to @crazy-arashi for the initial content release Co-authored-by: crazy-arashi <meganekiho@gmail.com> Co-authored-by: aleos <aleos89@users.noreply.github.com> Co-authored-by: Atemo <capucrath@gmail.com> Co-authored-by: Lemongrass3110 <lemongrass@kstp.at> Thanks to @crazy-arashi @Atemo @aleos89 @Lemongrass3110 @secretdataz @Dia @humanwizzard @idk-whoami @Megelith @Daegaladh
4 lines
252 B
SQL
4 lines
252 B
SQL
-- Reset Nameless Island and Geoborg Family Curse quests which were using custom IDs that have been overtaken
|
|
DELETE FROM `quest` WHERE `quest_id` >= 17000 AND `quest_id` <= 17017;
|
|
DELETE FROM `quest` WHERE `quest_id` >= 18030 AND `quest_id` <= 18052;
|