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

Action Teleport Effects

gracias por lo cripts pero una pregutna se pueden poner mas de
["Teleports"] = { x = 993, y = 996, z = 7 },
["Deport"] = { x = 1006, y = 996, z = 7 },
["Trainer"] = { x = 993, y = 1000, z = 7 },
 
Is there any way so the text stays still instead of having an interval?
 
If you check the thread, why you dont give REP++ <333
 
Aearar, you have posted like 2 times in almost every page in your thread about getting rep..


BTW, ty for the script ;)
 
Im trying this script out to see what its like...

When I try and turn the server on, it says error with the Globalevents.

<?xml version="1.0" encoding="UTF-8"?>
<globalevents>

<globalevent name="EffectTile" interval="5" script="effectile.lua"/> <glodbalevents>

Thats whats in globalevents.xml

Whats wrong?
 
here is the text


PHP:
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
 
Back
Top