• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] Quickest/easiest way to disable minigob/manabonk on trinity core (3.3.5a)

Status
Not open for further replies.

Minion

Enthusiast
I'm trying to get rid of minigob, and or manabonk, so when people are sitting in dalaran that stupid little mage doesnt sheep people or at least stop the item from being sent to players after it happens.

any suggestions?
 

Unknown96

Exalted Member
You could change the ID if the item then after the effect occurred it wouldn't know what item to give the player. However that might end up with some issues, same goes with the spell. Try changing the spell Id that might solve your issue.
 

Minion

Enthusiast
thanks for the tip. that would work, but would cause errors on startup and cast. i try to avoid that if possible, but this may be the only option
 

Rochet2

Moderator / Eluna Dev
Easiest way that shouldnt cause errors (not tested):
DELETE FROM creature WHERE id = 32838;

do make a backup.
This SQL should only delete one row, which is here if you want it back:
Code:
INSERT INTO `creature` (`guid`, `id`, `map`, `zoneId`, `areaId`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`, `VerifiedBuild`) VALUES (44457, 32838, 571, 0, 0, 1, 1, 0, 0, 5877.88, 662.895, 644.53, 1.66366, 300, 0, 0, 1, 0, 0, 0, 0, 0, 0);
 
Last edited:

Minion

Enthusiast
thanks rochet2. i have stored both those. sometimes i forget how simple things can be...

on a side note what i did was change the chance of receiving the item in the mail to almost noting. that way its not a pain in the ass, and that way everything still works more or less as its supposed to.
 
Status
Not open for further replies.
Top