Jump to content
  • 0

R> VIP Warper


DairyPresto

Question


  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  145
  • Reputation:   1
  • Joined:  04/03/17
  • Last Seen:  

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

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  70
  • Reputation:   21
  • Joined:  11/08/15
  • Last Seen:  

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; 
				}
		   }
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  145
  • Reputation:   1
  • Joined:  04/03/17
  • Last Seen:  

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

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  70
  • Reputation:   21
  • Joined:  11/08/15
  • Last Seen:  

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  145
  • Reputation:   1
  • Joined:  04/03/17
  • Last Seen:  

12 hours ago, Scanty said:

Thank so much!

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