Here is an overkill code that constantly inflicts a whopping 100d10 of slashing damage to everything within 6m of you.
If you want to be an absolute menace to society
without committing crime use this version of the code:
Code: Select all
{$lua}
if syntaxcheck then return end
status= "AI_HELPER_RAGE"
[ENABLE]
ApplyStatusToWeapon(status)
[DISABLE]
RemoveStatusFromWeapon(status)
Explanation:
"AI_HELPER_RAGE" will "ApplyStatus(AI_HELPER_RAGE_DAMAGEAURA)". This code is written so the status applies to your equipped weapon. That way, you are not the source of damage--the weapon is. The aura applies "DealDamage(100d10,Slashing)" in a radius of 6m to anything "not dead" and "not ally". The effect is invisible but it'll constantly slash and destroy creatures and objects alike. Be sure to save before the rampage just in case. Also, remember to unclick the code when you're done. Because it is a status, it will remain ON until turned OFF, long rest, or ExecuteCall("RestoreParty").
You can apply it to your character instead (if okay with committing crime):
Code: Select all
{$lua}
if syntaxcheck then return end
status= "AI_HELPER_RAGE"
[ENABLE]
ApplyStatusToPlayer(status)
[DISABLE]
RemoveStatusFromPlayer(status)
----------------------------------------------------
If you want to maximize the damage dealt (1k damage per second) add this:
Code: Select all
{$lua}
if syntaxcheck then return end
boosts= "MinimumRollResult(Damage,20)"
[ENABLE]
AddBoostsToPlayer(boosts)
[DISABLE]
RemoveBoostsFromPlayer(boosts)
Use this one instead when the aura is applied to your weapon:
Code: Select all
{$lua}
if syntaxcheck then return end
boosts= "MinimumRollResult(Damage,20)"
[ENABLE]
AddBoostsToWeapon(boosts)
[DISABLE]
RemoveBoostsFromWeapon(boosts)