Forums WoW Modding Support Archives Azerothcore Discord Archives [DiscordArchive] I just delete that 1st entry i guess?

[DiscordArchive] I just delete that 1st entry i guess?

[DiscordArchive] I just delete that 1st entry i guess?

Pages (3): Previous 1 2 3 Next
rektbyfaith
Administrator
0
03-08-2025, 01:33 PM
#11
Archived author: Ryan Turner • Posted: 2025-03-08T13:33:50.613000+00:00
Original source

I see what's wrong 1 mmt
rektbyfaith
03-08-2025, 01:33 PM #11

Archived author: Ryan Turner • Posted: 2025-03-08T13:33:50.613000+00:00
Original source

I see what's wrong 1 mmt

rektbyfaith
Administrator
0
03-08-2025, 01:35 PM
#12
Archived author: Ryan Turner • Posted: 2025-03-08T13:35:04.594000+00:00
Original source

```sql
SELECT `entry`, `item`, `minCount`, `maxCount`, `comment` FROM creature_loot_template WHERE `reference` IN (34060, 30486, 34062, 34059)
```
rektbyfaith
03-08-2025, 01:35 PM #12

Archived author: Ryan Turner • Posted: 2025-03-08T13:35:04.594000+00:00
Original source

```sql
SELECT `entry`, `item`, `minCount`, `maxCount`, `comment` FROM creature_loot_template WHERE `reference` IN (34060, 30486, 34062, 34059)
```

rektbyfaith
Administrator
0
03-08-2025, 01:35 PM
#13
Archived author: Dizlen • Posted: 2025-03-08T13:35:50.492000+00:00
Original source


[Image: image.png?ex=690bfb76&is=690aa9f6&hm=358...695c682fa&]
rektbyfaith
03-08-2025, 01:35 PM #13

Archived author: Dizlen • Posted: 2025-03-08T13:35:50.492000+00:00
Original source


[Image: image.png?ex=690bfb76&is=690aa9f6&hm=358...695c682fa&]

rektbyfaith
Administrator
0
03-08-2025, 01:35 PM
#14
Archived author: Dizlen • Posted: 2025-03-08T13:35:52.064000+00:00
Original source

aha !
rektbyfaith
03-08-2025, 01:35 PM #14

Archived author: Dizlen • Posted: 2025-03-08T13:35:52.064000+00:00
Original source

aha !

rektbyfaith
Administrator
0
03-08-2025, 01:36 PM
#15
Archived author: Dizlen • Posted: 2025-03-08T13:36:00.134000+00:00
Original source

you're a genius
rektbyfaith
03-08-2025, 01:36 PM #15

Archived author: Dizlen • Posted: 2025-03-08T13:36:00.134000+00:00
Original source

you're a genius

rektbyfaith
Administrator
0
03-08-2025, 01:36 PM
#16
Archived author: Ryan Turner • Posted: 2025-03-08T13:36:55.224000+00:00
Original source

The mi ncount has to match the max count
rektbyfaith
03-08-2025, 01:36 PM #16

Archived author: Ryan Turner • Posted: 2025-03-08T13:36:55.224000+00:00
Original source

The mi ncount has to match the max count

rektbyfaith
Administrator
0
03-08-2025, 01:37 PM
#17
Archived author: Ryan Turner • Posted: 2025-03-08T13:37:30.761000+00:00
Original source

You can just do via the GUI
rektbyfaith
03-08-2025, 01:37 PM #17

Archived author: Ryan Turner • Posted: 2025-03-08T13:37:30.761000+00:00
Original source

You can just do via the GUI

rektbyfaith
Administrator
0
03-08-2025, 01:40 PM
#18
Archived author: Ryan Turner • Posted: 2025-03-08T13:40:05.403000+00:00
Original source

(this in a clean version of AzerothCore doesn't happen, adjusted in https://github.com/azerothcore/azerothco...8823043964 alongside with the error message. So that might be some outdata from the modul
rektbyfaith
03-08-2025, 01:40 PM #18

Archived author: Ryan Turner • Posted: 2025-03-08T13:40:05.403000+00:00
Original source

(this in a clean version of AzerothCore doesn't happen, adjusted in https://github.com/azerothcore/azerothco...8823043964 alongside with the error message. So that might be some outdata from the modul

rektbyfaith
Administrator
0
03-08-2025, 01:40 PM
#19
Archived author: Dizlen • Posted: 2025-03-08T13:40:06.670000+00:00
Original source

I see this in the console when I try to change them on the gui
`/* Selected columns don't contain a sufficient set of key columns to allow editing. Please select primary or unique key columns, or just all columns. */`
rektbyfaith
03-08-2025, 01:40 PM #19

Archived author: Dizlen • Posted: 2025-03-08T13:40:06.670000+00:00
Original source

I see this in the console when I try to change them on the gui
`/* Selected columns don't contain a sufficient set of key columns to allow editing. Please select primary or unique key columns, or just all columns. */`

rektbyfaith
Administrator
0
03-08-2025, 01:44 PM
#20
Archived author: Ryan Turner • Posted: 2025-03-08T13:44:37.854000+00:00
Original source

Oh i see i thought it you could change it.

So i will give you give the hunting for the update. in the same commit there's an SQL file [here](https://github.com/azerothcore/azerothco...586300.sql)

If you just do CTRL+F for e.g

```sql
`Entry`= 11583 AND `Item` = 34009 AND `Reference` = 34009
```

should get you the fix to that row. repeat the same for the rest.

Change Entry, Item and Reference to match what it shows on your database (above).

If you want to see reference which should match the item anyways in the database you can add `reference` between `item` and `mincount` (in the previous query before your screenshot)
rektbyfaith
03-08-2025, 01:44 PM #20

Archived author: Ryan Turner • Posted: 2025-03-08T13:44:37.854000+00:00
Original source

Oh i see i thought it you could change it.

So i will give you give the hunting for the update. in the same commit there's an SQL file [here](https://github.com/azerothcore/azerothco...586300.sql)

If you just do CTRL+F for e.g

```sql
`Entry`= 11583 AND `Item` = 34009 AND `Reference` = 34009
```

should get you the fix to that row. repeat the same for the rest.

Change Entry, Item and Reference to match what it shows on your database (above).

If you want to see reference which should match the item anyways in the database you can add `reference` between `item` and `mincount` (in the previous query before your screenshot)

Pages (3): Previous 1 2 3 Next
Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)