kaitogashi418 Posted November 11, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.04 Content Count: 15 Reputation: 0 Joined: 11/06/24 Last Seen: November 19, 2024 Share 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 Link to comment Share on other sites More sharing options...
0 Mice Posted November 11, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 78 Reputation: 19 Joined: 12/24/18 Last Seen: 7 hours ago Share 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 Link to comment Share on other sites More sharing options...
0 Vy Low Posted November 11, 2024 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 319 Reputation: 52 Joined: 03/30/13 Last Seen: 6 hours ago Share 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 Link to comment Share on other sites More sharing options...
0 Berlin Posted November 11, 2024 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 40 Reputation: 7 Joined: 06/07/24 Last Seen: 4 hours ago Share Posted November 11, 2024 Import sql from autoattack Quote Link to comment Share on other sites More sharing options...
0 kaitogashi418 Posted November 11, 2024 Group: Members Topic Count: 7 Topics Per Day: 0.04 Content Count: 15 Reputation: 0 Joined: 11/06/24 Last Seen: November 19, 2024 Author Share 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 Link to comment Share on other sites More sharing options...
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
Link to comment
Share on other sites
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.