Re: [Ascent]I need some help
Looks like you have to add the coodown sql to your database...
not sure about the second
Re: [Ascent]I need some help
Yea I figured that I had to add it...But I need to know like how to...Like whats the code to do that...?
Re: [Ascent]I need some help
I assume you are using SQLyog.
Step 1 - Open SQLyog
Step 2 - Connect to your Database
Step 3 - Mark/target your "character" database
Step 4 - Copy/paste this Code into your Query
Quote:
DROP TABLE IF EXISTS playercooldownsecurity;
DROP TABLE IF EXISTS playercooldownitems;
DROP TABLE IF EXISTS playercooldowns;
CREATE TABLE `playercooldowns` (
`player_guid` int(30) NOT NULL,
`cooldown_type` int(30) NOT NULL COMMENT '0 is spell, 1 is item, 2 is spell category',
`cooldown_misc` int(30) NOT NULL COMMENT 'spellid/itemid/category',
`cooldown_expire_time` int(30) NOT NULL COMMENT 'expiring time in unix epoch format',
`cooldown_spellid` int(30) NOT NULL COMMENT 'spell that cast it',
`cooldown_itemid` int(30) NOT NULL COMMENT 'item that cast it'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Step 5 - Mark all of the code and press F9
And it should be done.
Re: [Ascent]I need some help
Hey thanks FlexDK its works fine now...=)
Now all I need help on is that problem with now quest in the game...=\