[DiscordArchive] Not that I saw, was I supposed to put something in the query window?
[DiscordArchive] Not that I saw, was I supposed to put something in the query window?
Archived author: BootlessFawn007 • Posted: 2025-06-23T06:53:49.462000+00:00
Original source
Not that I saw, was I supposed to put something in the query window?
Archived author: BootlessFawn007 • Posted: 2025-06-23T06:53:57.895000+00:00
Original source
Thought I just needed to run the file
Archived author: Mithria • Posted: 2025-06-23T06:53:58.068000+00:00
Original source
not if you used the file menu no
Archived author: BootlessFawn007 • Posted: 2025-06-23T06:54:22.244000+00:00
Original source
/* File "mod_solo_craft.sql" executed, with 1 queries and 0 affected rows */
/* 1 file(s) processed, in 00:00:00.0 */
Archived author: Mithria • Posted: 2025-06-23T06:54:34.821000+00:00
Original source
that doesnt seem right
Archived author: BootlessFawn007 • Posted: 2025-06-23T06:54:41.707000+00:00
Original source
0 affected
Archived author: Spargel • Posted: 2025-06-23T06:54:45.762000+00:00
Original source
This is all that's in the solo_craft sql, so you could just run it as a query if it didn't work:
```CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` (
`GUID` bigint unsigned NOT NULL,
`Difficulty` float NOT NULL,
`GroupSize` int NOT NULL,
`SpellPower` int unsigned NOT NULL DEFAULT '0',
`Stats` float NOT NULL DEFAULT '100',
PRIMARY KEY (`GUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;```
Archived author: BootlessFawn007 • Posted: 2025-06-23T06:55:09.440000+00:00
Original source
So just copy that in and execute, then cmake and rebuild again? dang lol
Archived author: Tereneckla • Posted: 2025-06-23T06:55:22.022000+00:00
Original source
no need for build with only sql changes
Archived author: Spargel • Posted: 2025-06-23T06:55:28.971000+00:00
Original source
No, you don't need to build again, just restarting the server afterwards.