Thread: Kuwait wars
View Single Post
  #30  
Old 07-27-2017, 11:15 PM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Use parentheses text("Text Here")

if previous(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


This will work

if previous() and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif


Or use chain for 3 seconds after triggered

if chain(3) and never() then
text("The main road is littered with hundereds of armed insurgents.")
text("so lock and load!")
endif
Reply With Quote