DEsMOn Posted November 7, 2021 Posted November 7, 2021 Hello Scripters 1) I'm Looking for Bloody Branch MVP / Mini boss Announcer script, In which when MVP/Mini boss is spawn Via Bloody Branch & killed by player it should announce like this. "Player has Killed Bloody Branch Monster MVP Pharaoh". No need to mention location to avoid Kill steal of Bloody Branch MVPs 2) MVP announcer script required In which it should only announce when its killed in Default MVP map. Announcer should be like this "Player has killed Pharaoh in_Sphinix05. Please reply Thanks in advance..! Quote
0 Skorm Posted December 30, 2021 Posted December 30, 2021 (edited) I think this is a better approach because the latter will still trigger on normal spawning MVPS. Change the Bloody Branch item script to... monster "this",-1,-1,"--ja--",-3,1,"BB_MVP_Announce::OnBBMVPDeath"; And then add this npc... - script BB_MVP_Announce -1,{ OnBBMVPDeath: announce "'"+ strcharinfo(0) +"' has killed ("+ getmonsterinfo(killedrid,MOB_NAME) +").",bc_yellow|bc_all; end; } Edited December 30, 2021 by Skorm Quote
0 mR L Posted November 23, 2021 Posted November 23, 2021 - script MVP_Announce -1,{ OnNPCKillEvent: if (getmonsterinfo(killedrid,MOB_MVPEXP) != 0) { getmapxy .@map$,.@x,.@y; announce "'"+ strcharinfo(0) +"' has killed ("+ getmonsterinfo(killedrid,MOB_NAME)+") "+.@map$+".",bc_yellow|bc_all; } end; } 1 Quote
0 DEsMOn Posted November 23, 2021 Author Posted November 23, 2021 8 hours ago, mR L said: - script MVP_Announce -1,{ OnNPCKillEvent: if (getmonsterinfo(killedrid,MOB_MVPEXP) != 0) { getmapxy .@map$,.@x,.@y; announce "'"+ strcharinfo(0) +"' has killed ("+ getmonsterinfo(killedrid,MOB_NAME)+") "+.@map$+".",bc_yellow|bc_all; } end; } Hello Sir, Thanks for reply I tried your script its like normal MVP announcer only. I used Bloody Branch but normal MVP n Bloody Branch MVPs Announcer same.. Should be like this Player has Killed Bloody Branch Monster MVP Pharaoh No location Quote
0 rodrigosoares706 Posted December 28, 2021 Posted December 28, 2021 remove the pair "+.@map$+" Quote
Question
DEsMOn
Hello Scripters
1) I'm Looking for Bloody Branch MVP / Mini boss Announcer script,
In which when MVP/Mini boss is spawn Via Bloody Branch & killed by player it should announce like this.
"Player has Killed Bloody Branch Monster MVP Pharaoh".
No need to mention location to avoid Kill steal of Bloody Branch MVPs
2) MVP announcer script required
In which it should only announce when its killed in Default MVP map.
Announcer should be like this
"Player has killed Pharaoh in_Sphinix05.
Please reply
Thanks in advance..!
4 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.