- Description
- Reviews (0)
- Version History
- Discussions (6)
- Setup
- Product Enquiry
Description
Description
Convert png images into boomer firework patterns.
Permission:
MyPattern.use – Required to use chat command.
Chat Command:
/mypattern url
URL must be a link to a png image.
How To Use:
Place a Pattern Boomer firework down.
While looking at it use the chat command and it will convert the image into colored dots.
It tries to optimize the dot grid as much as it can by resizing the original image and ignoring colors that don’t exist.
Support:
If support is required please use the discord support in the lone.design discord channel.
It can be found under #Customer_Support
Using the discussion or review pages on the website it will go unnoticed since there is no notification given to vendors when they get held back for moderation.
Config:
Settings around the conversion can be changed in the config file.
Limit Max Amount Of Dots
Resolution Of Boomer Pattern
Resizer Interpolation Mode
Limit Color Palette To Vanilla (Limits To 8 Colors)
Crop Black Edges (No Black Boomer So Saves Space)
Max File Size
Video:
Full Oxide Support
No Carbon Support
Reviews (0)
Reviews
There are no reviews yet.
Only logged in customers who have purchased this product may leave a review.
Version History
- Updated For Sep ForceWipe
- Added Scale Arg in chat command.
Discussions (6)
6 thoughts on "MyPattern"
Leave a Reply to BadCop Cancel reply
Setup
Plugin FAQ – How do I use this .zip/.7z file I just purchased on my server?
• First, you want to unzip the file. You can do so by just double-clicking it to open, then drag the contents to the desired location (you may need to install an external unzipping software if you don’t already have one such as 7zip or winrar)
• Next you will find either a structure of folders or just the .cs file itself (it’s the actual plugin file itself).
• After that just install the .cs (plugin file) into your …/oxide/plugins/ folder where you will install plugins you ever need to.
Additionally, here’s a great video that easily covers adding a plugin to your server if you need! https://youtu.be/yWC_p97FhQA
• Installation is not included with any products on the site, however, if needed we may assist if you reach out to our support.
Currently all products on Lone.Design will be contained within a zipped file which is the .7z or .zip that you see. I believe windows 10 and up can unzip on its own without 3rd party tools, but in that case, if you’re unfamiliar with zipped files here are 2 programs I recommend to easily unzip zipped files.
Video On How to Zip and Unzip: https://youtu.be/Ep-L3PjBPCk (TechInsider Youtube Channel)
Zipping/Unzipping Tools
Winrar https://www.rarlab.com (I used to use for years, but works great!)
7zip https://www.7-zip.org/a/7z2107-x64.exe (the one I use currently)
<3
<3
Time to crash the server :]
images are loading upside down ? love the plugin
Thats odd since the image processing library I used loads images in from reverse which would make them backwards then uses this function in the plugin to correct that.
“newImage.RotateFlip(RotateFlipType.Rotate180FlipX);”
Could you try comment out that line and report back since im going to guess your server doesn’t have the standard library installed.
If you dont know what comment out means then open the plugin in notepad.
Search for “newImage.RotateFlip(RotateFlipType.Rotate180FlipX);”
Change that to “//newImage.RotateFlip(RotateFlipType.Rotate180FlipX);”
adding 2 forward slashes don’t include the “” quotations.
hey thanks for the reply! the lines are as follows
Bitmap newImage = new Bitmap(resizeImage(CropImg(new Bitmap(new System.IO.MemoryStream(response))), new Size(config.BoomerRes, config.BoomerRes))); //Resize
newImage.RotateFlip(RotateFlipType.Rotate180FlipX);
this is what is currently set in the plugin
also i use imagelibary in my server as well