Hey,
Is it possible to make a script or effect with light as an ability Spell like the NPCGhosteffect and those? I want that the creature is brightening the area around it.
Also has some one an Scipt how to make a creature only spawns at night?
Hope someone can help.
Thanks.
I'm not good at scripting, but I may be able to help.
FIrst off, if a light ability doesn't work, it *might* work to make a light that can't be carried and has no model, then add that to the creature.
Scriptname GlowingCreatureScriptShort DoOnceBegin GameMode if DoOnce == 0 AddItem "Light" set DoOnce to 1 endifEnd
Just pin that scrip to the creature and replace "light" with whatever light you want it to glow with.
As for your night-only spawns, try:
scriptname nightspawnscriptbegin gamemodeif gamehour >= 18 || gamehour < 7 disable else enableendifend
Since you can't put both on the same creature, how about:
Scriptname GlowingCreatureScriptShort DoOnceBegin GameMode if DoOnce == 0 AddItem "Light" set DoOnce to 1 endifif gamehour >= 18 || gamehour < 7 enable else disableendifEnd
Let me know if these don't work, and I'll see if I can fix them