Jump to content
  • 0

PvP Script Help !


Yoona

Question


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

Can anyone Help me with this? A Pub how many Players inside the PvP Room

 

Here's the Script

//===== rAthena Script ======================================= 
//= Untitle Script
//===== By: ================================================== 
//= Zealock!
//===== Current Version: ===================================== 
//= 1.0
//===== Compatible With: ===================================== 
//= rAthena , eAthena
//===== Description: ========================================= 
//= PVP Warper
//============================================================

invek,157,169,4	script	 PvP Warper	651,{


	mes "[ PVP Warper ]";
	mes "Would You Like to Enter the Room?";
	next;
	menu "Yes, I'm Hunger for Blood",PatayanNa,"No, Too Lazy to Kill",No;

	PatayanNa:
	mes "[ PvP Warper ]";
	mes "You Made the Right Choice!";
	next;
	mes "Let's Go!";
	warp "guild_vs2",0,0;
	L_All:
	announce "[ PvP Warper ] Announcer:  "+strcharinfo(0)+" has Enter the Room ",0;
	close;


	No:
	mes "[ PvP Warper ]";
	mes "Are you Scared?";
	next;
	mes "Come Back Again, if you already have the Guts!";
	close;


}

// Mapflags
guild_vs2	mapflag	nowarp
guild_vs2	mapflag	nowarpto
guild_vs2	mapflag	pvp	on
guild_vs2	mapflag	noteleport
guild_vs2	mapflag	nosave	SavePoint

thanks !

Edited by Yoona
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   131
  • Joined:  11/10/12
  • Last Seen:  

//===== rAthena Script ======================================= 
//= Untitle Script
//===== By: ================================================== 
//= Zealock!
//===== Current Version: ===================================== 
//= 1.0
//===== Compatible With: ===================================== 
//= rAthena , eAthena
//===== Description: ========================================= 
//= PVP Warper
//============================================================

invek,157,169,4	script	 PvP Warper	651,{


	mes "[ PVP Warper ]";
	mes "Would You Like to Enter the Room?";
	next;
	menu "Yes, I'm Hunger for Blood",PatayanNa,"No, Too Lazy to Kill",No;

	PatayanNa:
	mes "[ PvP Warper ]";
	mes "You Made the Right Choice!";
	next;
	mes "Let's Go!";
	warp "guild_vs2",0,0;
	L_All:
	announce "[ PvP Warper ] Announcer:  "+strcharinfo(0)+" has Enter the Room ",0;
	close;


	No:
	mes "[ PvP Warper ]";
	mes "Are you Scared?";
	next;
	mes "Come Back Again, if you already have the Guts!";
	close;

//WAITING ROOM updates every 2.5 second
OnInit:
    	while(1) {
	delwaitingroom;
	waitingroom "PvP Warper ["+getmapusers("guild_vs2")+"]",0;
	sleep 2500; //2.5 seconds
	}
	end;
}

// Mapflags
guild_vs2	mapflag	nowarp
guild_vs2	mapflag	nowarpto
guild_vs2	mapflag	pvp	on
guild_vs2	mapflag	noteleport
guild_vs2	mapflag	nosave	SavePoint

try this. updates based in the map "guild_vs2" every 2.5 seconds.

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

//===== rAthena Script ======================================= 
//= Untitle Script
//===== By: ================================================== 
//= Zealock!
//===== Current Version: ===================================== 
//= 1.0
//===== Compatible With: ===================================== 
//= rAthena , eAthena
//===== Description: ========================================= 
//= PVP Warper
//============================================================

invek,157,169,4	script	 PvP Warper	651,{


	mes "[ PVP Warper ]";
	mes "Would You Like to Enter the Room?";
	next;
	menu "Yes, I'm Hunger for Blood",PatayanNa,"No, Too Lazy to Kill",No;

	PatayanNa:
	mes "[ PvP Warper ]";
	mes "You Made the Right Choice!";
	next;
	mes "Let's Go!";
	warp "guild_vs2",0,0;
	L_All:
	announce "[ PvP Warper ] Announcer:  "+strcharinfo(0)+" has Enter the Room ",0;
	close;


	No:
	mes "[ PvP Warper ]";
	mes "Are you Scared?";
	next;
	mes "Come Back Again, if you already have the Guts!";
	close;

//WAITING ROOM updates every 2.5 second
OnInit:
    	while(1) {
	delwaitingroom;
	waitingroom "PvP Warper ["+getmapusers("guild_vs2")+"]",0;
	sleep 2500; //2.5 seconds
	}
	end;
}

// Mapflags
guild_vs2	mapflag	nowarp
guild_vs2	mapflag	nowarpto
guild_vs2	mapflag	pvp	on
guild_vs2	mapflag	noteleport
guild_vs2	mapflag	nosave	SavePoint

try this. updates based in the map "guild_vs2" every 2.5 seconds.

 

Ohh my GOD ! Thanks LuLu !

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