Forums WoW Modding Tutorials Miscellaneous [Archive] 4.3.4 SQL commands to make your ingame experience betterr

[Archive] 4.3.4 SQL commands to make your ingame experience betterr

[Archive] 4.3.4 SQL commands to make your ingame experience betterr

Pages (2): 1 2 Next
rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#1
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

I run these every time I start a new DB so I hope they're helpful.

This will make everything free (money-wise) from all vendors.

Code:

UPDATE `item_template` SET `BuyPrice` = 0;

This will make training costs free.

Code:

UPDATE `npc_trainer` SET `spellcost` = 0;

This lovely command will turn all bags into 36 slot containers. Tooltips are not updated but who cares?

Code:

UPDATE `item_template` SET `ContainerSlots` = 36 WHERE `ContainerSlots` > 0;

This is a shining beacon for tradeskillers. This sets all stackable items to 1000. Used with the above code, and you'll be hard pressed to use up all of your bag space. Set stackable > 0 to make unstackable items stackable.

Code:

UPDATE `item_template` SET `stackable` = 1000 WHERE `stackable` > 1;

This will increase the drop rate from mobs. Just changing the settings in worldserver.conf isn't much of an improvement. Change that -20- to 75 or 100 for loot explosion.

Code:

UPDATE creature_loot_template SET ChanceorQuestChance = ChanceorQuestChance * 20;

These two queries will allow all players to wear gear 20 levels above their own.

Code:

UPDATE `item_template` SET `RequiredLevel` = 1 WHERE `RequiredLevel` BETWEEN 1 AND 20;
UPDATE `item_template` SET `RequiredLevel` = `RequiredLevel` - 20 WHERE `RequiredLevel` > 20;

This will make it easier to level your guild considering the smaller numbers of guild members.

Code:

UPDATE `guild_xp_for_level` SET `xp_for_next_level` = (`xp_for_next_level` / 100);
rektbyfaith
11-04-2025, 05:04 PM #1

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

I run these every time I start a new DB so I hope they're helpful.

This will make everything free (money-wise) from all vendors.

Code:

UPDATE `item_template` SET `BuyPrice` = 0;

This will make training costs free.

Code:

UPDATE `npc_trainer` SET `spellcost` = 0;

This lovely command will turn all bags into 36 slot containers. Tooltips are not updated but who cares?

Code:

UPDATE `item_template` SET `ContainerSlots` = 36 WHERE `ContainerSlots` > 0;

This is a shining beacon for tradeskillers. This sets all stackable items to 1000. Used with the above code, and you'll be hard pressed to use up all of your bag space. Set stackable > 0 to make unstackable items stackable.

Code:

UPDATE `item_template` SET `stackable` = 1000 WHERE `stackable` > 1;

This will increase the drop rate from mobs. Just changing the settings in worldserver.conf isn't much of an improvement. Change that -20- to 75 or 100 for loot explosion.

Code:

UPDATE creature_loot_template SET ChanceorQuestChance = ChanceorQuestChance * 20;

These two queries will allow all players to wear gear 20 levels above their own.

Code:

UPDATE `item_template` SET `RequiredLevel` = 1 WHERE `RequiredLevel` BETWEEN 1 AND 20;
UPDATE `item_template` SET `RequiredLevel` = `RequiredLevel` - 20 WHERE `RequiredLevel` > 20;

This will make it easier to level your guild considering the smaller numbers of guild members.

Code:

UPDATE `guild_xp_for_level` SET `xp_for_next_level` = (`xp_for_next_level` / 100);

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#2
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Thanks for the small tutorial! I'm sure it'll come in handy for some [Image: 1f642.png]
rektbyfaith
11-04-2025, 05:04 PM #2

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Thanks for the small tutorial! I'm sure it'll come in handy for some [Image: 1f642.png]

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#3
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

The "stackable" command is absolutely the top, didn't ever think of that by myself [Image: 1f631.png]k:
rektbyfaith
11-04-2025, 05:04 PM #3

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

The "stackable" command is absolutely the top, didn't ever think of that by myself [Image: 1f631.png]k:

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#4
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

These all look great, can't wait to give them a try! Thanks
rektbyfaith
11-04-2025, 05:04 PM #4

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

These all look great, can't wait to give them a try! Thanks

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#5
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Just cane across this thread, and some of these look absolutely phenomenal! Thanks so much for posting!
rektbyfaith
11-04-2025, 05:04 PM #5

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Just cane across this thread, and some of these look absolutely phenomenal! Thanks so much for posting!

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#6
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

This will be helpful, thank you for posting
rektbyfaith
11-04-2025, 05:04 PM #6

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

This will be helpful, thank you for posting

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#7
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

This was useful, thank you very mutch
rektbyfaith
11-04-2025, 05:04 PM #7

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

This was useful, thank you very mutch

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#8
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Very helpful! Thanks for sharing
rektbyfaith
11-04-2025, 05:04 PM #8

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Very helpful! Thanks for sharing

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#9
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Stack to 1000 units ? OMG YES

I still have nightmares with bags full of mats xD
rektbyfaith
11-04-2025, 05:04 PM #9

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Stack to 1000 units ? OMG YES

I still have nightmares with bags full of mats xD

rektbyfaith
Administrator
0
11-04-2025, 05:04 PM
#10
Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Could be usefull at some point ??[Image: 263a.png]
rektbyfaith
11-04-2025, 05:04 PM #10

Archived author: HeyPretty • Posted: 2025-11-04T18:04:26.328475
Original source

Could be usefull at some point ??[Image: 263a.png]

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