Jump to content
  • 0

requesting for auto broadcast npc in every 10 minutes


todhiro19

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  11/04/15
  • Last Seen:  

hi all rathena im looking for auto broadcast npc every 10 minutes..im using rathena server with pre renewal. hope you help me. thanks in advance :D

Edited by todhiro19
Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  11/04/15
  • Last Seen:  

thanks you all guys ima test it now :D


-	script	autoannounce	-1,{

        OnInit:
    while(1) {
	announce "Welcome To rAthena! Enjoy Your Stay Here!",bc_all;
	sleep 630000;

	announce "If you found any BUG, please report it immediately to any of the GM-Team",bc_all;
	sleep 66000;

	announce "REMEMBER: No GM has the right to ask a player of any of his/her account information, so please, NEVER let anyone deceive you.",bc_all;
	sleep 690000;
    }
}

Trying this one but nothing happen.. no npc added ill put it in npc/custom.. but yea nothing happen how can i fix it?

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  1529
  • Reputation:   234
  • Joined:  08/03/12
  • Last Seen:  

is it like this ?
 

-	script	Fact Announcer	-1,{
	end;
	OnMinute02:
	OnMinute12:
	OnMinute22:
	OnMinute32:
	OnMinute42:
	OnMinute52:
	switch(rand(1,2)) {
	case 1: announce "Welcome to Reunite RO-Reborn! Dont forget to like our Facebook Page 'Reunite Ragnarok Online Malaysia!",bc_all,0xFFFF00; end;
	case 2: announce "Our main town for vending is at Morroc.You can go there instantly by use commands @go 1.",bc_all,0xFFFF00; end;
}
	end;
}
Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

OnInit:

freeloop(1);

while(1){

announce "bla bla bla",0;
sleep2 600000;

}

freeloop(0);

end;

Please have a try. Not sure if it would work.

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  141
  • Topics Per Day:  0.03
  • Content Count:  444
  • Reputation:   22
  • Joined:  06/18/12
  • Last Seen:  


- script autoannounce -1,{

OnInit:

while(1) {

announce "Welcome To rAthena! Enjoy Your Stay Here!",bc_all;

sleep 630000;

announce "If you found any BUG, please report it immediately to any of the GM-Team",bc_all;

sleep 66000;

announce "REMEMBER: No GM has the right to ask a player of any of his/her account information, so please, NEVER let anyone deceive you.",bc_all;

sleep 690000;

}

}

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  387
  • Reputation:   60
  • Joined:  10/08/13
  • Last Seen:  


- script Sample -1,{

OnInit:

set .Time,300;

setarray .News$[0],

"Your Message here.",

"Your Message here.",

"Your Message here."; // Add more if you like. remember, at the last message you must put ';'!

while( 1 ) { announce .News$[ rand( getarraysize( .News$ ) ) ], bc_all, 0xDA70D6;

sleep ( .Time * 3000 ); } end; }

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  41
  • Reputation:   1
  • Joined:  10/12/12
  • Last Seen:  


- script Auto_Announce -1,{

OnMinute19: OnMinute18:

OnMinute28: OnMinute38:

OnMinute48: OnMinute58:

setarray $@auto_ann$[0], "talk1",

"talk2";

set $@i, rand(0,1);

announce $@auto_ann$[$@i],bc_all;

end;

}

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  141
  • Topics Per Day:  0.03
  • Content Count:  444
  • Reputation:   22
  • Joined:  06/18/12
  • Last Seen:  

thanks you all guys ima test it now :D

-	script	autoannounce	-1,{

        OnInit:
    while(1) {
	announce "Welcome To rAthena! Enjoy Your Stay Here!",bc_all;
	sleep 630000;

	announce "If you found any BUG, please report it immediately to any of the GM-Team",bc_all;
	sleep 66000;

	announce "REMEMBER: No GM has the right to ask a player of any of his/her account information, so please, NEVER let anyone deceive you.",bc_all;
	sleep 690000;
    }
}

Trying this one but nothing happen.. no npc added ill put it in npc/custom.. but yea nothing happen how can i fix it?

Sorry my bad. I thought it was auto announcement npc. LOL

 

Try this one posted here LINK

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  11/04/15
  • Last Seen:  

 

thanks you all guys ima test it now :D

-	script	autoannounce	-1,{

        OnInit:
    while(1) {
	announce "Welcome To rAthena! Enjoy Your Stay Here!",bc_all;
	sleep 630000;

	announce "If you found any BUG, please report it immediately to any of the GM-Team",bc_all;
	sleep 66000;

	announce "REMEMBER: No GM has the right to ask a player of any of his/her account information, so please, NEVER let anyone deceive you.",bc_all;
	sleep 690000;
    }
}

Trying this one but nothing happen.. no npc added ill put it in npc/custom.. but yea nothing happen how can i fix it?

Sorry my bad. I thought it was auto announcement npc. LOL

 

Try this one posted here LINK

 

yoo sir your correct i was looking for auto broadcaster but ur code not effect??

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  141
  • Topics Per Day:  0.03
  • Content Count:  444
  • Reputation:   22
  • Joined:  06/18/12
  • Last Seen:  

yoo sir your correct i was looking for auto broadcaster but ur code not effect??

 

Sorry. My code isn't actually a broadcaster. It was an auto-announcer npc. Try that link I posted above

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  33
  • Reputation:   0
  • Joined:  11/04/15
  • Last Seen:  

-	script	Sample	-1,{
OnInit:
set .Time,300;
setarray .News$[0],
"Your Message here.",
"Your Message here.",
"Your Message here."; // Add more if you like. remember, at the last message you must put ';'!
while( 1 ) { announce .News$[ rand( getarraysize( .News$ ) ) ], bc_all, 0xDA70D6;
sleep ( .Time * 3000 ); } end; }

thanks i try this one :D

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  39
  • Reputation:   0
  • Joined:  05/05/17
  • Last Seen:  

OnClock

Link to comment
Share on other sites

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.

×
×
  • Create New...