• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[Trinity SQL] Players start with riding skills

Synth

Exalted Member
Hello Emudevs,today i'm going to release a simple query that will make players start with riding skills,its made by me.

SQL info:
●Players start with riding skills on login.
NOTE:I make 2 way of SQL's one for least rev and the other if you are using all races and all classes and you have an old DB.

SQL:
Code:
-- Player Start with Riding Skills (Least Rev)
INSERT INTO `playercreateinfo_spell` (`racemask`, `classmask`, `Spell`, `Note`) VALUES
(0, 0, 33389, 'Apprentice Riding'),
(0, 0, 33392, 'Journeyman Riding'),
(0, 0, 34092, 'Expert Riding'),
(0, 0, 34093, 'Artisan Riding'),
(0, 0, 54198, 'Cold Weather Flying');

Code:
-- Player Start with Riding Skills (Old Rev)
INSERT INTO `playercreateinfo_spell` (`race`, `class`, `Spell`, `Note`) VALUES
(0, 0, 33389, 'Apprentice Riding'),
(0, 0, 33392, 'Journeyman Riding'),
(0, 0, 34092, 'Expert Riding'),
(0, 0, 34093, 'Artisan Riding'),
(0, 0, 54198, 'Cold Weather Flying');

If you have any question feel free to ask me.

Thank you!
Best regards,
Synth !
 

Rochet2

Moderator / Eluna Dev
Since the DB uses default values, you should be able to make a version that works for both :)

Code:
INSERT INTO `playercreateinfo_spell` (`Spell`, `Note`) VALUES
(33389, 'Apprentice Riding'),
(33392, 'Journeyman Riding'),
(34092, 'Expert Riding'),
(34093, 'Artisan Riding'),
(54198, 'Cold Weather Flying');
 

Synth

Exalted Member
Since the DB uses default values, you should be able to make a version that works for both :)

Code:
INSERT INTO `playercreateinfo_spell` (`Spell`, `Note`) VALUES
(33389, 'Apprentice Riding'),
(33392, 'Journeyman Riding'),
(34092, 'Expert Riding'),
(34093, 'Artisan Riding'),
(54198, 'Cold Weather Flying');
Ahh thank you :fuckthathshit:
 
Top