[Solved] On Screen Messages
Posted: Tue Oct 21, 2014 5:22 am
Is there a way to make on screen messages appear? For example, I walk on a floor trigger and a message shows up on the screen saying something.
Official Legend of Grimrock Forums
https://mail.almosthumangames.com/forum/
https://mail.almosthumangames.com/forum/viewtopic.php?t=7547
Code: Select all
function customMessage()
hudPrint("This is my custom message. Hello world!")
end
Correct and use \n to make enters whatever there called like thisScroLL wrote:This is off the top of my head but should be correct.
Make a floor trigger that connects to a script entity and runs the customMessage function. the script should have the following code
Code: Select all
function customMessage() hudPrint("This is my custom message. Hello world!") end
Are you refering to a Hard Return.SnowyOwl47 wrote:Correct and use \n to make enters whatever there called like thisScroLL wrote:This is off the top of my head but should be correct.
Make a floor trigger that connects to a script entity and runs the customMessage function. the script should have the following code
Code: Select all
function customMessage() hudPrint("This is my custom message. Hello world!") end
\n =
That gap