Jump to content

Quests, Games: Endless Tower Instance with Difficulty


Recommended Posts

  • 3 weeks later...

  • Group:  Members
  • Topic Count:  271
  • Topics Per Day:  0.08
  • Content Count:  790
  • Reputation:   20
  • Joined:  11/21/15
  • Last Seen:  

How can I make this instance 2x a week or 3x a week?

thank you!

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  271
  • Topics Per Day:  0.08
  • Content Count:  790
  • Reputation:   20
  • Joined:  11/21/15
  • Last Seen:  

On 12/4/2024 at 7:31 AM, lipezpe said:

Hello Guys!

Help pls? 2023 version.

@Louis T Steinhil pls

image.png.b2548053ba7373f9c1ea806aa6379ca5.png

Check this line

.@level_mode = select(
							"[ Level 50+ ] Normal", 
							"[ Level 100+ ] Veteran", 
							"[ Level 150+ ] Nightmare",
							"[ Level 200+ ] Hell",
							"[ Level 240+ ] ^ff0000Torment^000000"
						);
						$ENDLESSMODE[getcharid(1)] = .@level_mode;
						set .@required_level, 0;

						if (.@level_mode == 1) { .@required_level = 50; }
						else if (.@level_mode == 2) { .@required_level = 100; }
						else if (.@level_mode == 3) { .@required_level = 150; }
						else if (.@level_mode == 4) { .@required_level = 200; }
						else if (.@level_mode == 5) { .@required_level = 255; } // Change this to your server max level

						if (!instance_check_party(getcharid(1), .@online_members_count, .@required_level, 255)) { // Change this to your server max level

 

Link to comment
Share on other sites

  • 5 months later...

  • Group:  Members
  • Topic Count:  271
  • Topics Per Day:  0.08
  • Content Count:  790
  • Reputation:   20
  • Joined:  11/21/15
  • Last Seen:  

Hi @Louis T Steinhil can I ask if you can add a command how many E_tower points you have, so you dont need to bother going back to the NPC

also I tried to finish the instance how ever no points acquired no errors in console, also I cant enter back to fight naugth seiger is that normal on your script

 

Thank you!

Additional : Also no announcement upon finishing the dungeon

using the torch to jump in some floors have this error in console

image.png.4ee424753ac10bfeebd0514a9090b1dc.png

 

where can I find this NPC tried to warp on it but no NPC shows

2@tower,71,1,0	script	#Manager Mode2	406,{
	callfunc "F_GM_NPC";
	mes "Please enter the password.";
	set .@i, callfunc("F_GM_NPC","dmc2008",1);
	next;
	if (.@i == 1) {
		mes "This NPC manages the tower from the 26st to the 50th Level.";
		mes "Please enter the Level number to open.";
		mes "(i.g.: 26F->26, 50F->50)";
		input .@input,26,50;
		next;
		if (.@onput < 26 || .@input > 50)
			mes "You can only enter a number from 26 to 50.";
		else {
			donpcevent instance_npcname(.@input+"FGate102tower")+"::OnEnable";
			mes "*** Level "+ .@input + " is now being opened. ***";
		}
	}
	close;
}

 

Edited by AinsLord
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  248
  • Reputation:   110
  • Joined:  06/02/12
  • Last Seen:  

4 hours ago, AinsLord said:

where can I find this NPC tried to warp on it but no NPC shows

The NPC is in the empty space between floors. You can use @jump 53 8 to get close to it.
image.thumb.png.6f85c5b7ee62f858abb89d849c30435c.png

4 hours ago, AinsLord said:

can I ask if you can add a command how many E_tower points you have, so you dont need to bother going back to the NPC

-	script	ShowEndlessTowerPoints	-1,{
OnAtcommand:
	.@size = getarraysize($@difficulty_mode$);
	if (!.@size) {
		dispbottom "Please talk to the Tower Protection Stone first.";
		end;
	}
	dispbottom "====================";
	dispbottom "ENDLESS TOWER POINTS";
	for (.@i = 1; .@i < .@size; .@i++)
		dispbottom $@difficulty_mode$[.@i] + ": " + getd("#" + $@var_names$[.@i]);
	dispbottom "====================";
	end;

OnInit:
	bindatcmd "ETpoints",strnpcinfo(3)+"::OnAtcommand";
	end;
}

 

Edited by Racaae
additional answer added
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
Reply to this topic...

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