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

[Request Text appear on Tile every second!

Joined
Jan 4, 2009
Messages
3
Reaction score
0
Location
Sweden[SWE]
Hello guys. I'm requesting a script that should do like this.

Also The script..

It should appear a text everysecond on a tile maybe if item.uid or pos..

Also a text should appear on a tile every second.

Please Answer
 
i think you need gogoeffect. wait i am write this topic

i dont understand you but you try it:

creaturescripts>scripts>effect.lua

Code:
local config = {
	effectType = 29,
	effectPos = { x = 703, y = 600, z = 7 },
	started = FALSE
	}
local function goGoGoEffect(pos, effect)
	doSendMagicEffect(pos, effect)
	addEvent(goGoGoEffect, 200, pos, effect)
	return TRUE
end

function onLogin(cid)
	if config.started == FALSE then
		config.started = TRUE
		goGoGoEffect(config.effectPos, config.effectType)
	end
	return TRUE
end

creaturescripts.xml
Code:
      <event type="login" name="effect" script="effect.lua"/>

@UP there is only effect. if you want add animatedtext.msg here
 
Last edited by a moderator:
zonet making post with noob acc, later answer himself with "i'll make this later".. how come you begged me and colandus to make one for you on otlua? retard, stop thiefing my ideas all the time use your own brain.
 
What are you talking about? otlua? you are funny ;)

@Up
Zonet dont talk shit, damn noob, It was not even made as he wanted, so dont say
Code:
" 	 @up

why are you bumping when it's already is done? "

damn noob, dont act as somone , Btw you were Kernkraft owner or i am wrong? :)
If its you ( Its me Athxzor) Nice laggs btw on your server :/

* Sorry everyone, but i just dont like fools like Zonet.

//
Your's
Dalale =]]
 
Globalevent.
\data\globalevents, globalevents.XML:
Code:
	<globalevent name="aEffect" interval="1" script="auto_effect.lua"/>

\data\globalevents\scripts, auto_effect.LUA:
Code:
			---by BomBa---
			--------------

function onThink(interval, lastExecution)
	   addEvent(goGoGoEffect, 1*1000, uid)
 return TRUE
end

function goGoGoEffect(uid)
local config =
{
 effectType = CONST_ME_FIREWORK_RED,
 effectPos = { x = 703, y = 600, z = 7 },
 text = "TEXT",
 textE = TEXT_EFFECT
}
	   doSendMagicEffect(config.effectPos, config.effectType)
	   doSendAnimatedText(config.effectPos, config.text, config.textE)
	   addEvent(goGoGoEffect, 1*1000, uid)
 return TRUE
end
 
Globalevent.
\data\globalevents, globalevents.XML:
Code:
	<globalevent name="aEffect" interval="1" script="auto_effect.lua"/>

\data\globalevents\scripts, auto_effect.LUA:
Code:
			---by BomBa---
			--------------

function onThink(interval, lastExecution)
	   addEvent(goGoGoEffect, 1*1000, uid)
 return TRUE
end

function goGoGoEffect(uid)
local config =
{
 effectType = CONST_ME_FIREWORK_RED,
 effectPos = { x = 703, y = 600, z = 7 },
 text = "TEXT",
 textE = TEXT_EFFECT
}
	   doSendMagicEffect(config.effectPos, config.effectType)
	   doSendAnimatedText(config.effectPos, config.text, config.textE)
	   addEvent(goGoGoEffect, 1*1000, uid)
 return TRUE
end

How to change the text into Orange colour instead of black?
 
Back
Top