- Fixed some typos in quest_db.txt (bugreport:4186)

- Fixed a typo in socket_enchant.txt (bugreport:4188)
- Added missing `quest` table to the convert_engine sql files. (r12559,r13960,r13963)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@14284 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
brianluau 2010-04-17 09:24:21 +00:00
parent 0ac0fa1705
commit 1f09de23eb
5 changed files with 7 additions and 4 deletions

View File

@ -703,7 +703,7 @@
10022,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut" 10022,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut"
10023,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-" 10023,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-"
10024,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-" 10024,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-"
10025,0,0,0,0,0,0,0,"Good-bye, dear!", 10025,0,0,0,0,0,0,0,"Good-bye, dear!"
10026,0,0,0,0,0,0,0,"Reforming Meto" 10026,0,0,0,0,0,0,0,"Reforming Meto"
10027,0,0,0,0,0,0,0,"Reforming Meto" 10027,0,0,0,0,0,0,0,"Reforming Meto"
10028,0,0,0,0,0,0,0,"Reforming Meto" 10028,0,0,0,0,0,0,0,"Reforming Meto"
@ -857,8 +857,8 @@
11096,0,0,0,0,0,0,0,"Delivering Supplies" 11096,0,0,0,0,0,0,0,"Delivering Supplies"
11097,0,0,0,0,0,0,0,"Delivering Supplies" 11097,0,0,0,0,0,0,0,"Delivering Supplies"
11098,0,0,0,0,0,0,0,"Delivering Supplies" 11098,0,0,0,0,0,0,0,"Delivering Supplies"
11099,0,0,0,0,0,0,0," To My Friend" 11099,0,0,0,0,0,0,0,"To My Friend"
11100,0,0,0,0,0,0,0,"To My Friend" 11100,0,0,0,0,0,0,0,"To My Friend"
11101,0,0,0,0,0,0,0,"Secret note of Bazet" 11101,0,0,0,0,0,0,0,"Secret note of Bazet"
11102,0,0,0,0,0,0,0,"Secret note of Bazet" 11102,0,0,0,0,0,0,0,"Secret note of Bazet"
11103,0,0,0,0,0,0,0,"Secret note of Bazet" 11103,0,0,0,0,0,0,0,"Secret note of Bazet"

View File

@ -6314,6 +6314,7 @@ Example(s):
This function will return 1 if the character number Position in the given string This function will return 1 if the character number Position in the given string
is a letter, 0 if it isn't a letter but a digit or a space. is a letter, 0 if it isn't a letter but a digit or a space.
The first letter is position 0.
--------------------------------------- ---------------------------------------

View File

@ -195,7 +195,7 @@ payon,140,151,5 script Seiyablem#pay 84,{
mes "[Seiyablem]"; mes "[Seiyablem]";
mes "Um... S Class?"; mes "Um... S Class?";
mes "You sure about this?"; mes "You sure about this?";
mes "Alright... Let me know the Armor to which you'd like to add a Sot, and I'll tell what I need to try it."; mes "Alright... Let me know the Armor to which you'd like to add a Slot, and I'll tell what I need to try it.";
next; next;
switch(select("Majestic Goat:Spiky Band:Bone Helm:Corsair:Crown:Tiara:Sphinx Hat:Robe of Cast:Earring:Ring:Bow Thimble")) switch(select("Majestic Goat:Spiky Band:Bone Helm:Corsair:Crown:Tiara:Sphinx Hat:Robe of Cast:Earring:Ring:Bow Thimble"))
{ {

View File

@ -34,6 +34,7 @@ ALTER TABLE `mercenary_owner` ENGINE = InnoDB;
#ALTER TABLE `mob_db2` ENGINE = InnoDB; #ALTER TABLE `mob_db2` ENGINE = InnoDB;
ALTER TABLE `party` ENGINE = InnoDB; ALTER TABLE `party` ENGINE = InnoDB;
ALTER TABLE `pet` ENGINE = InnoDB; ALTER TABLE `pet` ENGINE = InnoDB;
ALTER TABLE `quest` ENGINE = InnoDB;
ALTER TABLE `ragsrvinfo` ENGINE = InnoDB; ALTER TABLE `ragsrvinfo` ENGINE = InnoDB;
ALTER TABLE `sc_data` ENGINE = InnoDB; ALTER TABLE `sc_data` ENGINE = InnoDB;
ALTER TABLE `skill` ENGINE = InnoDB; ALTER TABLE `skill` ENGINE = InnoDB;

View File

@ -34,6 +34,7 @@ ALTER TABLE `mercenary_owner` ENGINE = MyISAM;
#ALTER TABLE `mob_db2` ENGINE = MyISAM; #ALTER TABLE `mob_db2` ENGINE = MyISAM;
ALTER TABLE `party` ENGINE = MyISAM; ALTER TABLE `party` ENGINE = MyISAM;
ALTER TABLE `pet` ENGINE = MyISAM; ALTER TABLE `pet` ENGINE = MyISAM;
ALTER TABLE `quest` ENGINE = MyISAM;
ALTER TABLE `ragsrvinfo` ENGINE = MyISAM; ALTER TABLE `ragsrvinfo` ENGINE = MyISAM;
ALTER TABLE `sc_data` ENGINE = MyISAM; ALTER TABLE `sc_data` ENGINE = MyISAM;
ALTER TABLE `skill` ENGINE = MyISAM; ALTER TABLE `skill` ENGINE = MyISAM;