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

Text Effect Teleport Effects

LuckyM

Ett är Ett
Joined
Jun 13, 2009
Messages
1,411
Solutions
1
Reaction score
167
Location
Sweden
Here is Teleport Effects

namnls.jpg




1. Go To the Folder Globalevents then script make new file effectile.lua and type this
local config = {
positions = {
["Teleports"] = { x = 993, y = 996, z = 7 },
["Deport"] = { x = 1006, y = 996, z = 7 },
["Trainer"] = { x = 993, y = 1000, z = 7 },

},

effects = {
CONDITION_PARAM_DELAYED



}
}

function onThink(cid, interval, lastExecution)
for text, pos in pairs(config.positions) do
doSendMagicEffect(pos, math.random(1, #config.effects))
doSendAnimatedText(pos, text, math.random(1, 255))
end

return TRUE
end

2.Go To ´globalevents.xml and type this
<globalevent name="EffectTile" interval="3" script="effectile.lua"/>


Here you got Teleport's effects
 
Very good o_O!

Rep++

But keep improving it, it seems a little dull :p
 
My server don´t contains any globalevents.xml,
how to fix this teleports on my server , Real map project v0.8?
 
This should be in the LUA & XML board...
Why you thought this should belong in the Art Tutorials section is beyond me..

@up
it wont
 
Back
Top