Guest Stressed Posted June 18, 2008 Report Share Posted June 18, 2008 Hello, Apparently there is a function Print in System... We have reason to believe that it will print something on the screen but unfortunatly nothing happen which doesn't help on debugging Does anyone know how to use it ? Maybe there is something to change on hte .cfg to make it showing messagesthank you Quote Link to comment Share on other sites More sharing options...
bennie900 Posted June 18, 2008 Report Share Posted June 18, 2008 If you press print scrn (the button on your keyboard) then it saves the image into the PC's memory so you have to past it into, paint or some photoediting place. Hope it helps Quote Link to comment Share on other sites More sharing options...
Guest Stressed Posted June 18, 2008 Report Share Posted June 18, 2008 Thank you bennie for your reply I actually was talking about the command System::Print("blablabla"); in a script Quote Link to comment Share on other sites More sharing options...
Hoppah Posted June 19, 2008 Report Share Posted June 19, 2008 I use this:System::Log("text"); to save something to the logfile.and/or Mission::PlayHint("text"); to play a hint ingame. Quote Link to comment Share on other sites More sharing options...
Guest Stressed Posted June 19, 2008 Report Share Posted June 19, 2008 Hello Hoppah, ok thank you but with that can out print a value too ? with log for exemple you can haveint a = 7;System::Log("value of a : %i",a); and it will print on the file value of a : 7 but I am sure there is a way to have that on the script with the System::Print I just wanted to know if someone can use it properly ^^Thank you anyways I will use that Quote Link to comment Share on other sites More sharing options...