Page 1 of 1

Need help with monsters!!!

Posted: Thu Oct 06, 2005 11:28 am
by Silverpal
Hi, I'm new to realityfactory and I'm trying to create a monster that does the basic things (ie. attack the player)

I managed to make the monster see the player and chase the player but the top left of the screen has the monster function name being executed in blue (eg. meeleestart, melee etc).

How do I prevent the words from appearing?

Posted: Thu Oct 06, 2005 12:03 pm
by QuestOfDreams
just change
Console(true);
to
Console(false);
Console(bool Flag );

If Flag is true the console for this Pawn is activated. Information about this Pawn's script is displayed on the screen, including any error messages generated at runtime. If Flag is false the console is turned off.

Posted: Fri Oct 07, 2005 9:39 am
by Silverpal
QuestOfDreams wrote:just change
Console(true);
to
Console(false);
Console(bool Flag );

If Flag is true the console for this Pawn is activated. Information about this Pawn's script is displayed on the screen, including any error messages generated at runtime. If Flag is false the console is turned off.
It worked, thanks!!!