0e00165195
PlayFlavorID(NPC, type, id, index, Player, language) Set Player to 'nil' to send to all clients, specifying a Player will make it send ONLY to that player New command /reload voiceovers added - versioning updated to 0.9.4-aquarii - Fix #454 Support for SendShowBook to have language, items field 'book_language' added - Some debug log cleanup
13 lines
No EOL
662 B
SQL
13 lines
No EOL
662 B
SQL
insert into commands set type=1,command='reload',subcommand='voiceovers',required_status=100,handler=532;
|
|
CREATE TABLE `voiceovers` (
|
|
`type_id` tinyint(3) unsigned NOT NULL default 0,
|
|
`id` int(10) unsigned NOT NULL default 0,
|
|
`indexed` smallint(5) unsigned NOT NULL default 0,
|
|
`mp3_string` text not null default '',
|
|
`text_string` text not null default '',
|
|
`emote_string` text not null default '',
|
|
`key1` int(10) unsigned NOT NULL default 0,
|
|
`key2` int(10) unsigned NOT NULL default 0,
|
|
`garbled` tinyint(3) unsigned NOT NULL default 0,
|
|
`garble_link_id` tinyint(3) unsigned NOT NULL default 0
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1; |