donkeyg Posted November 29, 2014 Posted November 29, 2014 how to make custom mvp spawn at 7PM and 9PM? and it will announce "<MVP NAME> has been spawned in prontera town" bump~ Quote
tr0n Posted November 29, 2014 Posted November 29, 2014 Just use these three commands to make it work. It's not very hard and you should be able to do it - Announce: http://rathena.org/wiki/Announce - Monster: http://rathena.org/wiki/Monster - Label Timers: http://rathena.org/wiki/OnHour#Label_Timers If you have any questions feel free to ask. Quote
donkeyg Posted December 1, 2014 Author Posted December 1, 2014 Just use these three commands to make it work. It's not very hard and you should be able to do it - Announce: http://rathena.org/wiki/Announce - Monster: http://rathena.org/wiki/Monster - Label Timers: http://rathena.org/wiki/OnHour#Label_Timers If you have any questions feel free to ask. - script announcer#2 -1,{ OnClock1900: OnClock2200: announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } yes.. i tried make this by myself.. how about make the mvp spawn at specific time? bumpppppp Quote
donkeyg Posted December 2, 2014 Author Posted December 2, 2014 How to Make Ifrit MVP spawn Everyday 7PM and 10pm? Quote
Conflicts Posted December 2, 2014 Posted December 2, 2014 I have merged both topics. @dongkeyg, avoid making another post for the same problem / request. Quote
donkeyg Posted December 2, 2014 Author Posted December 2, 2014 I have merged both topics. @dongkeyg, avoid making another post for the same problem / request. okay.. sorry.. btw can u help me pls? really need it badly Quote
Akbare Posted December 3, 2014 Posted December 3, 2014 How to Make Ifrit MVP spawn Everyday 7PM and 10pm? disable default spawn first and create new script : - script announcer#2 -1,{ OnClock1900: OnClock2200: [ add monster script spawn ] // monster announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } sorry im noob for scripting Quote
donkeyg Posted December 3, 2014 Author Posted December 3, 2014 How to Make Ifrit MVP spawn Everyday 7PM and 10pm? disable default spawn first and create new script : - script announcer#2 -1,{ OnClock1900: OnClock2200: [ add monster script spawn ] // monster announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } sorry im noob for scripting how to add specific spawn time for mvp?? this is the problem.. Quote
Akbare Posted December 3, 2014 Posted December 3, 2014 How to Make Ifrit MVP spawn Everyday 7PM and 10pm? disable default spawn first and create new script : - script announcer#2 -1,{ OnClock1900: OnClock2200: [ add monster script spawn ] // monster announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } sorry im noob for scripting how to add specific spawn time for mvp?? this is the problem.. OMG : This script is a script that will trigger the spawn time OnClock1900: OnClock2200: Quote
donkeyg Posted December 3, 2014 Author Posted December 3, 2014 How to Make Ifrit MVP spawn Everyday 7PM and 10pm? disable default spawn first and create new script : - script announcer#2 -1,{ OnClock1900: OnClock2200: [ add monster script spawn ] // monster announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } sorry im noob for scripting how to add specific spawn time for mvp?? this is the problem.. OMG : This script is a script that will trigger the spawn time OnClock1900: OnClock2200: yeah.. after put this.. what shud i do? i wan to make it automatic spawn on 7pm and 11pm=.="""" Quote
Luciar Posted December 3, 2014 Posted December 3, 2014 Just use these three commands to make it work. It's not very hard and you should be able to do it - Announce: http://rathena.org/wiki/Announce - Monster: http://rathena.org/wiki/Monster - Label Timers: http://rathena.org/wiki/OnHour#Label_Timers If you have any questions feel free to ask. Have you read these links? tr0n posted everything you need. You should focus on reading the monster article, as your script is otherwise ready. Quote
donkeyg Posted December 4, 2014 Author Posted December 4, 2014 Just use these three commands to make it work. It's not very hard and you should be able to do it - Announce: http://rathena.org/wiki/Announce - Monster: http://rathena.org/wiki/Monster - Label Timers: http://rathena.org/wiki/OnHour#Label_Timers If you have any questions feel free to ask. Have you read these links? tr0n posted everything you need. You should focus on reading the monster article, as your script is otherwise ready. - script announcer#2 -1,{ OnClock1900: OnClock2300: monster "Ifrit",0,0,"Poring 1",1832,1,strnpcinfo(0)+"::OnPoring1Dead announce "<MVP NAME> IS NOW SPANED IN PvP Arena",0; end; } is it like this? "; Quote
Skorm Posted December 4, 2014 Posted December 4, 2014 is it like this? - script announcer#2 -1,{ OnClock1900: // This label is triggered automatically at the corresponding time. OnClock2300: // Same with this label. .@event$ = strnpcinfo(0)+"::OnBossDead"; // Setting .@event$ now equals announcer#2::OnBossDead. if( mobcount( "pvp_y_1-2",.@event$ ) ) // Count the amount of monsters with the event label .@event$. killmonster "pvp_y_1-2",.@event$; // If they exist we kill them this is so there will only be one spawned at a time. monster "pvp_y_1-2",0,0,"Ifrit",1832,1,.@event$; // Now we spawn a new mob with the event label .@event$ on pvp_y_1-2. announce "IFRIT HAS SPAWNED IN THE PVP ARENA!",bc_blue|bc_all; // And announce that the mob was spawned. OnBossDead: // This is a dummy label to avoid warnings/errors. } Quote
Question
donkeyg
how to make custom mvp spawn at 7PM and 9PM? and it will announce "<MVP NAME> has been spawned in prontera town"
bump~
12 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.