Jump to content
  • 0

Bloody Branch MVP kill announcer & MVP Announcer script


Question

Posted

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

  • 0
Posted (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 by Skorm
  • 0
Posted
-	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;
}

 

  • Love 1
  • 0
Posted
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

image.png.a441801b6ebafe00a1c84c18c7328c34.png

image.png.a9cce6192337569b0cc65518f6968970.png

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