Jump to content
  • 0

Endless Tower Cooldown


Virtue

Question


  • Group:  Members
  • Topic Count:  92
  • Topics Per Day:  0.02
  • Content Count:  354
  • Reputation:   22
  • Joined:  11/17/11
  • Last Seen:  

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
Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  92
  • Topics Per Day:  0.02
  • Content Count:  354
  • Reputation:   22
  • Joined:  11/17/11
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  92
  • Topics Per Day:  0.02
  • Content Count:  354
  • Reputation:   22
  • Joined:  11/17/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  341
  • Reputation:   43
  • Joined:  01/10/12
  • Last Seen:  

Setup a NPC to remove previous variables.

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  92
  • Topics Per Day:  0.02
  • Content Count:  354
  • Reputation:   22
  • Joined:  11/17/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  125
  • Reputation:   2
  • Joined:  08/27/12
  • Last Seen:  

@TS

how did you make this thing work? Can someone help me? I need it also =)

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