• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Need an script please

Mikelon

New Member
Joined
Feb 25, 2008
Messages
42
Reaction score
0
Please i was locking everywhere for this script
i need a script of the tutorial arrow , i want the blue arrow that is for tutorials
i want to put over a chest, like pointing the chest

i use this one
local config =
{
[1]=
{
pos={x=952, y=1131, z=11},
effect=55
},
[2]=
{
pos={x=953, y=1132, z=11},
effect=56
}
-- continue do the same with other positions.
}
-- /Config --
function onThink(interval, lastExecution)
for i,v in ipairs(config) do
doSendMagicEffect(config.pos, config.effect)
end
return TRUE
end


But DOESNT WORK =SSSS pleas ehelp
 
well no one answer me, so i look for other script and i read some script guides , so i use this script for the Tutorial Arrow
thx to
function onThink(interval, lastExecution)
local pos = {x = 952, y = 1131, z = 11}
local text = ""
doSendAnimatedText(pos, text, TEXTCOLOR_BLUE)
doSendMagicEffect(pos, 55)
return TRUE
end
 
Back
Top