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

I Need Help

laccc

New Member
Joined
Jul 15, 2008
Messages
23
Reaction score
0
Hello people I need a help ..
I need the script that they are coming fireworks around the gamemaster..sorry for my English
 
Something like this:
LUA:
function onThink(interval, lastExecution, thinkInterval)
local rand = math.random(28,30)
	for _, pid in ipairs(getPlayersOnline()) do
		if getPlayerGroupId(pid) >= 3 then
			for effectX = 1, 7 do
				for effectY = 1, 5 do
					doSendMagicEffect({x=getCreaturePosition(pid).x+effectX, y=getCreaturePosition(pid).y+effectY, z=getCreaturePosition(pid).z}, rand)
					doSendMagicEffect({x=getCreaturePosition(pid).x-effectX, y=getCreaturePosition(pid).y-effectY, z=getCreaturePosition(pid).z}, rand)
					doSendMagicEffect({x=getCreaturePosition(pid).x+effectX, y=getCreaturePosition(pid).y-effectY, z=getCreaturePosition(pid).z}, rand)
					doSendMagicEffect({x=getCreaturePosition(pid).x-effectX, y=getCreaturePosition(pid).y+effectY, z=getCreaturePosition(pid).z}, rand)
				end
			end
		end
	end
return true
end
 
@sypher, so he lets out fires on the screen interaction, I want a script to release in full screen but one in a firework, and when you release one by one see any color of the firework, her loose firework script on screen interaction, and always the same color ..
Sorry for my English and my exigency
 
Last edited:
Back
Top