Jump to content
  • 0

Question

Posted

Requesting an NPC... located at prontera 150 150 name VIP warper 

>NPC check if player has an VIP Badge ( #7729 ) message " hello master i'm a vip warper where did you want to warp > Choices > Morning woe ( warp on coordinates,x,y )
> Afternoon woe ( warp on coordinates,x,y ) > Evening woe > (  ( warp on coordinates,x,y ) , VIP badge still on inventory .


Thanks in advance

4 answers to this question

Recommended Posts

  • 0
Posted

Option 1: 

prontera,150,150,4	script	Warper	939,{	

	if (countitem(7338) < 1) 
	{
		mes "[Waper]";
		mes "Sorry, you don't have VIP Badge";
		close;
	} else {
			mes "hello master i'm a vip warper where did you want to warp";
			next;
			switch(select("Morning WOE:Evening WOE")) 
		{
		case 1:
			warp "prontera",150,151;
			break;
		case 2:
			warp "prontera",150,152;
			break;
		}
	
	

			}	

}

 

Option 2:

prontera,150,150,4	script	Warper	939,{
	if (countitem(7338) < 1) 
	{
		mes "[Waper]";
		mes "Sorry, you don't have VIP Badge";
		close;
	} else {
		mes "hello master i'm a vip warper... blaabla.";
		if (gettime(3)>= 6&&gettime(3)<= 12) {
		select ("Morning WOE");
		warp "prontera",150,151; 
	} 	if (gettime(3)>=13&&gettime(3)<=18) {
		select ("Evening WOE");
		warp "prontera",150,152; 
				}
		   }
}

 

  • 0
Posted
3 hours ago, Scanty said:

Option 1: 


prontera,150,150,4	script	Warper	939,{	

	if (countitem(7338) < 1) 
	{
		mes "[Waper]";
		mes "Sorry, you don't have VIP Badge";
		close;
	} else {
			mes "hello master i'm a vip warper where did you want to warp";
			next;
			switch(select("Morning WOE:Evening WOE")) 
		{
		case 1:
			warp "prontera",150,151;
			break;
		case 2:
			warp "prontera",150,152;
			break;
		}
	
	

			}	

}

 

Option 2:


prontera,150,150,4	script	Warper	939,{
	if (countitem(7338) < 1) 
	{
		mes "[Waper]";
		mes "Sorry, you don't have VIP Badge";
		close;
	} else {
		mes "hello master i'm a vip warper... blaabla.";
		if (gettime(3)>= 6&&gettime(3)<= 12) {
		select ("Morning WOE");
		warp "prontera",150,151; 
	} 	if (gettime(3)>=13&&gettime(3)<=18) {
		select ("Evening WOE");
		warp "prontera",150,152; 
				}
		   }
}

 

Thank for the fast reply. 1 do more favor i got an error when clicking npc,
can you please make this quote on pastebin? :) thanks

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...