- 916
- 2015
- 24
- Location
- Barryton Michigan USA
Lard lost his lunch fix 7.02
If you are using version 7.02 or lower of the server repack. Then you can use this single sql file to correct the multitude of over spawned summoned creatures, That are called via event_scripts.
Most scripts were summoning four times the required amount of creatures that the quests called for.
So I cleaned up the event_scripts database table.
This is a total replacement for your event_scripts table, And SHOULD NOT BE USED if you have added any event_scripts of your own since downloading the repack version 7.02 or lower.
If you have added event scripts to your server, Then you will need to export those as sql queries, And save them in a file, So you can INSERT them after installing this database fix.
Ok, That's the end of the warnings.
The file to run on your emucoach-world database is
View attachment event_scriptsnew.sql
If you used the single file installation, You can ignore every post that i made after this one.
Lard lost his lunch
Remove overspawned attackers
add the correct amount of attackers
If you are using version 7.02 or lower of the server repack. Then you can use this single sql file to correct the multitude of over spawned summoned creatures, That are called via event_scripts.
Most scripts were summoning four times the required amount of creatures that the quests called for.
So I cleaned up the event_scripts database table.
This is a total replacement for your event_scripts table, And SHOULD NOT BE USED if you have added any event_scripts of your own since downloading the repack version 7.02 or lower.
If you have added event scripts to your server, Then you will need to export those as sql queries, And save them in a file, So you can INSERT them after installing this database fix.
Ok, That's the end of the warnings.
The file to run on your emucoach-world database is
View attachment event_scriptsnew.sql
If you used the single file installation, You can ignore every post that i made after this one.
Lard lost his lunch
Remove overspawned attackers
Code:
DELETE FROM `event_scripts` WHERE `id`=8605 AND `datalong`=14748;
add the correct amount of attackers
Code:
DELETE FROM `event_scripts` WHERE `id`=8605 AND `delay`=2 AND `command`=10 AND `datalong`=14748 AND `datalong2`=600000 AND `dataint`=0 AND `x`=421.52 AND `y`=-4811.76 AND `z`=12.03 AND `o`=4.35;
INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES (8605, 2, 10, 14748, 600000, 0, 421.52, -4811.76, 12.03, 4.35);
DELETE FROM `event_scripts` WHERE `id`=8605 AND `delay`=2 AND `command`=10 AND `datalong`=14748 AND `datalong2`=600000 AND `dataint`=0 AND `x`=414.5 AND `y`=-4812.67 AND `z`=12.54 AND `o`=4.48;
INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES (8605, 2, 10, 14748, 600000, 0, 414.5, -4812.67, 12.54, 4.48);
DELETE FROM `event_scripts` WHERE `id`=8605 AND `delay`=2 AND `command`=10 AND `datalong`=14748 AND `datalong2`=600000 AND `dataint`=0 AND `x`=417.09 AND `y`=-4817.01 AND `z`=12.06 AND `o`=4.58;
INSERT INTO `event_scripts` (`id`, `delay`, `command`, `datalong`, `datalong2`, `dataint`, `x`, `y`, `z`, `o`) VALUES (8605, 2, 10, 14748, 600000, 0, 417.09, -4817.01, 12.06, 4.58);
Last edited: