Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

How to add a custom achievement

MyFnf edited this page Mar 8, 2023 · 1 revision

adding a achievement

instead of replacing a current achievement, you can code it in!

copy this ( don't matter which one you choose, haxe or json [ your choice which is easier, you can NOT do both btw. ] ):

JSON

{
 "Achievement" : [
    {
      "AchievementName" : "wet stuff",
      "AchievementIcon" : "achi-wet",
      "AchievementDescription" : "this is example stuff! replace to add your own!",
      "AchievementData" : false 
    }
 ]
}

HAXE

package;

class achievements {
    public static var CustomAchievements:Array<Dynamic> - [ //Name, Discription, Icon, Data
        ["coolswag", "this is a example! replace to add your own!", "swag", false] // add a ',' if your adding more than one
    ]
}

you must choose ONE of the options, haxe or json ( json recommended )

Clone this wiki locally