Migrating from the Old Quickstart
Follow all of the steps in the Prerequisites page to setup your new project.
- To start, go to the
LConstants
class and copy the values from your localizer's default values from its specific page in these docs. - Then, paste them into the
static{}
block of theLConstants
class in the new Quickstart. - Now, open your Localizer in your previous project / repository and copy the values from the localizer, and modify the default values to match your values.
- Next, open the
FConstants
class. - Set the Localizer to the correct value by setting
FollowerConstants.localizers = Localizers.[LOCALIZER];
where[LOCALIZER]
is the localizer you are using. - Open your previous project / repository and copy the MODIFIED values from the
FollowerConstants
class. - Modify the lines in the
static{}
block of theFConstants
class in the new Quickstart to match the values you had before. - If you have any other values that you have changed in the
FollowerConstants
class, that are not covered in the quickstart, copy them over as well by creating a new line in thestatic{}
block of theFConstants
class. Then doFollowerConstants.[VARIABLE] = [VALUE];
, where[VARIABLE]
is the variable you want to change from the default and where[VALUE]
is the value you want to set it to. - Make sure to update your opmodes to follow the guidelines that Constants sets down.