Jump to content
  • 0

Pvp ladder and dota announcer


Kudo

Question


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  131
  • Reputation:   0
  • Joined:  08/18/12
  • Last Seen:  

is there a separate script of pvp ladder and dota announcer only? cause i have script of pvp ladder with battle points system + announcer the problem is the announcer is not fully work like no kill streak announcement and no continues announce after the godlike.. + no announcement of where he/she killed the player.  i want the features of my pvp ladder and i will just off the announce thats why i need a separate announce like annieRuru dota announcer

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  131
  • Reputation:   0
  • Joined:  08/18/12
  • Last Seen:  

bump. i need help on this 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  55
  • Topics Per Day:  0.01
  • Content Count:  1190
  • Reputation:   161
  • Joined:  06/12/12
  • Last Seen:  

for pvp point try using this, the point will change into roulette coin

-	script	PVPPOINTS	-1,{
OnPCKillEvent:
	if ( getgmlevel() >= 60) {
		end;
	}
	set PVPPoint,PVPPoint+1;
	dispbottom "Gained 1 PVP Points. Total : "+ PVPPoint +" PVP Points.";
	end;
}

Welgaia,203,119,4	script	PVP Point Trader	512,{

setarray $@pvprewitem[0], 671,673,675;

mes "Do you want to trade your point to coin?";
mes "For 1 pvp point will get random 1 coin";
mes "You have "+ PVPPoint +" PVP Points.";
switch(select("Yes:No")){
    Case 1:
		if (PVPPoint <= 0) {
			next;
			mes "You don't have PVP point.";
			end;
		}
		next;
		mes "Here your random coin.";
        getitem $@pvprewitem[rand(0,getarraysize($@pvprewitem)-1)],1;
		set PVPPoint,PVPPoint-.point;
        close;
    Case 2:
    mes "ok bye";
    close;
	}
}

For PVP ladder and dota sound try use script at this download page on folder NPC

 

Link to comment
Share on other sites

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.

×
×
  • Create New...