Jump to content
  • 0

Waitingroom on a warp portal?


caspa

Question


  • Group:  Members
  • Topic Count:  194
  • Topics Per Day:  0.04
  • Content Count:  499
  • Reputation:   3
  • Joined:  03/11/12
  • Last Seen:  

how to add waitingroom on a warp portal........

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

  • Use a regular OnTouch NPC instead of a warp portal, then 'waitingroom' OnInit.
  • Place an invisible NPC at the center of your warp portal with 'waitingroom' OnInit.
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

You can also use the warp portal NPC sprite (45)

 

prontera,155,188,0	script	#warp_to_morocc	45,2,2,{
	end; // do nothing when clicked
	
OnTouch: // behave like a warp portal
	warp "morocc", 156,93;
	end;
	
OnInit:
	set .message$, "Enter here to Morroc!     ";
	while (1) {
		set .message$, delchar(.message$+charat(.message$,0),0);
		delwaitingroom;
		waitingroom .message$, 0;
		sleep 200;
	}
}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  194
  • Topics Per Day:  0.04
  • Content Count:  499
  • Reputation:   3
  • Joined:  03/11/12
  • Last Seen:  

alright...... thank you guyz..... =3

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