How can I make different symbols in the (character.say event)
Normally this event would be used like this:
cego.say("Sample text");
The issue is, I want to make quotations to appear in what the player says. So instead of SAMPLE TEXT, The character would say "SAMPLE TEXT". Putting more quotations in the code breaks it. How should I proceed?
Use \" combination:
cego.say("\"Sample text\"");