RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Invisible Monster Problem.

AdonisKzin

Sorceror
Hello,

I need to create an invisible creature. "OnThink " the "Hidden = true"; invisibility when I walked in progress. but is visible when one attacked again becomes invisible. I want to be invisible continuously.
 

pooka01

Sorceror
the staff members are continuously hidden, maybe you cn find the method that doies this? i think it is from.RevealingAction(), you can probably override this, not sure tho.
 

Vorspire

Knight
Set the BodyValue to 0, it gives them no visible body, so it doesn't matter if they are Hidden or not.
It's also a nice way to take screenshots without getting your staff character in the middle of each frame.
 

AdonisKzin

Sorceror
Problem solved. "Revealingactio" method override as I empty "onthe link" in the method "hide = true" did running smoothly. Thanks pooka01.


public override void OnThink()
{
Hidden = true;
base.OnThink();

}
public override void RevealingAction()
{
//base.RevealingAction();
}
 
Top