Trigger_Start:Name:
Trigger: delay
Trigger_Delay:Name: delay
Trigger: message, delay
Delay: 0
Func_Message:Name: message
Trigger:
Msg: Shit in my pants!
Display X sec: 5
Position: Center
How do i can stop this message with trigger!
Maps/Editor
Stop delay
Stop delay
1

Trigger_Start:
Trigger_Delay:
Func_Message:
doublejack: Tried… it will not work.
Trigger_Start:
Func_Message
Suprise: Nope. I want message what is repeating instantly, but when i use button then it's stops it...
3RROR: Cuz i want so...
Black Wolf: But you didn't specify it. In order to stop you need to use another trigger, here's the possible ones: Trigger_Move , Trigger_Hit , Trigger_Use or another Trigger_Delay
3RROR: So what trigger i have to stop to stop whole msg.. usee = {1,1} -- [x] and [y]
message = "Shit in my pants"
addhook("second","_second")
addhook("use","_use")
uuse=0
function _second()
	if uuse==1 then
		msg(""..message.."")
	end	
end
function _use(id)
local x,y=player(id,"tilex"),player(id,"tiley")
	if x==usee[1] and y==usee[2] then
		if uuse==1 then
			uuse==0
		elseif uuse==0 then
			uuse==1
		end
	end
end
1
