local t = {
[{x=1095, y=1217, z=7}] = {text = 'text 1', color = TEXTCOLOR_GREEN, effect = 18},
[{x=1096, y=1217, z=7}] = {text = 'text 2', color = TEXTCOLOR_GREEN, effect = 19},
[{x=1097, y=1217, z=7}] = {text = 'text 3', color = TEXTCOLOR_GREEN, effect = 21},
[{x=1098, y=1217, z=7}] = {text = 'text 4', color = TEXTCOLOR_GREEN, effect = 22}
}
function onThink(interval, lastExecution, thinkInterval)
for pos, v in pairs(t) do
if v.text then
doSendAnimatedText(pos, v.text, v.color or math.random(255))
end
if v.effect then
doSendMagicEffect(pos, v.effect)
end
end
return true
end
thx but, where do I have to put it ? in which folder,
\/PHP:local t = { [{x=1095, y=1217, z=7}] = {text = 'text 1', color = TEXTCOLOR_GREEN, effect = 18}, [{x=1096, y=1217, z=7}] = {text = 'text 2', color = TEXTCOLOR_GREEN, effect = 19}, [{x=1097, y=1217, z=7}] = {text = 'text 3', color = TEXTCOLOR_GREEN, effect = 21}, [{x=1098, y=1217, z=7}] = {text = 'text 4', color = TEXTCOLOR_GREEN, effect = 22} } function onThink(interval, lastExecution, thinkInterval) for pos, v in pairs(t) do if v.text then doSendAnimatedText(pos, v.text, v.color or math.random(255)) end if v.effect then doSendMagicEffect(pos, v.effect) end end return true end
and what do I need to fill in the .xml file?