What value do I need to reset for Endless Tower timer?

bWolfie

I'm the man
Messages
850
Points
0
Location
Alberta, Midgard
Github
bWolfie
Emulator
As title says - I want to make an npc that can reset your endless tower timer. Which values do I need to set for this?

Thanks

 
If you want to keep testing endless tower go in game and type:

@set etower_timer 0

Oooh you want an NPC....


@etreset (endless tower reset) for your convenience if you forget the etower_timer variable...
 

Code:
-    script    EndlessTReset    -1,{
 
OnAtInstanceReset:
etower_timer = 0;
dispbottom "Endless Tower re-entrance timer deleted.";
end;
 
OnInit:
bindatcmd "etreset",strnpcinfo(0)+"::OnAtInstanceReset";
end;
}
 
Last edited by a moderator:
If you want to keep testing endless tower go in game and type:

@set etower_timer 0

Oooh you want an NPC....

@etreset (endless tower reset) for your convenience if you forget the etower_timer variable...

Code:
-    script    EndlessTReset    -1,{
 
OnAtInstanceReset:
etower_timer = 0;
dispbottom "Endless Tower re-entrance timer deleted.";
end;
 
OnInit:
bindatcmd "etreset",strnpcinfo(0)+"::OnAtInstanceReset";
end;
}
PexKm8s.png
 
Last edited by a moderator:
etower_timer = 0;
erasequest 60200;
erasequest 60201;
party_instance_id = 0;

try it or use NPC Purification Stone#et2 in endless_tower script

 
Last edited by a moderator:
Back
Top