[Solved] Create spells and line
PostPosted: Wed Mar 14, 2012 4:40 pm
Hi all.
I'm creating a custom character class.
All works except the magic line appear with a "?" before his name.
After searches, i understand it's a DB problem. I've created this in :
In language
Thanks by advance.
Hunab Ku.
I'm creating a custom character class.
All works except the magic line appear with a "?" before his name.
After searches, i understand it's a DB problem. I've created this in :
In language
- Code: Select all
INSERT INTO `language` (`Language_ID`, `TranslationID`, `EN`, `DE`, `FR`, `IT`, `ES`, `CZ`, `PackageID`, `CU`) VALUES
('MySpellLine', 'SkillBase.RegisterPropertyNames.MySpellLine', 'My Spell Line', 'My Spell Line', 'My Spell Line', '', NULL, NULL, '', NULL);
- Code: Select all
INSERT IGNORE INTO `spell` (`Spell_ID`, `SpellID`, `ClientEffect`, `Icon`, `Name`, `Description`, `Target`, `Range`, `Power`, `CastTime`, `Damage`, `DamageType`, `Type`, `Duration`, `Frequency`, `Pulse`, `PulsePower`, `Radius`, `RecastDelay`, `ResurrectHealth`, `ResurrectMana`, `Value`, `Concentration`, `LifeDrainReturn`, `AmnesiaChance`, `Message1`, `Message2`, `Message3`, `Message4`, `InstrumentRequirement`, `SpellGroup`, `EffectGroup`, `SubSpellID`, `MoveCast`, `Uninterruptible`, `IsPrimary`, `IsSecondary`, `AllowBolt`, `SharedTimerGroup`, `PackageID`, `IsFocus`) VALUES
('MySpell_7', 29003, 29003, 29003, 'My Spell 7', 'Description of my Spell level 7', 'Self', NULL, 5, 3, NULL, NULL, 'Type_Of_My_Spell_7', 1200, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, NULL, NULL, NULL, NULL, NULL, 2010, 2, NULL, 1, 1, NULL, NULL, NULL, NULL, 'MyPackageID', NULL);
- Code: Select all
INSERT INTO `spellline` (`SpellLine_ID`, `KeyName`, `Name`, `Spec`, `IsBaseLine`, `PackageID`) VALUES
('MySpellLine', 'My Spell Line', My Spell Line', 'My Spell Line', 0, 'MyPackageID');
- Code: Select all
INSERT INTO `specialization` (`Specialization_ID`, `KeyName`, `Name`, `Icon`, `Description`) VALUES
('MySpellLine', 'My Spell Line', 'My Spell Line', 0, 'no');
- Code: Select all
INSERT INTO `linexspell` (`LineXSpell_ID`, `LineName`, `SpellID`, `Level`, `PackageID`) VALUES
(''MySpell_7', 'My Spell Line', 29003, 7, 'MyPackageID'),
Thanks by advance.
Hunab Ku.