lipezpe Posted December 3, 2024 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 14 Reputation: 0 Joined: 09/01/15 Last Seen: January 6 Share Posted December 3, 2024 Hello Guys! Help pls? 2023 version. @Louis T Steinhil pls Quote Link to comment Share on other sites More sharing options...
AinsLord Posted December 20, 2024 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 3 hours ago Share Posted December 20, 2024 How can I make this instance 2x a week or 3x a week? thank you! Quote Link to comment Share on other sites More sharing options...
AinsLord Posted December 20, 2024 Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 3 hours ago Share Posted December 20, 2024 On 12/4/2024 at 7:31 AM, lipezpe said: Hello Guys! Help pls? 2023 version. @Louis T Steinhil pls 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 Quote Link to comment Share on other sites More sharing options...
AinsLord Posted 12 hours ago Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 3 hours ago Share Posted 12 hours ago (edited) 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 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 12 hours ago by AinsLord Quote Link to comment Share on other sites More sharing options...
Racaae Posted 11 hours ago Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 248 Reputation: 111 Joined: 06/02/12 Last Seen: 7 hours ago Share Posted 11 hours ago (edited) 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. 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 7 hours ago by Racaae additional answer added 1 Quote Link to comment Share on other sites More sharing options...
AinsLord Posted 3 hours ago Group: Members Topic Count: 271 Topics Per Day: 0.08 Content Count: 791 Reputation: 20 Joined: 11/21/15 Last Seen: 3 hours ago Share Posted 3 hours ago (edited) 8 hours ago, Racaae said: The NPC is in the empty space between floors. You can use @jump 53 8 to get close to it. - 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; } Thanks sir appreciated how about this error i've been checking this one on how to fix it hehehe still no luck using the dust item to teleport from floors also the access in floor to the 101F EDIT: @Racaae seems no NPC on my end Edited 3 hours ago by AinsLord Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.