kaitogashi418 Posted November 11, 2024 Posted November 11, 2024 So i am doing a lot of stuffs... from scratch to customization.... tried to search answers for this one but cant seem to find one how to fix this? Ill try to do more research again once i woke up for now ill just sleep... tnx for the peeps who will help Quote
0 Mice Posted November 11, 2024 Posted November 11, 2024 9 hours ago, kaitogashi418 said: So i am doing a lot of stuffs... from scratch to customization.... tried to search answers for this one but cant seem to find one how to fix this? Ill try to do more research again once i woke up for now ill just sleep... tnx for the peeps who will help Hello, if you purchased the auto attack directly from Shakto, it should come with a database.sql or autoattack.sql file something like that. Simply import or execute it in your SQL database or phpMyAdmin, or whichever name you're more familiar with between the two. CREATE TABLE `aa_common_config` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_common_config` ADD UNIQUE KEY `char_id` (`char_id`); CREATE TABLE `aa_items` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_items` ADD UNIQUE KEY `char_id` (`char_id`,`type`,`item_id`); CREATE TABLE `aa_mobs` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_mobs` ADD UNIQUE KEY `char_id` (`char_id`,`mob_id`); CREATE TABLE `aa_skills` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); Quote
0 Vy Low Posted November 11, 2024 Posted November 11, 2024 1 hour ago, kaitogashi418 said: So i am doing a lot of stuffs... from scratch to customization.... tried to search answers for this one but cant seem to find one how to fix this? Ill try to do more research again once i woke up for now ill just sleep... tnx for the peeps who will help this is from auto attack, you need to import auto attack sql Quote
0 kaitogashi418 Posted November 11, 2024 Author Posted November 11, 2024 1 hour ago, Mice said: Hello, if you purchased the auto attack directly from Shakto, it should come with a database.sql or autoattack.sql file something like that. Simply import or execute it in your SQL database or phpMyAdmin, or whichever name you're more familiar with between the two. CREATE TABLE `aa_common_config` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_common_config` ADD UNIQUE KEY `char_id` (`char_id`); CREATE TABLE `aa_items` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_items` ADD UNIQUE KEY `char_id` (`char_id`,`type`,`item_id`); CREATE TABLE `aa_mobs` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); ALTER TABLE `aa_mobs` ADD UNIQUE KEY `char_id` (`char_id`,`mob_id`); CREATE TABLE `aa_skills` ( `char_id` int UNSIGNED NOT NULL, ` ` so on .. ); tnx Quote
Question
kaitogashi418
So i am doing a lot of stuffs... from scratch to customization.... tried to search answers for this one but cant seem to find one how to fix this?
Ill try to do more research again once i woke up for now ill just sleep... tnx for the peeps who will help
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.