Jump to content
  • 0

how to create global messages to keep repeating on the server?


Question

11 answers to this question

Recommended Posts

  • 0
Posted
42 minutes ago, YtalloNv said:

Did you test this script there?
 

You dont need to turn off your server just use reloadscript. i tested this on my server and its working just replace this OnMinute54: into OnMinute45:

  • 0
Posted

That's a funny question. Not by the question itself, but by having examples everywhere.

 

OnMinute30:

announce "This will be shown to everyone at all in yellow.",0;

end;

 

 

On 10/19/2018 at 10:42 AM, Emistry said:

for every minutes to trigger, you need 2 label ... with 30minutes interval to trigger it.


OnMinute00:
OnMinute30:
	announce "This will be shown to everyone at all in yellow.",0;
	end;
	

OnMinute30  meant to every 30th minutes of every hours, not every 30 minutes.

I got it wrong.

  • 0
Posted

for every minutes to trigger, you need 2 label ... with 30minutes interval to trigger it.

OnMinute00:
OnMinute30:
	announce "This will be shown to everyone at all in yellow.",0;
	end;
	

OnMinute30  meant to every 30th minutes of every hours, not every 30 minutes.

  • Upvote 1
  • 0
Posted
On 19/10/2018 at 19:38, Mahiro said:

Eu entendi errado.

I want to put these messages ...! Is this script correct?
 

/*
    OnClock0045:    OnClock0645:    OnClock1245:    OnClock1845:
    OnClock0245:    OnClock0845:    OnClock1445:    OnClock2045:
    OnClock0445:    OnClock1045:    OnClock1645:    OnClock2245:
*/
/
    
    announce "AVISO: Matenha os dados de sua conta atualizados no NPC de Controle no Centro de Prontera ao lado do Atendente VIP.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: NUNCA forneça sua senha a ninguém! CM / GM e ADMINS nunca pedirão seus dados",bc_all,0xFFFF00;    end;
    
    announce "Participe você  também das Batalhas Campais!",bc_all,0xFFFF00;    end;
    
    announce "Aliste-se com a emissária de Maroll no centro de Prontera!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Acompanhe o Ranking NowRO de Guildas, Players, PvP e Outros! Acesse:www.NowRo.com.br",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Caso veja alguém se passando por menbro da Equipe NowRO, DENUNCIE",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Procure alterar seus dados a cada 15 dias. Segurança em primeiro lugar.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Progaganda de outros servidores não são permitidas. Se ver,DENUNCIE!",bc_all,0xFFFF00;    end;
    
    announce "AVISO:Comportamentos racista não será tolerado pela equipe NowRO!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Preste atenção e tenha cuidado ao fazer a confirmação do seu VIP.Nunca forneça os dados de seu comprovante a ninguém",bc_all,0xFFFF00;    end;
    
    announce "AVISO: A venda de itens por dinheiro é ILEGAL! Denuncie caso veja ou lhe ofereçam!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Nunca a NowRO irá mandar mensagem pedindo para digitar seus dados em algum site.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: se alguém identidicar algum tipo de bug durante sua jornada, por favor comunique o ADMIN imediatamente!",bc_all,0xFFFF00;    end;
    
    announce "mensagem aqui dentro",bc_all,0xFFFF00;    end;
    

*/

  • 0
Posted
1 hour ago, YtalloNv said:

I want to put these messages ...! Is this script correct?
 

/*
    OnClock0045:    OnClock0645:    OnClock1245:    OnClock1845:
    OnClock0245:    OnClock0845:    OnClock1445:    OnClock2045:
    OnClock0445:    OnClock1045:    OnClock1645:    OnClock2245:
*/
/
    
    announce "AVISO: Matenha os dados de sua conta atualizados no NPC de Controle no Centro de Prontera ao lado do Atendente VIP.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: NUNCA forneça sua senha a ninguém! CM / GM e ADMINS nunca pedirão seus dados",bc_all,0xFFFF00;    end;
    
    announce "Participe você  também das Batalhas Campais!",bc_all,0xFFFF00;    end;
    
    announce "Aliste-se com a emissária de Maroll no centro de Prontera!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Acompanhe o Ranking NowRO de Guildas, Players, PvP e Outros! Acesse:www.NowRo.com.br",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Caso veja alguém se passando por menbro da Equipe NowRO, DENUNCIE",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Procure alterar seus dados a cada 15 dias. Segurança em primeiro lugar.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Progaganda de outros servidores não são permitidas. Se ver,DENUNCIE!",bc_all,0xFFFF00;    end;
    
    announce "AVISO:Comportamentos racista não será tolerado pela equipe NowRO!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Preste atenção e tenha cuidado ao fazer a confirmação do seu VIP.Nunca forneça os dados de seu comprovante a ninguém",bc_all,0xFFFF00;    end;
    
    announce "AVISO: A venda de itens por dinheiro é ILEGAL! Denuncie caso veja ou lhe ofereçam!",bc_all,0xFFFF00;    end;
    
    announce "AVISO: Nunca a NowRO irá mandar mensagem pedindo para digitar seus dados em algum site.",bc_all,0xFFFF00;    end;
    
    announce "AVISO: se alguém identidicar algum tipo de bug durante sua jornada, por favor comunique o ADMIN imediatamente!",bc_all,0xFFFF00;    end;
    
    announce "mensagem aqui dentro",bc_all,0xFFFF00;    end;
    

*/

The correct thing is to place the Schedule above each ad, so that Schedule "X" calls the advertisement below.

See below;

OnClock0045:

announce "AVISO: Matenha os dados de sua conta atualizados no NPC de Controle no Centro de Prontera ao lado do Atendente VIP.",bc_all,0xFFFF00; end;

OnClock0145:

announce "AVISO: Matenha os dados de sua conta atualizados no NPC de Controle no Centro de Prontera ao lado do Atendente VIP.",bc_all,0xFFFF00; end;

  • 0
Posted
1 hour ago, Mahiro said:

O correto é colocar o Agendamento acima de cada anúncio, para que o Agendamento "X" chame o anúncio abaixo.

Ver abaixo;

OnClock0045:

announce "AVISO: Não há dados da sua conta atualizados em NPC de Controle no Centro de Ação ao Atendimento VIP.", bc_all, 0xFFFF00; fim;

OnClock0145:

announce "AVISO: Não há dados da sua conta atualizados em NPC de Controle no Centro de Ação ao Atendimento VIP.", bc_all, 0xFFFF00; fim;

not announcing

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...