Jump to content
  • 0

Need Help with this one been awake for 25 hours


Question

Posted

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

4 answers to this question

Recommended Posts

  • 0
Posted
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 ..
);

 

  • 0
Posted
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

  • 0
Posted
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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...