-- {'onDisplayGameText', {style = 'int32'}, {time = 'int32'}, {text = 'string32'}}
function sampev.onDisplayGameText(style, time, text)
local fmt = string.format(
'DisplayGameText: style[%d] time[%d] text[%s]',
style, time, text
)
print(fmt)
if text:find('Successful') then
return false
end
end