Hi @GM Winter,
I have created script. This is just a basic script which I think would answer your request.
So basically, this script requires an item to enter but it doesn't get or delete the item from your user's inventory.
What you have to do is create an usable item which item script is will give the user a rental etc item meaning the ticket will have a duration on their inventory.
I hope it makes sense.
prontera,150,150,5 script Guild Room 123,{
mes "[Guild Room]";
mes "Hey, there. Do you want to enter Guild";
next;
switch(select("Yes:No")) {
case 1:
if (countitem(1234) > 0) {
mes "[Guild Room]";
mes "Oh, awesome, I see you have a ticket to enter the Guild Room.";
mes "Ready? Let's do this.";
next;
warp "payon",123,123;
close;
}
else {
mes "[Guild Room]";
mes "Dude, you do not have the ticket to enter the Guild Room.";
mes " ";
mes "Sorry but you cannot enter.";
close;
}
case 2:
mes "[Guild Room]";
mes "Well, come back if you change your mind.";
close;
}
}
Change the 1234 to your etc item ID.