EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=598)
-   -   Changing Death effect (https://www.eqemulator.org/forums/showthread.php?t=33362)

Suru 04-19-2011 04:18 PM

Changing Death effect
 
I've seen servers that have set you to respawn without dropping your gear on your corpse or losing xp. How does one go about changing this? Is it a database setting or do you need to modify the code somewhere?

blackdragonsdg 04-19-2011 04:59 PM

Those are all database settings in the rule_values table. Using the following will allow you to disable item and exp loss.
Code:

update rule_values set rule_value = 86 where rule_name = 'Character:DeathExpLossLevel';
update rule_values set rule_value = 3 where rule_name = 'Character:DeathExpLossMultiplier';
update rule_values set rule_value = 86 where rule_name = 'Character:DeathItemLossLevel';
update rule_values set rule_value = 'false' where rule_name = 'Character:UseDeathExpLossMult';



All times are GMT -4. The time now is 06:58 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.