10-03-2011, 06:50 PM
It wont work cause you need to add questions in ox table in DB. If DB has no question then oxevent command will show nothing. Here is an example:
CREATE TABLE IF NOT EXISTS `t_ox` (
`a_index` int(11) NOT NULL,
`a_question` varchar(255) NOT NULL,
`a_answer` int(255) NOT NULL,
`a_country` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `t_ox`
--
INSERT INTO `t_ox` (`a_index`, `a_question`, `a_answer`, `a_country`) VALUES
(1, NS toon starts as high level ? O=True X=False., 0, 13),
(2, Devil runes work like HeavenStones? O=True X=False., 0, 13),
(3, Heavenstones can be used on level 145 items? O=True X=False., 0, 13),
(4, Dratan Siege owners cant fight in Merac Siege? O=True X=False., 0, 13),
(5, Level 10 is normal mode GameMaster? O=True X=False., 0, 13);

