how to sum values?

Hi guys,

if game.value1 = 1 and game.value2 = 2, how to sum it to have a result 3 inside the game?

the values are obtained with the get input function...

Thanks,

Answering your question literally:

game.result = ToInt(game.value1) + ToInt(game.value2)


But I wonder if you're asking something else? :)

Thanks Jay, it works great!