Shematica Printer isn't working, even tho I activated.
Posted on 14 August 2019 - 01:57 PM
Hey,I want Players to be able to use Shematica on my Server because I simply feel, why not?
It's okay for me if they want their dream houses but aren't able to build that good! :)
So I donwloaded the Api Plugin moved it into my Server restarted the Server. Imported this code:
Anonymous Quote
"Schematica": {
"disabled": false,
"extra_data": {
"printerEnabled": {
"forced": true
}
}
}
"disabled": false,
"extra_data": {
"printerEnabled": {
"forced": true
}
}
}
but my players still can't use the Filler.
Any ideas?
Last edited on 14 August 2019 - 11:25 PM by TheOnlyOlly
Hey RealLushen,It seems that your configuration file is wrong. If you take a closer look at the example configuration shown on the BadlionClientModAPI page (https://github.com/BadlionNetwork/BadlionClientModAPI), you'll see that the configuration file starts with:
Anonymous Quote
{
"modsDisallowed": {
…
}
}
Try using this configuration instead:
Anonymous Quote
{
"modsDisallowed":{
"Schematica":{
"disabled":false,
"extra_data":{
"printerEnabled":{
"forced":true
}
}
}
}
}
Let me know if this works for you.