Menu

Script: Reset.gs

Reset Code for the Crafting System

function reset()
{
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];

//Deletes all content in the Component Columns and the Done Columns
sheet.getRange(“C10:L20”).setValue(“”);
}