Initial commit version 0.1.0

This commit is contained in:
2025-06-04 22:11:31 -04:00
commit f5fd13eb8a
45 changed files with 2575 additions and 0 deletions

17
Scripts/RYBLampScript.psc Normal file
View File

@@ -0,0 +1,17 @@
ScriptName RYBLampScript
begin OnActivate
if (RYB.LampOn == 0)
set RYB.LampOn to 1
else
set RYB.LampOn to 0
endif
end
begin OnMagicEffectHit FIDG
set RYB.LampOn to 1
end
begin OnMagicEffectHit FRDG
set RYB.LampOn to 0
end