Oxygens21
Member
- Joined
- Aug 3, 2017
- Messages
- 48
- Solutions
- 1
- Reaction score
- 6
I need help to fix this script of 0.4 for Tfs 1.2, if anyone can help me i would apreaciate, regards ++.
Code:
local pozycje = {
{pos = {x=1017, y=987, z=7}, tekst = "Expowiska"},
{pos = {x=1017, y=986, z=7}, tekst = "Questy"},
{pos = {x=1017, y=985, z=7}, tekst = "Trainery"},
{pos = {x=1023, y=987, z=7}, tekst = "Sk"},
{pos = {x=1023, y=986, z=7}, tekst = "Temple"},
{pos = {x=1023, y=985, z=7}, tekst = "Di"},
{pos = {x=1013, y=1003, z=7}, tekst = "Depo"},
{pos = {x=997, y=1003, z=7}, tekst = "Depo"},
{pos = {x=1013, y=1012, z=7}, tekst = "Depo"},
{pos = {x=997, y=1012, z=7}, tekst = "Depo"},
{pos = {x=983, y=991, z=7}, tekst = "Expowiska"},
{pos = {x=981, y=991, z=7}, tekst = "Depo"},
{pos = {x=979, y=991, z=7}, tekst = "Questy"},
{pos = {x=977, y=991, z=7}, tekst = "Tr"},
{pos = {x=976, y=992, z=7}, tekst = "i"},
{pos = {x=976, y=994, z=7}, tekst = "F!"},
{pos = {x=1024, y=993, z=6}, tekst = "Re"},
{pos = {x=1016, y=993, z=6}, tekst = "Zk"},
{pos = {x=1018, y=987, z=5}, tekst = "In"},
{pos = {x=1022, y=987, z=5}, tekst = "In"},
}
function onThink(interval, lastExecution)
local kolor = TEXTCOLOR_YELLOW -- Jakim kolorem jest dany napis
for i=1, #pozycje do
doSendMagicEffect(pozycje[i].pos,31)
doSendAnimatedText(pozycje[i].pos,pozycje[i].tekst,kolor)
end
return true
end