Jump to content
  • 0

Need Help with this one been awake for 25 hours


kaitogashi418

Question


  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.04
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/06/24
  • Last Seen:  

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?

 

image.png.d1c02fbe676370daa52d6611a9707510.png

 

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

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  78
  • Reputation:   19
  • Joined:  12/24/18
  • Last Seen:  

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?

 

image.png.d1c02fbe676370daa52d6611a9707510.png

 

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 ..
);

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  319
  • Reputation:   52
  • Joined:  03/30/13
  • Last Seen:  

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?

 

image.png.d1c02fbe676370daa52d6611a9707510.png

 

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  40
  • Reputation:   7
  • Joined:  06/07/24
  • Last Seen:  

Import sql from autoattack

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.04
  • Content Count:  15
  • Reputation:   0
  • Joined:  11/06/24
  • Last Seen:  

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...