Making your first misskey plugin
Leah 4/1/2024Do you want to make a plugin for all the various key software that exist out there? Well in this blog I will be writing about making a basic plugin and explaining the basics of AIscript. Later I may make a follow-up post on more advanced stuff related to misskey plugins, widgets, and plays development. The basics of AIscript AIscript is a weird very specific language that won't compile if a space is missing or something like that. Usually in other languages, this is not an issue, but here you better keep all your code clean and organized because otherwise it won't compile. This has stumped me many times before so make sure you pay attention to this. I'm not going to teach the very basic syntax since that can be viewed here on github in English. Instead, I'll talk about the things it doesn't go over. This basic program below won't run let a=10 if a==10{ print(a) } The reason for this is that there is not a space between the 10 and the opening squiggly bracket. Keep in mind it doesn
