Unknown function
Posted: August 11th, 2013, 4:51 pm
At the start of my map i want a door to open a message to display on the screen
here is my code
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
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);
}
unknown function
iPrintInBold ("^3ready")
Is this now the right say to display a message is there something else wrong with my code