R> PVP Warper /w Full Heal and Item Ban

mybitch

New member
Messages
291
Points
0
Location
Prontera
Requesting a PVP Warper Script that will..

  1. Warp player to guild_vs3 /w full heal
  2. No potions are allowed to be used in the map
  3. If players leave out the map without dying their HP will return back to normal before they go in.
    E.G. Player with 50 HP go to the pvp room and received full heal - because he just want to receive the full heal he will logout  and relog back in game. HP must go back to 50 - Is this possible?
  4. Mmmm could it be possible for the map to be no pots map?

thanks! that's all!

 
Mmmm could it be possible for the map to be no pots map?

@rathena they have a mapflag "mf_noitemconsumption"

But here in Hercu I think we dont have

-- --

Possible via src mod.

 
Last edited by a moderator:
Mmmm could it be possible for the map to be no pots map?

@rathena they have a mapflag "mf_noitemconsumption"

But here in Hercu I think we dont have

-- --

Possible via src mod.
I see. Anyways just the warper with full heal how to do it?

Code:
mapname,x,y,4	script	PvP Warper	438,{percentheal 100,100;warp "guild_vs3",0,0;end;} 
 
Last edited by a moderator:
Mmmm could it be possible for the map to be no pots map?

@rathena they have a mapflag "mf_noitemconsumption"

But here in Hercu I think we dont have

-- --

Possible via src mod.
I see. Anyways just the warper with full heal how to do it?

mapname,x,y,4 script PvP Warper 438,{percentheal 100,100;warp "guild_vs3",0,0;end;} 
Thanks! How to add this.. If players logout from the map and they reconnect their HP will be drained to 10% 

 
Code:
OnPCLogoutEvent:if( strcharinfo(3) == "guild_vs3" ){    percentheal 100,100;    percentheal -90,-90;}end; 
 
Back
Top