PVP Warper with announce when someone Enters.

karazu

New member
Messages
1,115
Points
0
I was looking for this script, and I think i cannot find one here in hercules, can you make one for me guys please?


Its only like when someone enters in the PVP like "Karazu Enters in the PVP blahh balhhh.."



Thank you!



EDIT: Sorry I did just found 1, I will just try this one 1st.

http://herc.ws/board/topic/905-can-i-have-pvp-warper-that-disable-in-woe/


 

prontera,165,177,3 script PVP Warper 106,{if (!(agitcheck() || agitcheck2())){ if (select("Yes!","No thanks.") == 2) close; warp "guild_vs5",0,0; announce strcharinfo(0) + " has entered the PVP Room.",0; } end;} 
How to Insert this script so that It be showed also how many players are in the map?
 

Code:
"There are ["+getmapusers("guild_vs5")+"/30] players inside."; 
 
Last edited by a moderator:
Code:
prontera,165,177,3	script	PVP Warper	106,{if (!agitcheck() || !agitcheck2()) {	if (select("Yes!","No thanks.") == 2) close;		warp "guild_vs5",0,0;		announce strcharinfo(0) + " has entered the PVP Room.",0;		announce "There are ["+getmapusers("guild_vs5")+"/30] players inside.",0;		end;	}	end;}
 

 
Last edited by a moderator:
prontera,165,177,3 script PVP Warper 106,{if (!agitcheck() || !agitcheck2()) { if (select("Yes!","No thanks.") == 2) close; warp "guild_vs5",0,0; announce strcharinfo(0) + " has entered the PVP Room.",0; announce "There are ["+getmapusers("guild_vs5")+"/30] players inside.",0; end; } end;}






 
Thank you very much.. I will try this out now.

 
Hello,
 

prontera,165,177,3 script PVP Warper 106,{if (!agitcheck() || !agitcheck2()) { if (select("Yes!","No thanks.") == 2) close; warp "guild_vs5",0,0; announce strcharinfo(0) + " has entered the PVP Room.",0; announce "There are ["+getmapusers("guild_vs5")+"/30] players inside.",0; end; } end;} 
It will not update, i mean even if their are 5 players inside the PVP it will still say 0/30

 
Hello,

prontera,165,177,3 script PVP Warper 106,{if (!agitcheck() || !agitcheck2()) { if (select("Yes!","No thanks.") == 2) close; warp "guild_vs5",0,0; announce strcharinfo(0) + " has entered the PVP Room.",0; announce "There are ["+getmapusers("guild_vs5")+"/30] players inside.",0; end; } end;} 
It will not update, i mean even if their are 5 players inside the PVP it will still say 0/30
Aww, letme check

@edit: Are you sure taht your pvp map is "guild_vs5"?

 
Last edited by a moderator:
ohh wait let me check.

EDIT:

Thank you for that TIP. its ok now..

 
Last edited by a moderator:
Back
Top