Lil Troll Posted August 3, 2013 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 276 Reputation: 24 Joined: 07/06/13 Last Seen: April 19, 2014 Share Posted August 3, 2013 Is after killing a monster can attach summon a monster? Like for example, poring killed, poring summons lunatic. Quote Link to comment Share on other sites More sharing options...
Xynvaroth Posted August 3, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 254 Reputation: 72 Joined: 07/10/13 Last Seen: October 9, 2017 Share Posted August 3, 2013 Like already discussed in this area, you should use the monster command and an additional label to be triggered when the monster dies if you only want to trigger the death of a few certain monsters. OnNPCKillEvent should only be used if you want a general label which is triggered whenever any monster on the server is killed. You could want to use this, for instance, if you want to count all the monsters a player kills, but not if you want to trigger the death of certain, few monsters. The resource difference might not be that noticable for all cases, since we are talking about a very short time duration, but it still exists and if you run many unoptimised scripts, you will eventually notice a different. Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 3, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 3, 2013 OnNPCKillEvent: if( killedrid == 1002 ){ monster "this",-1,-1,"Another mob",1002,1,""; } end; Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted August 3, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted August 3, 2013 OnNPCKillEvent: if( killedrid == 1002 ){ monster "this",-1,-1,"Another mob",1002,1,""; } end; what does the -1, -1 mean? Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 3, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 3, 2013 OnNPCKillEvent: if( killedrid == 1002 ){ monster "this",-1,-1,"Another mob",1002,1,""; } end; what does the -1, -1 mean? current coordinate ..... Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted August 3, 2013 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted August 3, 2013 (edited) OnNPCKillEvent: if( killedrid == 1002 ){ monster "this",-1,-1,"Another mob",1002,1,""; } end; what does the -1, -1 mean? current coordinate ..... Thanks, get a new good knowledge I think it can also be done with this type of mob spawn, if only to kill and summon a mob <map name>,<x1>,<y1>,<x2>,<y2>%TAB%monster%TAB%<monster name>%TAB%<mob id>,<amount>,<delay1>,<delay2>,<event> Edited August 3, 2013 by QQfoolsorellina Quote Link to comment Share on other sites More sharing options...
Emistry Posted August 3, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted August 3, 2013 yes ... just add the specific label to summon another monster when killed.. Quote Link to comment Share on other sites More sharing options...
Lil Troll Posted August 4, 2013 Group: Members Topic Count: 38 Topics Per Day: 0.01 Content Count: 276 Reputation: 24 Joined: 07/06/13 Last Seen: April 19, 2014 Author Share Posted August 4, 2013 Wow thanks for the reply, gonna add this one, thanks so much for the info guys!. Quote Link to comment Share on other sites More sharing options...
Question
Lil Troll
Is after killing a monster can attach summon a monster? Like for example, poring killed, poring summons lunatic.
Link to comment
Share on other sites
7 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.