hi everyone,
im changing a piece of the "converse" function of pixies conversation lib, to print the player choice in dialogues.
This is my current working setup:
// do the topics conversation
msg (o.alias) <-THIS
msg ("")
do (o, "topictalk")
terminate = o.terminal
i want to print the player answer in a different color. Been fuddling around with
msg ({colour:red:o.alias})
msg ({colour:red:"o.alias"})
msg ("{colour:red:"o.alias"}")
but nothing works out...
not even sure i can use the text processor commands here.
help? :)
well it workes but it acutally prints "o.alias" in red every time, not the value of o.alias...
Nice that works like a charm. Really works wonders on the readability of my game. Thanks a lot to both of you!