FAISAL32: Sure I can add it but I gotta know why you want it can you explain

Sure! so, when i run delves, even with the potions. its annoying to do full clears. there's a "glow enemies" script in Trove 4.6 CT that makes enemies seemingly turn to bright colors. which you select white red blue or green. when its on, it makes it a lot easier to see enemies but quickly breaks as its very out dated. it seems to change the lux or ambient color. everything becomes bright and when you get close to enemies it stops working. either way, here is the script code that's outdated. (works in CE)

This is to make enemies have a neon white hue to them, the other colors are separate but I'm sure its just by a small value
Code:
{ Game   : Trove.exe
  Version: 
  Date   : 2021-12-09
  Author : white

  This script does blah blah blah
}

[ENABLE]

aobscanmodule(INJECT,trove.exe,0F 29 07 8B C7 5F 5E 8B E5 5D 8B) // should be unique
alloc(newmem,$1000)

label(code)
label(return)

newmem:

code:
  db 0F 29 07

INJECT:
  db 0F 29 0F
return:
registersymbol(INJECT)

[DISABLE]

INJECT:
  db 0F 29 07

unregistersymbol(INJECT)
dealloc(newmem)

{
// ORIGINAL CODE - INJECTION POINT: trove.exe+8B3519

trove.exe+8B34E9: 8B C1                       - mov eax,ecx
trove.exe+8B34EB: C1 E8 04                    - shr eax,04
trove.exe+8B34EE: 83 E0 0F                    - and eax,0F
trove.exe+8B34F1: F3 0F 11 45 E4              - movss [ebp-1C],xmm0
trove.exe+8B34F6: 83 E1 0F                    - and ecx,0F
trove.exe+8B34F9: F3 0F 10 04 85 E0 95 EB 00  - movss xmm0,[eax*4+trove.exe+E995E0]
trove.exe+8B3502: F3 0F 11 45 E8              - movss [ebp-18],xmm0
trove.exe+8B3507: F3 0F 10 04 8D E0 95 EB 00  - movss xmm0,[ecx*4+trove.exe+E995E0]
trove.exe+8B3510: F3 0F 11 45 EC              - movss [ebp-14],xmm0
trove.exe+8B3515: 0F 28 45 E0                 - movaps xmm0,[ebp-20]
// ---------- INJECTING HERE ----------
trove.exe+8B3519: 0F 29 07                    - movaps [edi],xmm0
// ---------- DONE INJECTING  ----------
trove.exe+8B351C: 8B C7                       - mov eax,edi
trove.exe+8B351E: 5F                          - pop edi
trove.exe+8B351F: 5E                          - pop esi
trove.exe+8B3520: 8B E5                       - mov esp,ebp
trove.exe+8B3522: 5D                          - pop ebp
trove.exe+8B3523: 8B E3                       - mov esp,ebx
trove.exe+8B3525: 5B                          - pop ebx
trove.exe+8B3526: C3                          - ret 
trove.exe+8B3527: CC                          - int 3 
trove.exe+8B3528: CC                          - int 3 
}
[/QUOTE]

@FAISAL32 Sorry to keep mentioning this, but did you get a chance to see if you'd be able to/want to add this?