DEPRECATED: The server data developed for the tmwAthena server used by The Mana World Legacy. All further development will take place in the "server-data" repo.
//
025-1.gat,47,84,0 script reset 145,{
mes "Do you want to reset Rossy Quest?";
menu
"Reset every variable of the quest.", -,
"Set Rossy_Quest.", L_Set,
"Reset Alrd_Been.", L_reSet,
"Do not reset.", L_No;
set Rossy_Quest, 0;
set cavefights, 0;
set Alrd_Been, 0;
set FLAGS, FLAGS & ~FLAG_ROSSI_COMPLETED;
L_No:
close;
L_reSet:
set Alrd_Been, 0;
close;
L_Set:
mes "value";
input @name$;
set Rossy_Quest, @name$;
close;
}