i have a script ( will show in post) that is supposed to make the troops have some idle talk, i want it to be so they say differnt things, anywas here is the script
_yada = random 3
?(_yada == 1) : goto "talk1"
?(_yada == 2) : goto "talk2"
?(_yada == 3) : goto "talk3"
#talk1
titlecut ["Soldier - Man its cold!","PLAIN DOWN",1]
?(talk == 0) : exit
~4
titlecut ["Soldier - Stop whineing!","PLAIN DOWN",1]
?(talk == 0) : exit
~4
exit
#talk2
titlecut ["Soldier - I wonder when this will all be over....","PLAIN DOWN",1]
?(talk == 0) : exit
~4
titlecut ["Soldier - When the russian dogs are gone!","PLAIN DOWN",1]
?(talk == 0) : exit
~4
exit
#talk3
titlecut ["Soldier - I am hungrey","PLAIN DOWN",1]
?(talk == 0) : goto "fix"
~4
titlecut ["Soldier - Dont you ever think about something else then food?","PLAIN DOWN",1]
?(talk == 0) : goto "fix"
~4
exit
#fix
exit
the talk varible is used so when u the player walks away the talking stops
anywas, i keep getting the top message, i have tryed doing this befor but, i still cant get it
thanks