this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add brief info to readme

nnuuvv 1701fa88 b7e6c374

+16
+14
README.md
··· 1 1 # condition_overload 2 2 3 + Wiki search for [Condition Overload (Mechanic)](https://wiki.warframe.com/w/Condition_Overload_(Mechanic)) 4 + 5 + Made for use in twitch bots. Using [MixItUp](https://mixitupapp.com)'s [external program action](https://wiki.mixitupapp.com/en/actions/external-program-action). 6 + 7 + ### Example: 8 + 9 + `!gunCO braton` 10 + in chat, runs: 11 + `[path-to]/condition_overload braton` 12 + which prints: 13 + `The 'Braton Vandal / Braton Prime / MK1-Braton / Braton' 'Incarnon Form Radial Attack AoE' has a poor interaction with GunCO.` 14 + into standard out, to be sent as a response. 15 + 16 + 3 17 ## Development 4 18 5 19 ```sh
+2
src/condition_overload.gleam
··· 15 15 argv.load().arguments 16 16 |> list.reduce(fn(acc, x) { acc <> " " <> x }) 17 17 |> result.map(string.lowercase) 18 + 18 19 case search { 19 20 Error(_) -> io.println("Please provide a search term") 21 + 20 22 Ok(search) -> { 21 23 do_search(search) 22 24 }