Need help with monsters!!!

Topics regarding Scripting with Reality Factory
Post Reply
Silverpal

Need help with monsters!!!

Post 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?
User avatar
QuestOfDreams
Site Admin
Posts: 1520
Joined: Sun Jul 03, 2005 11:12 pm
Location: Austria
Contact:

Post 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.
Silverpal

Post 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!!!
Post Reply