You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 17, 2023. It is now read-only.
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 )