[DiscordArchive] Hey all does anybody have a useful script I could use to increase all nodes in the game to a higher
[DiscordArchive] Hey all does anybody have a useful script I could use to increase all nodes in the game to a higher
Archived author: Scortas • Posted: 2023-03-10T20:23:28.292000+00:00
Original source
Hey all does anybody have a useful script I could use to increase all nodes in the game to a higher drop rate? Such as that iron veins instead of giving minerals at the rate of 1 they give at the rate of 3?
Archived author: Gultask • Posted: 2023-03-10T20:31:46.515000+00:00
Original source
Across the board?
Keeping references untouched something like:
```
UPDATE `gameobject_loot_template` SET `mincount`=`mincount`*3, `maxcount`=`maxcount`*3 WHERE `reference`=0 AND `entry` IN (GAMEOBJECT_ID_HERE);
```
Try this one with a random node
Archived author: Scortas • Posted: 2023-03-10T20:33:40.079000+00:00
Original source
alright thanks
Archived author: Gultask • Posted: 2023-03-10T20:34:41.107000+00:00
Original source
I'm going off memory so be careful