hey, how do you get a script to read a parameter value that is set in an event and is a sentence in quotations (not a quoted statement ;P, btw)?
like in the event it initializes a script and the initialize method has a parameter and in the event, it initializes that script with a quoted phrase, ex:
"blah blah blah"
ex:
Event:
[/COLOR]
Script:
like in the event it initializes a script and the initialize method has a parameter and in the event, it initializes that script with a quoted phrase, ex:
"blah blah blah"
ex:
Event:
Code:
@>[COLOR=silver]Script: Scene_Something.new("Can you do this?")[/COLOR][COLOR=black]
Script:
Code:
[COLOR=blue]class[/COLOR] Scene_Something
[COLOR=blue]def[/COLOR] initialize[COLOR=blue]([/COLOR]a_phrase[COLOR=blue])[/COLOR]
a_phrase [COLOR=blue]=[/COLOR] [COLOR=darkorchid]""[/COLOR]
[COLOR=green]#blah blah blah on down to end of script[/COLOR]