Lil Troll Posted August 3, 2013 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 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 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 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 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 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 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 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...
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