1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
addhook("menu","explosion") function explosion(id,title,button) sx = player(id,"x") sy = player(id,"y") st = player(id,"team") 	if title=="Explosion Menu" then 	 		if button==1 then 				parse("explosion "..sx.." "..sy.." 96 100 "..id) 				elseif button==2 then 				parse("explosion "..sx.." "..sy.." 192 160 "..id) 				elseif button==3 then 				parse("explosion "..sx.." "..sy.." 192 280 "..id) 				elseif button==4 then 				parse("explosion "..sx.." "..sy.." 512 350 "..id) 				elseif button==5 then 				parse("explosion "..sx.." "..sy.." 512 500 "..id) 				elseif button==6 then 				parse("msg "..player(id,"name").." is nuking in 3 seconds@C") 				timer(3000,"parse",'explosion "..sx.." "..sy.." 2048 1000 "..id.." ') 			end 	end end
All explosions work except for timer one. It spawn explosion on Left Top Corner of the map. What might be wrong here ?