like parse("explosion "..x.." "..y.. 100 100")
And i would lile to do that example i type into chat !explosion 54 55
its makes explosion at 54 55 with 100 100 values
i would like to use cordinates not tiles
function boom(id,x,y) parse("explosion "..x*32+16 .." "..y*32+16 .." 100 100 "..id) end function string.split(str,pat) -- Splitting strings (sentences) into separate words local t = {} for word in string.gmatch(str,pat or "[^%s]+") do t[#t+1] = word end return t end addhook("say","callboom") function callboom(id,t) local cmd = t:split() if cmd[1] == "!boom" then boom(id,tonumber(cmd[2]),tonumber(cmd[3])) 		 return 1 end end