Jump to content
  • 0

Requesting MVP Warper Timer


Checkmate

Question


  • Group:  Members
  • Topic Count:  96
  • Topics Per Day:  0.02
  • Content Count:  554
  • Reputation:   14
  • Joined:  09/24/12
  • Last Seen:  

Is there anyone have script which has mvp warper that have special time appearing on it...

Example mvp warper that only alppear on sunday and saturday only for certain time, the after that the npc was dissapear... 

And also with the value like zeny or cash piint or item to enter it..

 

Thx

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  48
  • Reputation:   0
  • Joined:  12/07/11
  • Last Seen:  

Don't know if it works but I think it's nearly to this what you want:

prontera,100,100,3	script	MvP Warper	100,{

	set .@n$, "[Mvp Warper]";
	set .@Price, 150000;
	set .@map$, "iz_dun00";
	set .@x, 100;
	set .@y, 100;
	
	mes .@n$;
	mes "I can warp you to the mvp arena, but this cost you " + .@Price + " Zeny.";
	mes "Do you want to warp?";
	next;
	if(select("No:Yes") == 1)
	{
		mes .@n$;
		mes "Good day then.";
		close;
	}
	if(Zeny < .@Price)
	{
		mes .@n$;
		mes "You haven' enough zeny to use this.";
		mes "Come back if you have enough.";
		close;
	}
	mes .@n$;
	mes "Here you go!";
	close2;
	set Zeny, Zeny - .@Price;
	warp .@map$, .@x, .@y;
	end;

OnSat0000:
	enablenpc strnpcinfo(0);
	announce "The MvP Warper appears!",bc_all;
	end;

OnSun2359:
	disablenpc strnpcinfo(0);
	announce "The MvP Warper is going now! He come back on saturday again.",bc_all;
	end;

OnInit:
	disablenpc strnpcinfo(0);
	end;
}

 

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