whats up? i need some help
Posted: Tue Dec 15, 2009 11:39 pm
If you want to receive support we need this info to help you properly.
ยป Find Revision
L2J Revision Number:3695
L2JDP Revision Number:6775
Right to the point? tryna get the scheme buffer in my server half way there and need a lil help.
this is prolly a uber noob question ... but ive figured out how to do most of this stuff on my own and i cant seem to find a good turtorial on how to implement a npc scheme buffer... i downloaded the script and everything from viewtopic.php?f=73&t=14469&p=71049&hili ... fer#p71049 , now i followed most of the steps in the download file its self, the only problem i seem to come across is when it says to create a table, now i know how to create the table... the problem im having is that when i create table i only have one slot available to edit =/ i know how to creat the table but how do i create the tabs within the table or where do i even put this cuz i thought i use this in navicat .... cuz its talkn bout tables... sry for such the noobness.
CREATE TABLE IF NOT EXISTS `scheme_buffer_profiles` (
`charId` int(10) unsigned NOT NULL, <--- char i dont have a tab for that when i create a table -_-
`profiles` varchar(45) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `scheme_buffs` (
`buff_name` varchar(45) CHARACTER SET latin1 COLLATE latin1_spanish_ci DEFAULT NULL,
`buff_id` int(10) DEFAULT NULL,
`buff_lvl` int(10) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `scheme_char_buffs` (
`charId` int(10) unsigned NOT NULL,
`profiles` varchar(45) DEFAULT NULL,
`buff_name` varchar(45) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
ยป Find Revision
L2J Revision Number:3695
L2JDP Revision Number:6775
Right to the point? tryna get the scheme buffer in my server half way there and need a lil help.
this is prolly a uber noob question ... but ive figured out how to do most of this stuff on my own and i cant seem to find a good turtorial on how to implement a npc scheme buffer... i downloaded the script and everything from viewtopic.php?f=73&t=14469&p=71049&hili ... fer#p71049 , now i followed most of the steps in the download file its self, the only problem i seem to come across is when it says to create a table, now i know how to create the table... the problem im having is that when i create table i only have one slot available to edit =/ i know how to creat the table but how do i create the tabs within the table or where do i even put this cuz i thought i use this in navicat .... cuz its talkn bout tables... sry for such the noobness.
CREATE TABLE IF NOT EXISTS `scheme_buffer_profiles` (
`charId` int(10) unsigned NOT NULL, <--- char i dont have a tab for that when i create a table -_-
`profiles` varchar(45) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `scheme_buffs` (
`buff_name` varchar(45) CHARACTER SET latin1 COLLATE latin1_spanish_ci DEFAULT NULL,
`buff_id` int(10) DEFAULT NULL,
`buff_lvl` int(10) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `scheme_char_buffs` (
`charId` int(10) unsigned NOT NULL,
`profiles` varchar(45) DEFAULT NULL,
`buff_name` varchar(45) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;