Azumoto Posted November 29, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 24 Reputation: 0 Joined: 04/20/12 Last Seen: October 26, 2015 Share Posted November 29, 2012 hello I would like to know whether it is possible to have a script that spawns every 30 minutes MVP monsters in all maps except Prontera, and of course the announced! thank you! Quote Link to comment Share on other sites More sharing options...
Emistry Posted November 29, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 16 hours ago Share Posted November 29, 2012 try this? http://pastebin.com/raw.php?i=3HWpqTLY Quote Link to comment Share on other sites More sharing options...
Azumoto Posted November 29, 2012 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 24 Reputation: 0 Joined: 04/20/12 Last Seen: October 26, 2015 Author Share Posted November 29, 2012 I wanted a npc that you could set. What mvp, and in which map ... can you have? thanks UP Quote Link to comment Share on other sites More sharing options...
GmOcean Posted November 30, 2012 Group: Members Topic Count: 31 Topics Per Day: 0.01 Content Count: 666 Reputation: 93 Joined: 04/27/12 Last Seen: August 17, 2015 Share Posted November 30, 2012 You can do all of that with Emistry's script. You should take a look at: script_commands.txt to learn how to edit scripts to your needs. It's 100% okay to request scripts, but it's even better if you yourself know how to make minor changes such as this. OnInit: .MobID = 1599; // MVP to spawn setarray .Map$[0],"guild_vs1","guild_vs2","guild_vs3","guild_vs4","guild_vs5"; // Maps they will spawn on, add more as needed. To add more MVPs as an option make these changes: OnInit: .MobID = 1599; setarray .Map$[0],"guild_vs1","guild_vs2","guild_vs3","guild_vs4","guild_vs5"; .size = getarraysize( .Map$ ); end; } INTO OnInit: setarray .MobID[0],1559; //Add more as needed setarray .Map$[0],"guild_vs1","guild_vs2","guild_vs3","guild_vs4","guild_vs5"; .size = getarraysize( .Map$ ); .size2 = getarraysize(.MobID); end; } THEN monster .Map$[.@i],0,0,"--ja--",.MobID,1,strnpcinfo(0)+"::OnKilled"; INTO monster .Map$[.@i],0,0,"--ja--",.MobID[rand(.size2)],1,strnpcinfo(0)+"::OnKilled"; Quote Link to comment Share on other sites More sharing options...
Question
Azumoto
hello I would like to know whether it is possible to have a script that spawns every 30 minutes MVP monsters in all maps except Prontera, and of course the announced! thank you!
Link to comment
Share on other sites
3 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.