viewing paste Unknown #13890 | Athena

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
e_tower,78,80,2 script  Endless Reset   406,{
    mes "Purification Tower";
    mes "Do you want to Reset your Endless Tower Quest?";
    menu Yes,R_Tower,No,Dis;
    close;
    
    R_Tower
    if(countitem(6127)  1)
    {
        mes "You dont have a Purification Stone to Reset your Endless Tower Quest";
        close;
    }
    else 
    {
        set .@etower_timer,0;
        set .@etower_timer2,0;
        erasequest 60200;
        erasequest 60201;
        delitem 6127,1;
        mes "^0000ffThe records and aftereffects related to the Endless Tower have been removed. You can generate and enter the Endless Tower again.^000000";
        next;
        set .@etower_timer,0;
        set .@etower_timer2,0;
        erasequest 60200;
        erasequest 60201;
        mes "^0000ffThe records and aftereffects related to the Endless Tower have been removed. You can generate and enter the Endless Tower again.^000000";
        close;
        warp e_tower,75,108;
        end;
    }
    
    Dis
    mes "Purification Tower";
    mes "Come Back Again.";
    close;
 
}
Viewed 628 times, submitted by Guest.