Advertisement
MarrKoo

$Excrem.lua

Nov 27th, 2022
1,125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. if not (ModOptions and ModOptions.getInstance) then
  2.     return print('ERROR DERP: ModOptions not found!')
  3. end
  4.  
  5. if Excrementum then
  6.     return print('ERROR DERP: Too late!')
  7. end
  8.  
  9. local old_getInst = ModOptions.getInstance
  10. ModOptions.getInstance = function(...)
  11.     if Excrementum then
  12.         local OPTIONS = Excrementum.OPTIONS
  13.         OPTIONS.growl_sound = 4
  14.         OPTIONS.colon_moodle = 3
  15.         OPTIONS.urine_moodle = 2
  16.         ModOptions.getInstance = old_getInst
  17.     end
  18.     return old_getInst(...)
  19. end
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement