Comments: 24
DoraeArtDreams-Aspy [2017-08-13 17:35:39 +0000 UTC]
How do i get the binary brush non spray
👍: 0 ⏩: 1
obtusity In reply to DoraeArtDreams-Aspy [2017-09-10 01:50:21 +0000 UTC]
Sorry for the really late reply, work and personal circumstances left me with no FireAlpaca time for a couple of months.
If you are after a simple pixel line brush, either try the Dot tool in FireAlpaca (third one down under the Eraser tool), or for a slightly better line try the Pen brush set to 1.2 width, double-click on the brush to turn off Width by Pressure, and turn off Antialiasing at the top of the window.
👍: 0 ⏩: 1
Manga-Samurai [2015-07-06 05:47:26 +0000 UTC]
Please show me the download link for brush script
👍: 0 ⏩: 1
obtusity In reply to Manga-Samurai [2015-07-06 07:48:19 +0000 UTC]
On the right hand side of fav.me/d8stghl - above the "More from obtusity" section, you should see a download button for the zip file containing the brush scripts.
👍: 0 ⏩: 1
obtusity In reply to Manga-Samurai [2015-07-06 13:13:39 +0000 UTC]
To load a brush script, click the Add Brush (Script) button at the bottom of the brush list in FireAlpaca (or MBP) and browse to the unzipped .bs file.
👍: 0 ⏩: 2
obtusity In reply to obtusity [2015-07-06 13:16:51 +0000 UTC]
On Windows 7 or 8 you can unzip the brush scripts from the zip file by right-clicking on the zip file and selecting Extract All.
👍: 0 ⏩: 0
obtusity In reply to Manga-Samurai [2015-07-06 13:25:01 +0000 UTC]
My apologies, I couldn't understand what you meant when you asked for the download link to "the program", but not the zip file. So I was guessing at what you might have been having trouble with, and trying to make each step explicit.
👍: 0 ⏩: 1
Manga-Samurai In reply to obtusity [2015-07-06 13:28:31 +0000 UTC]
It's okay, it's just I like making brushes in firealpaca, it's fun
👍: 0 ⏩: 1
obtusity In reply to Manga-Samurai [2015-07-06 13:42:51 +0000 UTC]
Bitmap brushes are easier if you are artistic.
Making brush scripts is more like programming - you write a small program using the Lua programming language www.lua.org/ along with some special functions that are specific to these paint programs (an application programming interface, or API), documented here: firealpaca.com/bs (in Japanese but Google Translate does a good job of making it clear), with some good examples here d.hatena.ne.jp/MDIAPP/20100311 (Google Translate again).
👍: 0 ⏩: 1
Manga-Samurai In reply to obtusity [2015-07-06 14:54:13 +0000 UTC]
Wow, that's a lot of programing but I don't want to download too much, last time I downloaded a lot of different programs and I got a virus that shut down my laptop and broke it, my old one
👍: 0 ⏩: 1
obtusity In reply to Manga-Samurai [2015-07-07 00:46:46 +0000 UTC]
One nice thing is that you don't have to download anything, the framework is already built in to the paint software. Those pages are just documentation, you can look them up or print them out as nbeeded.
All you need is a text editor - you can use Notepad which is already included in Windows (or TextEdit on Macs, I think) - I've done this for a couple of brush scripts. A programmer's editor is nicer to work with, but not essential.
However, if you are more interested in the art side than the technical side, writing brush scripts might not be as much fun as creating bitmap brushes.
👍: 0 ⏩: 1
Manga-Samurai In reply to obtusity [2015-07-07 10:57:23 +0000 UTC]
Wow, I use notepad and writing the brush scrips is when you write those codes right? Sounds complicated and hard, yeah I think I would rather use brush script
👍: 0 ⏩: 1
obtusity In reply to Manga-Samurai [2015-07-07 23:29:35 +0000 UTC]
Yes, exactly!
For example, here is a simple brush script similar to the built in Pen brush:
function main( x, y, p )
local w = bs_width()
local r, g, b = bs_fore()
bs_ellipse(x, y, w , w, 0, r, g, b, bs_opaque() *255)
return 1
end
bs_setmode(1)
If you were to cut-and-paste that into Notepad, save it as ScriptPen.bs, then load it with the Add Brush (Script) button, you would have a new ScriptPen brush, very similar to the standard Pen brush.
If you like programming, it's fun to play with, but if you prefer visually creating brushes, bitmap brushes are more fun.
👍: 0 ⏩: 1
Manga-Samurai In reply to obtusity [2015-07-07 23:38:04 +0000 UTC]
Thank you, i'm going to save that now, and you are very intelligent, you remind me of that guy from the hunger games with the big brain
👍: 0 ⏩: 0
obtusity In reply to Manga-Samurai [2015-07-06 13:10:16 +0000 UTC]
These are brush scripts for FireAlpaca (a free paint program) at firealpaca.com/en and MediBang Paint (formerly CloudAlpaca), which is FireAlpaca plus cloud features, also free, at medibangpaint.com/en/
Brush scripts are text files (containing scripts - little programs) that are loaded by FireAlpaca and MBP.
All you need is FireAlpaca (or MediBang Paint) and one of the text-format script files in the zip file that I pointed to - there is no other "program" (the brush script does not get compiled to a separate executable program).
👍: 0 ⏩: 1
RedVioletPanda [2015-06-12 04:49:50 +0000 UTC]
Thanks for making these
👍: 0 ⏩: 0
mymilkiaen [2015-06-06 20:07:54 +0000 UTC]
Just wanted to say my thanks for working on brushes like these, these are really neat and helpful!
👍: 0 ⏩: 1
obtusity In reply to mymilkiaen [2015-06-07 04:57:39 +0000 UTC]
Thanks - I'm glad you liked them!
👍: 0 ⏩: 0