AiScript

#calckey #aiscript
AiScript V0.11.1 Reference
AiScript V0.11.1 Reference
The last official documentation reference for version 01.11.1 of AiScript from December 5, 2020. This link is using Google Translate because there was no english documentation available at this point.
·translate.google.com·
AiScript V0.11.1 Reference
Plugin API Reference
Plugin API Reference
Google Translate used for this conversion. Tho this is the latest version of the API, I don't think much has changed - all of these options are available in Calckey's version that I can tell. It loads weird, looking like it isn't showing you the reference, but look along the left hand side and you can click on a function to see it.
·translate.google.com·
Plugin API Reference
Misskey / Calckey Hints
Misskey / Calckey Hints
Writing down some hyperlinks to english #AiScript docs, for later reference: - [Getting started](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/get-started.md) - [Syntax](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/syntax.md) - [std](https://github.com/syuilo/aiscript/blob/master/translations/en/docs/std.md) - [Misskey extensions](https://github.com/misskey-dev/misskey/blob/master/packages/client/src/scripts/aiscript/api.ts) RE: Okay, there are [Misskey extensions](https://github.com/misskey-dev/misskey/blob/ea9aeef9d8790db51c59a99927cd47ea9423be88/packages/client/src/scripts/aiscript/api.ts#L5)… So to query the API and display the result, you would write something like this: ``` #answer = Mk:api("admin/emoji/list" {query: "woozy"}) #first_result = answer[1] print(Json:stringify(first_result)) Mk:dialog(first_result.name first_result.url) ``` (📎1) RE: ...
·very.tastytea.de·
Misskey / Calckey Hints