Jump to content
  • 0

VIP Warper


petrock618

Question


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  11
  • Reputation:   0
  • Joined:  01/14/13
  • Last Seen:  

Hello! Does someone think that they could make me a warper that warps players to a VIP area, but it will only warp them if they have the donation VIP Warp Ticket? And if they don't it just tells them they don't have it, or something like that? If possible! :D Love you guys<3

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

if( countitem( <ticketID> ) )
   warp "prontera",155,181;
else
   npctalk "You dont have the ticket.";
end;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  11
  • Reputation:   0
  • Joined:  01/14/13
  • Last Seen:  

Hello, I would like to add a VIP Warper to my server, but I'm kind of confused on how to do it, I would like the NPC to say something like

Hello I can warp you to the VIP room

Then I want the NPC to check for the item 7608

And if they have the item I want the npc to warp them to prt_in 128,39

And if they don't have the ticket,

I want the NPC to say something like have a nice day.

If anyone could help me that would be awesome.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  60
  • Topics Per Day:  0.01
  • Content Count:  562
  • Reputation:   219
  • Joined:  11/22/11
  • Last Seen:  

if( countitem(7608) )
{
warp "prt_in",128,39;
end;
}else
{
mes "Have a nice day";
close;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  28
  • Topics Per Day:  0.01
  • Content Count:  218
  • Reputation:   16
  • Joined:  01/24/12
  • Last Seen:  


prontera,151,183,4 script VIP Warper 714,{
mes "Would you like to enter the VIP Room?";
menu "No I don't.",-,"Yes I do.",L_Yes;
mes "Have a nice day.";
close;

L_Yes:
if(countitem(7608)>=1){
mes "You will now be going to the VIP Room!";
close2;
sleep 500;
warp "prt_in",128,39; } else {
mes "I'm sorry but you don't meet the requirements!";
close; }
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  1302
  • Reputation:   77
  • Joined:  12/04/12
  • Last Seen:  


if( countitem( <ticketID> ) )

    warp "prontera",155,181;

else

    npctalk "You dont have the ticket.";

end;

 

emistry help me..

 

prontera,143,133,5 Donation warper 123,{

if( countitem( <ticketID> ) )

warp "prontera",155,181;

else

npctalk "You dont have the ticket.";

end;

}

 

its not works ?

 

can u give full script of simple warper require item for donation room ?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

the script has been shown in previous post...


if( countitem( <ticketID> ) )

    warp "prontera",155,181;

else

    npctalk "You dont have the ticket.";

end;

 

elaborate your problems..show the error....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  1302
  • Reputation:   77
  • Joined:  12/04/12
  • Last Seen:  


prontera,151,183,4 script VIP Warper 714,{
mes "Would you like to enter the VIP Room?";
menu "No I don't.",-,"Yes I do.",L_Yes;
mes "Have a nice day.";
close;

L_Yes:
if(countitem(7608)>=1){
mes "You will now be going to the VIP Room!";
close2;
sleep 500;
warp "prt_in",128,39; } else {
mes "I'm sorry but you don't meet the requirements!";
close; }
}

 

i have to disable the sleep

if not, i cannot warp. hehe

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