• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Request] Nice effect to this script!

Figaro

Banned User
Joined
Jun 25, 2008
Messages
275
Reaction score
0
Location
696E 2079 6F75 7220 6265 64
Hey how i make effect like this?
E=Effect
Tp=teleport
s=distance shooting effect
Code:
               E        
            E  s  E
          E s  TP  s E
            E  s  E
               E
I want that effect to this script!
Code:
local config = {
    positions = {
        ["Welcome"] = { x = 1033, y = 1007, z = 7 }
    },
    
    effects = {
	CONST_ME_YELLOWENERGY,
	CONST_ME_FIREWORK_YELLOW,
	CONST_ME_FIREWORK_BLUE,
	CONST_ME_FIREWORK_RED,
	CONST_ME_PURPLEENERGY

    }

	
}
function onThink(cid, interval, lastExecution)
    for text, pos in pairs(config.positions) do
        doSendMagicEffect(pos, config.effects[math.random(1, #config.effects)])
        doSendAnimatedText(pos, text, math.random(1, 255))
	end
    return TRUE
end
 
Back
Top