Jump to content
  • 0

Endless Tower Cooldown


Question

Posted (edited)

I can't seem to reduce the Endless Tower Cooldown? could anyone help me?

from the Endless Tower Script

set .@party_id,getcharid(1);
set .@ins_mas,getpartyleader(.@party_id,2);
set .@p_name$,getpartyname(.@party_id);
set .@p_reader$,strcharinfo(0);
set .@md_name$,"Endless Tower";
set .@p_name2$,strcharinfo(0);

set .@etower_timer,checkquest(60200,PLAYTIME); // 1 day
set .@etower_timer2,checkquest(60201,PLAYTIME); // 4 hours

set .@dun_lim_time,etower_timer+3600; // 1 day
set .@dun_lim_time2,etower_timer+14400; // 4 hours
set .@dun_cur_time,gettimetick(2);
set .@dun_ent_t,(.@dun_lim_time - .@dun_cur_time);
set .@dun_h,(.@dun_ent_t / 3600);
set .@dun_m,(.@dun_ent_t - (.@dun_h * 3600)) / 60;
set .@dun_s,.@dun_ent_t - ((.@dun_h * 3600) + (.@dun_m * 60));

from quest DB

60200,3600,0,0,0,0,0,0,"Endless Tower Effect"
60201,14400,0,0,0,0,0,0,"Endless Tower Time Limit"

Edited by Vitrue

7 answers to this question

Recommended Posts

Posted

Quest DB Structure:

// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title

For Endless Tower:

60200,3600,0,0,0,0,0,0,"Endless Tower Effect"
60201,14400,0,0,0,0,0,0,"Endless Tower Time Limit"

3600 and 14400 is the time limit (duration). Try changing these first then try the script.

Posted

Quest DB Structure:

// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title

For Endless Tower:

60200,3600,0,0,0,0,0,0,"Endless Tower Effect"
60201,14400,0,0,0,0,0,0,"Endless Tower Time Limit"

3600 and 14400 is the time limit (duration). Try changing these first then try the script.

I tried it already but nothing happened.

Posted (edited)

Also, search and change the time in the script:

set .@dun_lim_time,etower_timer+604800; // 1 week
set .@dun_lim_time2,etower_timer+14400; // 4 hours

also did that nothing changed. would be nice if there is a working script for the purification stone

EDIT : i tried editing those again, the result is like this for the old chars who entered the tower before i changed those values.

555549_3084716535894_2093785269_n.jpg

Edited by Vitrue
Posted (edited)

Setup a NPC to remove previous variables.

 set etower_timer,0;
 erasequest 60200;
 erasequest 60201;
 set party_instance_id,0;

I'll try this now, thanks

EDIT : this worked thanks, also i think this could be used as a custom Purification NPC for the Endless Tower, TYVM @Joseph

Edited by Vitrue
  • Upvote 1

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