Jump to content

Question

Posted

Hello guys, just need a bit of help with my instance entry

 

			mes "Confirmed the party has been made. Would you like to reserve entrance to the Endless Tower?";
			next;			
			switch(select(
			( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$+": "",
			( .@party_id && .@has_instance )? "Enter the dungeon": "",
			"Return to Alberta","Cancel")){

image.png.9f5bbbf1763def7b20e34a00c900fe1b.png

What could be the right one? Thanks in advance!

8 answers to this question

Recommended Posts

  • 0
Posted (edited)

try change at this part

( .@party_id && .@has_instance )? "Enter the dungeon": "",

change it into

( .@party_id && .@has_instance )? "Enter the dungeon: ",

 

Edited by hendra814
  • 0
Posted (edited)
mes "Confirmed the party has been made. Would you like to reserve entrance to the Endless Tower?";
next;
switch(select(
	( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$+": ",
	( .@party_id && .@has_instance )? "Enter the dungeon: ",
	"Return to Alberta",
	"Cancel"
)){
	// Cases go here
}

 

Edited by Pride
  • 0
Posted
( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$+": "",

change to

( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$:"",

 

  • 0
Posted
25 minutes ago, Pride said:
mes "Confirmed the party has been made. Would you like to reserve entrance to the Endless Tower?";
next;
switch(select(
	( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$+": ",
	( .@party_id && .@has_instance )? "Enter the dungeon: ",
	"Return to Alberta",
	"Cancel"
)){
	// Cases go here
}

 

Still error sir

image.thumb.png.65ba5d5e50754218bf9eba69e98dca69.png

  • 0
Posted
25 minutes ago, pajodex said:
( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$+": "",

change to

( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$:"",

 

Still error sir

image.thumb.png.5ab85f9c733fc5908c34e47641f4bc19.png

  • 0
Posted (edited)

are you referring to me? Check my suggestion closely.

 

PS: Keep this part like this..

( .@party_id && .@has_instance )? "Enter the dungeon": "",

 

PPS: If you are still confused, it should look like this
 

			mes "Confirmed the party has been made. Would you like to reserve entrance to the Endless Tower?";
			next;			
			switch(select(
			( .@party_id && .@is_leader && !.@has_instance )? "Generate dungeon "+.@md_name$: "",
			( .@party_id && .@has_instance )? "Enter the dungeon": "",
			"Return to Alberta","Cancel")){

 

Edited by pajodex

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