antiblock
https://arwen2.global/
  • Chatbox

    Did you check out our Discord? https://discord.gg/FFdvMjk9xA
    You don't have permission to chat.
    Load More
Sign in to follow this  
csantos93

Vários Anúncios Online

4 posts in this topic

Anuncio Novo Membro

607sOub7_o.png

Spoiler

quest novo_membro begin
   state start begin
      when login begin
         notice_all("O jogador "..pc.get_name().." juntou-se a nossa comunidade. Bem-vindo!")
         set_state(__COMPLETE)
      end
   end
   state __COMPLETE begin
   end
end

 

 

Anuncio GameMaster Online

W4hz413S_o.png

Spoiler

quest gmonline begin
    state start begin
		when login with pc.is_gm() begin
			notice_all("O membro da equipa ".. pc.get_name().." está agora Online.")
		end
    end
end

 

 

Anuncios Gerais do Servidor

Spoiler

quest anuncios begin
	state start begin
		when timer1.timer begin 
			timer("timer1", 721)
			chat("Nenhum membro da Equipa em caso algum irá pedir informações pessoais como")
			chat("Id ou Password. Bom Jogo!")
		end
		
		when timer2.timer begin
			timer("timer2", 901)
			chat("Entre em contacto com um membro da equipa em caso de duvidas, bugs ou")
			chat("denuncias. Bom Jogo!")
		end
	end
end

 

 

Anuncio Morte do Boss

yBtzBqZ1_o.png

Spoiler

quest anuncio_boss begin
	state start begin
		when 1093.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou o Fantasma da Morte!")
	    end
	end
end

 

 

Anuncio Morte dos Bosses

jvoi3SiL_o.png

Spoiler

quest anuncios_bosses begin
	state start begin
		when 1093.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou o Fantasma da Morte!")
		end

		when 2598.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou o Azrael!")
	    end
		
		when 2306.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou a Árvore Fantasma Gigante!")
	    end
		
		when 2092.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou a Aranha Baronesa!")
	    end
		
		when 1192.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou a Bruxa do Gelo Suprema!")
	    end
		
		when 2495.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou o General Huashin!")
	    end
		
		when 2492.kill begin
			notice_all("O jogador "..pc.get_name().." derrotou o General Yonghan!")
	    end
	end
end

 

 

Anuncio Nível 

D1AJ0hzY_o.png

Spoiler

quest nivel_99 begin
	state start begin
		when levelup begin
			if pc.get_level() == 99 then
				notice_all("O jogador ".. pc.get_name() .." atingiu o nivel 99. Parabéns!")
			end
		end
	end
end

 

 

Anúncios De Níveis

CzFlbsbv_o.png

Spoiler

quest anuncioniveis begin
	state start begin
		when levelup begin
			if pc.get_level() == 10 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 10!")
			elseif pc.get_level() == 20 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 20!")
			elseif pc.get_level() == 30 then
				notice_all("O ajugador "..pc.get_name().." atingiu o nivel 30!")
			elseif pc.get_level() == 40 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 40!")
			elseif pc.get_level() == 50 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 50!")
			elseif pc.get_level() == 60 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 60!")
			elseif pc.get_level() == 70 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 70!")
			elseif pc.get_level() == 80 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 80!")
			elseif pc.get_level() == 90 then
				notice_all("O jogador "..pc.get_name().." atingiu o nivel 90!")
			end
		end
	end
end

 

 

Anuncio Ao Sair Do Jogo

Iu6iTHfP_o.png

Spoiler

quest logoutinfo begin 
	state start begin 
		when logout or disconnect begin 
			syschat("Obrigado por jogar nosso servidor. Até breve!") 
		end 
	end 
end

 

 

Anuncio de Informações do Servidor e Informações Pessoais ao Logar

PrUy6VAc_o.png

Spoiler

quest loginsts begin
    state start begin
        when login begin
             chat ("Bem vindo de volta ao Metin2") 
             chat ("Acesse nosso website: www.metin2.com")
			 chat ("Informações em nossa wiki: www.metin2wiki.com")
			 chat ("")
			 notice("A chance de captura de objetos é de 50%.")
			 notice("A chance de capturar yang a dobrar é de 50%.")
			 notice("A chance de ganhar mais experiencia é de 50%.")
			 notice("________________________________________________________________________________")
			 notice("Informações Pessoais:")
			 notice("Nome: ".. pc.get_name() .."        Minutos de Jogo: ".. pc.get_playtime() .." ")
			 notice("Nivel: ".. pc.get_level() .."        Experiencia: ".. pc.get_exp() .." ")
			 notice("Nivel do Cavalo: ".. pc.get_horse_level() .."        Yang: ".. pc.get_gold() .." ")
			 notice("Logado no Canal: ".. pc.get_channel_id() .."        Está no Mapa: ".. pc.get_map_index() .." ")
			 notice("________________________________________________________________________________")
		end
	end
end

 

 

Informações Pessoais ao Logar o Servidor

7Cs9FuKr_o.png

Spoiler

quest login begin
    state start begin
        when login begin
			notice("Informações Pessoais:")
            notice("Nome: ".. pc.get_name() .."		Minutos de Jogo: ".. pc.get_playtime() .." ")
			notice("Nivel: ".. pc.get_level() .."		Experiencia: ".. pc.get_exp() .." ")
			notice("Yang: ".. pc.get_gold() .." ")
			notice("Logado no Canal: ".. pc.get_channel_id() .."        Está no Mapa: ".. pc.get_map_index() .." ")
			notice("")
		end
	end
end

 

 

Anuncio de Rates ao Logar o Server

EnTXmVJY_o.png

Spoiler

quest login begin
    state start begin
        when login begin
			notice("A chance de captura de objetos é de 50%.")
			notice("A chance de capturar yang a dobrar é de 50%.")
			notice("A chance de ganhar mais experiencia é de 50%.")
		end
	end
end

 

 

Informações Uteis ao Logar o Servidor

wlD1byA2_o.png

Spoiler

quest login begin
    state start begin
        when login begin
            chat ("Bem vindo de volta ao Metin2") 
            chat ("Acesse nosso website: www.metin2.com")
			chat ("Informações em nossa wiki: www.metin2wiki.com")
		end
	end
end

 

 

 

 

 

 

 

Instalação:

Spoiler

cd /usr/home/game/share/locale/nome_da_pasta/quest

./qc nome_do_anuncio.quest

 

Edited by csantos93
Novos anuncios adicionados. (see edit history)

Share this post


Link to post
Share on other sites
antiblock
diamwall

4 Novas Quest Adicionadas:

1 - Anuncio de Informações do Servidor, Informações Pessoais e Informações do Site ao Logar o Servidor.

2 - Informações Pessoais ao Logar o Servidor.

3- Anuncio de Rates Fixos ao Logar o Servidor.

4- Informações Úteis ao Logar o Servidor.

 

 

PROCURO:

- Quest de Anuncio de Re-spam de bosses.

- Quest de Anuncio Top Pescador, Top Caçador de Metin's (Igual ao Wom2)

Share this post


Link to post
Share on other sites

Manda-me mensagem no Discord: Odaline#1379

Share this post


Link to post
Share on other sites

a quest do anúncio colocas diretamente na pasta quest? E como é que o servidor a lê? Crias a quest com nome qc info_jogador.quest e colas diretamente na pasta "quest", não é preciso mais nada? Por exemplo, o meu directório é .../locale/jasus/quest/

desculpa a burrice mas não estou a conseguir colocar a quest a funcionar

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this