Jump to content
  • 0

how to make custom mvp spawn at 7PM and 9PM?


Question

12 answers to this question

Recommended Posts

Posted

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

Posted

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  /wah

Posted

 

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  /wah

 

how to add specific spawn time for mvp?? this is the problem..

Posted

 

 

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  /wah

 

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:
Posted

 

 

 

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  /wah

 

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=.=""""

Posted

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.

Posted

 

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?

";

Posted

 

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.
}

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...