• 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!

Flashing teleports to tibia 7.6

Ennokas

Member
Joined
Feb 13, 2009
Messages
435
Reaction score
8
Location
unknown
I need to know how to make flashing teleport to tibia 7.6 ?

- - - Updated - - -

I need something like that: http://otland.net/f81/teleport-effects-39284/ for tibia 7.6 server.

- - - Updated - - -

BUMP!

- - - Updated - - -

Bring
Up
My
Post
 
start = nil
focus = 0
talk_start = 0
target = 0
following = false
attacking = false

dofile("./config.lua")

function onThingMove(creature, thing, oldpos, oldstackpos)
end

function onCreatureAppear(creature)
end

function onCreatureDisappear(cid, pos)
end

function onCreatureTurn(creature)
end

function msgcontains(txt, str)
end

function onCreatureSay(cid, type, msg)
end

function onCreatureChangeOutfit(creature)
end

function onThink()
if start == nil then
start = os.time()
end
if(effects_emblamed == "yes")then
if os.difftime (os.time(), start) >= (co_ile) then
for i,v in pairs(efekty) do
doNpcSendAnimatedText(v.text, (random_colour == "yes" and math.random(1, 254) or v.color), v.pos.x, v.pos.y, v.pos.z)
doNpcSendMagicEffect((random_effect == "yes" and math.random(0, 24) or v.effect), v.pos.x, v.pos.y, v.pos.z)
end
start = os.time()
end
end
end

And i get this error ?
NpcScript: Onthink lua error : Data/npc/script/efekciarz.lua:38: attempt to call I global 'donpcsendanimatedtext' <a nil value>
 
I did a little research and I believe this is the server he is referring to:
Code:
http://divinity-ots.googlecode.com/svn/tags/YurOTS/7.6/YurOTS%200.9.4F/ots/
 
Back
Top