i put this into a game and it didnt keep popping up: what code did you use and does it image what ive got here?
(method (handleEvent pEvent)
(var dyingScript, button)
(super:handleEvent(pEvent))
(if(Said('eat/pig'))
= button Print(
"Do you want to click Yes or No?"
#title "Click What?"
#font LARGE_FONT
#button " Yes " 1
#button " No " 0
)
(if(== button 1)
Print("You clicked YES")
)(else
Print("You clicked NO")
)
)
)