• 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] send text on pos

Gregor

New Member
Joined
Feb 29, 2008
Messages
770
Reaction score
3
Location
UK/POLAND
Hello!

I need a script that send text every 1 seconds on postion that i want ;p

If anyone have script like this post here or PM me.

Thanks!
 

Attachments

data/globalevents/scripts/ create a file and put this
Code:
function onThink(interval, lastExecution)

local pos = {x=10, y=10, z=7, stackpos=1}
	doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)
	doSendAnimatedText(pos, "Training", TEXTCOLOR_YELLOW)
	return TRUE
end

in globalevents.xml put this:
Code:
<globalevent name="effect" interval="1" event="script" value="[COLOR="Red"]SCRIPT_NAME.lua[/COLOR]"/>
 
data/globalevents/scripts/ create a file and put this
Code:
function onThink(interval, lastExecution)

local pos = {x=10, y=10, z=7, stackpos=1}
	doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)
	doSendAnimatedText(pos, "Training", TEXTCOLOR_YELLOW)
	return TRUE
end

in globalevents.xml put this:
Code:
<globalevent name="effect" interval="1" event="script" value="[COLOR="Red"]SCRIPT_NAME.lua[/COLOR]"/>

a love ya man!
 
hello all

don’t worry about your handwriting or spelling — nobody’s grading your work . She frets about her family, friends, finances, and even her figure . buy adipex online . Culture of rhodotorula rubra on glucose peptone agar showing pink colouration . Th e debates aboutthe appropriate use of pornography in men’s sexual lives should be aboutsituation- appropriate sexual arousal . When you understand what’s going on, you can start doing something about it . buy herbal phentermine quick . Contrary to popularmythology, there is not a dramatic change in testosterone levels withhealthy aging . I realize i do that a lot! And even if it turned out to be the case, people in wheelchairs also can lead productive lives . Seat belts although created with safety in mind, should have you weary and especially more so when using a lap belt . buy dunhill . Honeybees gather nectar from the flowers that grow on this tree and take it back to their hives where they produce this unique type of honey . It then relaxes the smooth muscles and helps increase the blood flow within the penis . Th e vas deferens lead into the seminal vesicles (storagechambers for the sperm) and then into the prostate . buy foreign hoodia . Both exist in nature as mycelium, which fragments into arthrospores that are readily disseminated on air currents . In the spring, young nubile girls would dancearound a maypole to invoke nature’s fertility . It sounds scientific and complicated, but you can find easy techniques for muscle relaxation in a variety of books, tapes, cds, and on the internet . buy cheap rothmans . And on the flipside, many health problems can be traced to or made worse by emotional factors . In addition, you may want to turn to other sources of support . Many men (and women) are afraid ofconfl ict, believing that it will inevitably lead to destructive arguments andcause damage to intimate feelings . buy camel on internet . It never occurred to me that it was really due to the blocking up of my capillaries . 2 if you ever start to envy another smoker, realize that they will be envious of you . Remember, the only pleasure smokers get is to relieve withdrawal pangs and as i have already explained, even that pleasure is an illusion . buy real ambien overnight without prescriptions . This latter thought filled me with horror and started me thinking very deeply about the subject . Was my father warm or cold? Chapter 2: Discovering the beginnings 25 4 . The new thought is a quick and easy comeback to negative, distorted, reality-scrambled thinking . buy electronic salem . Just think how quickly each week of our lives comes and goes . If you’ve been diagnosed with a medical condition, check with your doctor to see if your depression or anxiety is related to that condition . This brainwashing is very powerful and you need to be aware of its effects . buy cheap rothmans online . Boys usually start because they want to appear tough - it is the humphrey bogart/clint eastwood image . Essential investigations microscopy gross histopathological examination of heavily infected lung tissue may reveal white or grey nodules . Exorcise with exercise the body responds to upset by producing stress hormones . buy hoodia without prescription in usa . Men arefrequently portrayed as sexually troubled and even dangerous, addictedto internet pornography, sex harassers, or sex off enders .

spammer!
 
data/globalevents/scripts/ create a file and put this
Code:
function onThink(interval, lastExecution)

local pos = {x=10, y=10, z=7, stackpos=1}
	doSendMagicEffect(pos, CONST_ME_MAGIC_GREEN)
	doSendAnimatedText(pos, "Training", TEXTCOLOR_YELLOW)
	return TRUE
end

in globalevents.xml put this:
Code:
<globalevent name="effect" interval="1" event="script" value="[COLOR="Red"]SCRIPT_NAME.lua[/COLOR]"/>

I'm using TFS 0.2.1 and dont have globalevents =P how can i do it ? ;o
 
data/creaturescripts/scripts/login.lua
Lua:
local pos1 = {x = 1000, y = 1000, z = 7 , stackpos = 1}

function texteffect()
	doSendMagicEffect(pos1, CONST_ME_CARNIPHILA)
	doSendAnimatedText(pos1, "Cykotitan is noob", TEXTCOLOR_LIGHTGREEN)
	local textEventServ = addEvent(texteffect, 1000, parameters)
end

function onLogin(cid)
	if(InitTextEffect == 0) then
		local textEventServ = addEvent(texteffect, 1000, {})
		InitTextEffect = textEventServ
	end
	registerCreatureEvent(cid, "PlayerDeath")
	return TRUE
end

Add into your global.lua:
Lua:
InitTextEffect = 0


For a complete list of TEXTCOLORs for doSendAnimatedText(position, text, color), visit:
http://ot.rookira.se/www/doSendAnimatedText.php
 
Back
Top