Page 1 of 1

Unknown function

Posted: August 11th, 2013, 4:51 pm
by Sheep_Wizard
At the start of my map i want a door to open a message to display on the screen
here is my code

Code: Select all

main()
{
     maps\mp\_load::main();
	 
	 
	 thread startdoor();
	 
}


startdoor()
{
	 
	 door = getEnt("door", "targetname");
	 wait(10);
	 iPrintInBold ("^3ready");
	 door moveY(-150,8);
}
but i get an error saying

unknown function
iPrintInBold ("^3ready")

Is this now the right say to display a message is there something else wrong with my code

Re: Unknown function

Posted: August 11th, 2013, 4:59 pm
by Drofder2004
iPrintLnBold
(Ln = Line)

Re: Unknown function

Posted: August 11th, 2013, 5:02 pm
by Sheep_Wizard
Drofder2004 wrote:iPrintLnBold
(Ln = Line)
I feel like an idiot xD Thanks