[RELEASE] Database Action Extractor

09/14/2023 07:43 DuaSelipar#1
as it say in title you can extract action from your database (if you have quest/mission from another db can use this to extract it), it just improve version from
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]

whay you need latest xampp version installed in your pc because its using PDO PHP.

what it can do:
select all,copy and clear all text in textbox.

edit your config.php:

Quote:
<?php
// Define database
define('dbhost', 'localhost');
define('dbuser', 'test'); //your mysql user
define('dbpass', 'test123'); //your mysql pass
define('dbname', 'newdb1'); //your mysql database

// Connecting database
try {
$con = new PDO("mysql:host=".dbhost."; dbname=".dbname, dbuser, dbpass);
$con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(PDOException $e) {
echo $e->getMessage();
}

?>
[Only registered and activated users can see links. Click Here To Register...]
04/11/2024 14:29 zukoo#2
My friend, thank you very much for the script.
I made an edit and would like to share it, because I missed inserting the data into cq_task... so I made a modification to the script and wanted to share it with you.
Furthermore, I noticed that it did not generate the entire script and ended up crashing, as shown in your image. I fixed that too.
Try it and tell me if it works, thank you!

[Only registered and activated users can see links. Click Here To Register...]
12/09/2025 15:02 zulflbeatz#3
[Only registered and activated users can see links. Click Here To Register...]

how do you fix problem like this? why mine not same? :confused:
12/10/2025 23:01 SoullessKiller#4
Change System Locale to Chinese Simplified, restart PC viola
12/12/2025 16:10 zulflbeatz#5
Quote:
Originally Posted by SoullessKiller View Post
Change System Locale to Chinese Simplified, restart PC viola
i already change it but still same or need to change whole? :confused:

[Only registered and activated users can see links. Click Here To Register...]
12/12/2025 18:03 DuaSelipar#6
Quote:
Originally Posted by zulflbeatz View Post
i already change it but still same or need to change whole? :confused:

[Only registered and activated users can see links. Click Here To Register...]
check my github i already create app for it