Ir para conteúdo
Banner com Efeitos

Featured Replies

Postado
local config = {
	tempo = 5, --tempo em segundos
	mensagem = {
		texto = "[TOP]", --não use mais de 9 caracteres
		efeito = TEXTCOLOR_LIGHTBLUE --efeito para a função doSendAnimatedText
	},
	efeito = 30, --efeito da função doSendMagicEffect
	globalstr = 150202 -- uma global storage qualquer q esteje vazia
}
function TopEffect(cid)
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if not isCreature(cid) or getPlayerName(cid) ~= var[1] then return LUA_ERROR end
	doSendAnimatedText(getCreaturePosition(cid), config.mensagem.texto, config.mensagem.efeito)
	doSendMagicEffect(getCreaturePosition(cid), config.efeito)
	addEvent(TopEffect, config.tempo*1000, cid)
end
function onLogin(cid)
	if tonumber(getGlobalStorageValue(config.globalstr)) then -- virgin
		local query = db.getResult("SELECT `name`, `level` FROM `players` WHERE `group_id` < 2 ORDER BY `level` DESC LIMIT 1")
		if (query:getID() ~= -1) then
			setGlobalStorageValue(config.globalstr, ":"..query:getDataString("name")..",:"..query:getDataInt("level"))
			TopEffect(cid)
		end
	else
		TopEffect(cid)
	end
	registerCreatureEvent(cid, "CheckTop")
	return true
end
function onAdvance(cid, skill, oldLevel, newLevel)
	if skill ~= SKILL__LEVEL then return true end
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if newLevel > tonumber(var[2]) then
		doBroadcastMessage("O jogador " .. getPlayerName(cid) .. " tornou-se o novo Top Level. Parabens!", 22)
		setGlobalStorageValue(config.globalstr, ":"..getPlayerName(cid)..",:"..newLevel)
		TopEffect(cid)
	end			
	return true
end

 

 

 

Versão do Servidor: TFS - 0.3.5
Tipo de Script: creaturescript
Código:
  Ocultar conteúdo
local config = {
	tempo = 5, --tempo em segundos
	mensagem = {
		texto = "[TOP]", --não use mais de 9 caracteres
		efeito = TEXTCOLOR_LIGHTBLUE --efeito para a função doSendAnimatedText
	},
	efeito = 30, --efeito da função doSendMagicEffect
	globalstr = 150202 -- uma global storage qualquer q esteje vazia
}
function TopEffect(cid)
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if not isCreature(cid) or getPlayerName(cid) ~= var[1] then return LUA_ERROR end
	doSendAnimatedText(getCreaturePosition(cid), config.mensagem.texto, config.mensagem.efeito)
	doSendMagicEffect(getCreaturePosition(cid), config.efeito)
	addEvent(TopEffect, config.tempo*1000, cid)
end
function onLogin(cid)
	if tonumber(getGlobalStorageValue(config.globalstr)) then -- virgin
		local query = db.getResult("SELECT `name`, `level` FROM `players` WHERE `group_id` < 2 ORDER BY `level` DESC LIMIT 1")
		if (query:getID() ~= -1) then
			setGlobalStorageValue(config.globalstr, ":"..query:getDataString("name")..",:"..query:getDataInt("level"))
			TopEffect(cid)
		end
	else
		TopEffect(cid)
	end
	registerCreatureEvent(cid, "CheckTop")
	return true
end
function onAdvance(cid, skill, oldLevel, newLevel)
	if skill ~= SKILL__LEVEL then return true end
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if newLevel > tonumber(var[2]) then
		doBroadcastMessage("O jogador " .. getPlayerName(cid) .. " tornou-se o novo Top Level. Parabens!", 22)
		setGlobalStorageValue(config.globalstr, ":"..getPlayerName(cid)..",:"..newLevel)
		TopEffect(cid)
	end			
	return true
end

COMO MEU OT NAO PEGA ESCUDO DE WAR , GOSTARIA COLOCAR O ESCUDO AZUL OU O VERDE DE WAR.

EM QUEM FOSSE O TOP LEVEL , NESSE SCRIPT AE. 

QUE O TOP LEVEL FICASSE COM O ESCUDO DE WAR.

+REP

Postado

Testa aí amigo

