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

[Map/script question]

Condor

Member
Joined
Aug 25, 2010
Messages
81
Reaction score
7
Location
The Netherlands/Belgium
I've encountered this on my friend's OT, since I'm the mapper it seems my duty to know all this, but I just can't figure out what to do.

The question is simple, how do I remove this constantly returning "trainers" signal?
Is it a script/a mapping thing/something else/..?
2wr3ogj.png
10qks51.png

Thanks in advance!

Condor
 
no it's script in globalevent
like this script
Code:
local config = {
    positions = {
        ["Welcome!"] = { x = 2000, y = 2000, z = 7 },
        ["Training"] = { x = 1995, y = 1995, z = 7 },
        ["Hunts"] = { x = 1993, y = 1995, z = 7 },
        ["Events"] = { x = 1997, y = 1995, z = 7 },
        ["Depot"] = { x = 1999, y = 1995, z = 7 },
        ["Cities"] = { x = 2001, y = 1995, z = 7 },
        ["Quests"] = { x = 2003, y = 1995, z = 7 },
        ["Tetris"] = { x = 3996, y = 4003, z = 7 },
        ["Start"] = { x = 1997, y = 1999, z = 7 },
        ["VIP"] = { x = 2004, y = 2001, z = 7 },
        ["More"] = {x = 1991, y = 1985, z = 7}
}
}
 
function onThink(cid, interval, lastExecution)
    for text, pos in pairs(config.positions) do
        doSendAnimatedText(pos, text, math.random(2, 255))
    doSendMagicEffect(pos, 28)
    doSendMagicEffect(pos, 35)
    doSendMagicEffect(pos, 53)
    end
   
    return TRUE
end

Code:
<globalevent name="Text" interval="0" script="talksign.lua"/>
 
Back
Top