Jump to content
  • 0

[ASK] How to disable some buff when enter pvp


DK77

Question


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  06/30/17
  • Last Seen:  

Okay this is my pvp script

prontera,160,189,4	script	PVP Arena	808,{

set .npcname$,"^0147FA[ PVP Warper ]^000000";

mes .npcname$;
mes "[Arena Lists & Player's Count]";
mes "[Solo] [ ^00FF33" + getmapusers("guild_vs3") + "^000000 / 100 ]";
mes "[Party] [ ^00FF33" + getmapusers("pvp_y_1-1") + "^000000 / 100 ]";

switch(select("Solo:Party")) {

		Case 1:	
			if(getmapusers("guild_vs3") == 100) goto L_Full;
			warp "guild_vs3",0,0;
			end;
		Case 2:	
			if(getmapusers("pvp_y_1-1") == 100) goto L_Full;
		
			warp "pvp_y_1-1",0,0;
			end;

L_Full:
	mes .npcname$;
	mes "Sorry you cant go in now";
	mes "The room is full now";
	mes "Please try again later";
	close;
	}

end;
}

//MAPFLAGS
pvp_y_1-1	mapflag	gvg	off	
guild_vs3	mapflag	gvg	off
pvp_y_1-1	mapflag	pvp
guild_vs3	mapflag	pvp
pvp_y_1-1	mapflag	nosave	SavePoint
guild_vs3	mapflag	nosave	SavePoint
pvp_y_1-1	mapflag	noteleport
guild_vs3	mapflag	noteleport
pvp_y_1-1	mapflag	nowarp
guild_vs3	mapflag	nowarp
pvp_y_1-1	mapflag	nowarpto
guild_vs3	mapflag	nowarpto
pvp_y_1-1	mapflag	nomemo
guild_vs3	mapflag	nomemo
pvp_y_1-1	mapflag	nobranch
guild_vs3	mapflag	nobranch
guild_vs3	mapflag	pvp_noguild

For example i want to disable assump , where must i put

sc_end 375; //Assumptio 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 1

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  


sc_end SC_ASSUMPTIO ;
warp "guild_vs3",0,0;

 

Just add it before warp command

Link to comment
Share on other sites

  • 1

  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  1137
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  06/30/17
  • Last Seen:  

how to disable skill assump inside map guild_vs3 ?

Edited by DK77
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  06/30/17
  • Last Seen:  

okay done , thx you 

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