local config = {
	tempo = 5, --tempo em segundos
	mensagem = {
		texto = "[TOP]", --não use mais de 9 caracteres
		efeito = TEXTCOLOR_LIGHTBLUE --efeito para a função doSendAnimatedText
	},
	efeito = 30, --efeito da função doSendMagicEffect
	globalstr = 150202 -- uma global storage qualquer q esteje vazia
}
function TopEffect(cid)
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if not isCreature(cid) or getPlayerName(cid) ~= var[1] then return LUA_ERROR end
	doSendAnimatedText(getCreaturePosition(cid), config.mensagem.texto, config.mensagem.efeito)
	doSendMagicEffect(getCreaturePosition(cid), config.efeito)
	addEvent(TopEffect, config.tempo*1000, cid)
end
function onLogin(cid)
	if tonumber(getGlobalStorageValue(config.globalstr)) then -- virgin
		local query = db.getResult("SELECT `name`, `level` FROM `players` WHERE `group_id` < 2 ORDER BY `level` DESC LIMIT 1")
		if (query:getID() ~= -1) then
			local name = query:getDataString("name")
			setGlobalStorageValue(config.globalstr, ":"..name..",:"..query:getDataInt("level"))
			if getPlayerName(cid) == name then
				doCreatureSetGuildEmblem(cid, 1)
			end
			
			TopEffect(cid)
		end
	else
		TopEffect(cid)
	end
	registerCreatureEvent(cid, "CheckTop")
	return true
end
function onAdvance(cid, skill, oldLevel, newLevel)
	if skill ~= SKILL__LEVEL then return true end
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if newLevel > tonumber(var[2]) then
		doBroadcastMessage("O jogador " .. getPlayerName(cid) .. " tornou-se o novo Top Level. Parabens!", 22)
		setGlobalStorageValue(config.globalstr, ":"..getPlayerName(cid)..",:"..newLevel)
		doCreatureSetGuildEmblem(cid, 1)
		TopEffect(cid)
	end			
	return true
end

 

Postado
  • Autor
1 hora atrás, Lyu disse:

Testa aí amigo


local config = {
	tempo = 5, --tempo em segundos
	mensagem = {
		texto = "[TOP]", --não use mais de 9 caracteres
		efeito = TEXTCOLOR_LIGHTBLUE --efeito para a função doSendAnimatedText
	},
	efeito = 30, --efeito da função doSendMagicEffect
	globalstr = 150202 -- uma global storage qualquer q esteje vazia
}
function TopEffect(cid)
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if not isCreature(cid) or getPlayerName(cid) ~= var[1] then return LUA_ERROR end
	doSendAnimatedText(getCreaturePosition(cid), config.mensagem.texto, config.mensagem.efeito)
	doSendMagicEffect(getCreaturePosition(cid), config.efeito)
	addEvent(TopEffect, config.tempo*1000, cid)
end
function onLogin(cid)
	if tonumber(getGlobalStorageValue(config.globalstr)) then -- virgin
		local query = db.getResult("SELECT `name`, `level` FROM `players` WHERE `group_id` < 2 ORDER BY `level` DESC LIMIT 1")
		if (query:getID() ~= -1) then
			local name = query:getDataString("name")
			setGlobalStorageValue(config.globalstr, ":"..name..",:"..query:getDataInt("level"))
			if getPlayerName(cid) == name then
				doCreatureSetGuildEmblem(cid, 1)
			end
			
			TopEffect(cid)
		end
	else
		TopEffect(cid)
	end
	registerCreatureEvent(cid, "CheckTop")
	return true
end
function onAdvance(cid, skill, oldLevel, newLevel)
	if skill ~= SKILL__LEVEL then return true end
	local var = tostring(getGlobalStorageValue(config.globalstr)):gsub(':', ''):explode(',')
	if newLevel > tonumber(var[2]) then
		doBroadcastMessage("O jogador " .. getPlayerName(cid) .. " tornou-se o novo Top Level. Parabens!", 22)
		setGlobalStorageValue(config.globalstr, ":"..getPlayerName(cid)..",:"..newLevel)
		doCreatureSetGuildEmblem(cid, 1)
		TopEffect(cid)
	end			
	return true
end

NÃO APARECEU NADA !

QUERIA QUE APARECESSE O ESCUDO DA GUILD.

MAS SEM ELE TER GUILD.

 

 

 

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

Quem Está Navegando 0

  • Nenhum usuário registrado visualizando esta página.

Conteúdo Similar

Estatísticas dos Fóruns

  • Tópicos 96.9k
  • Posts 519.6k

Informação Importante

Confirmação de Termo