|
if (playertouchsme) {
say2 text here;
}
|
That's used if you're using GraalEditor offline. If you're looking to do it online:
PHP Code:
say2("Hello my name is Emera#bI like to eat pie.");
I've always found that to be messy though because of the random #b in the middle of the text, so I'll usually do something like:
PHP Code:
say2(
"Hello my name is Emera" NL
"I like to eat pie."
);
but it's really just personal preference.