Search the Community
Showing results for tags 'golang'.
Found 2 results
-
ARMAGO Version 0.3 Hi, good news if you like golang like me, I give you a golang template that allows to quickly create extensions in .dll or .so You can fork : Github ARMAGO Template You can also find a full french article on Nestheat which describes how it works: https://arma409626711.wordpress.com/2018/06/16/arma-creer-une-extension-en-golang/ Edit: Please if you like it, don't forget to rate this topic :)
-
ArmaWS Lastest Version : 0.2 by Code34 ____________________________________________________________________________________________________________________ Direct Download from Dropbox Github: https://github.com/code34/armaws_x64 ArmaWS is a json client extension that permits from Arma to exchange with remote host json files. Exemple1 Send a JSON file to httpbin server and retrieve a json file convert into an arma array private _armaws = "new" call OO_ARMAWS; private _params = [["username","code34"],["message","hello world"],["id", 103],["type","soldier"]]; ["setUrl", "https://httpbin.org/post"] call _armaws; _result = ["callWs", _params] call _armaws; hintc format["%1",_result]; Exemple2 Send a message to a chan text on Discord through a webhook private _armaws = "new" call OO_ARMAWS; private _params = [["username","R2D2"],["content","hello world"]]; ["setUrl", yourwebhookurl] call _armaws; ["callWs", _params] call _armaws; README DOCUMENTATION Have fun 🙂