I have a turn script that I need to be conditional depending on what the user's command entry is.
I still want to parse the command, but I want additional code to run depending on what the user just did...
As an arbitrary example, print a message admonishing the player for looking around idly when their life is in mortal danger this very moment.
Or actually in the specific case, not counting Look At [enemy] as a full turn, but counting any kid of physical action as a turn. Since looking at something doesn't necessarily take a long time, I don't want to end a player's combat turn when using Look At once. (repeated stares of course I'll punish later once I know how to differentiate)
I'd like to avoid passing everything through Get Input, as I've found it doesn't always work correctly. (Sometimes the text entered doesn't get processed and needs to be entered a second time. I experienced this frequently with the Character Naming script I made)
so can anyone help?