No Building On Stuff

Verified No Building On Stuff 1.08

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Public Service Announcement

    Hey Guest, I’ve got some exciting news to share! 🎉

    Starting this December, I’ll be moving the entire GameServersHub website away from WordPress and rebuilding it in Next.js! This upgrade will bring incredibly faster speeds, smoother performance, and a modern user experience that sets the stage for everything coming next.

    In 2026, GameServersHub will be entering a new era. I’ll be revamping the entire platform from the ground up and launching a brand-new, fully modernized marketplace. It’ll feature a cleaner design, improved functionality, and better tools for both creators and server owners.

    On top of that, development has already started on the GameServerListing project at https://gsl-six.vercel.app/, which is expected to launch in early Q1 2026. This new system will make discovering and managing servers easier than ever before.


    👉 Stay in the loop!
    Join our Discord for behind-the-scenes updates, early previews, and community discussions.

    » Click here to join our Discord! «

    ~ MrOwlSky

Website User Information:

On GameServersHub, developers can earn a "Verified" prefix tag for their resources. This tag indicates that the developer has been granted a website role to upload verified resources, which are generally of higher quality than unverified ones. By consistently providing dedicated and quality results for the gaming community, developers can earn this tag and showcase their commitment to providing top-notch content. So, if you're looking for the best gaming resources, be sure to keep an eye out for the "Verified" tag on GameServersHub.
Join my Discord Channel for more support!
If you enjoy my plugins, please leave a rating!

NoBuildingOnStuff


All locations are discovered programmatically.

Prevents players from building on:
- Beaver spawns areas
- Supply drops (artifacts, cave drops etc..)
- Mission terminals
- Tribute terminals / Oblisks
- City terminals
- Player spawn points
- Explorer notes including glitches and runes
- Orbital Supply Drops
- Element Nodes
- Custom locations that you provide in the config file

Configuration:
JSON:
{
    "NoBuildingOnStuff":{
        "AccountID": "",
        "Enabled": true,  // enables plugin
        "AllowAdminToBuildOnStuff": false,  // allow enablecheats admins to build in areas below
 
  
"BeaverSpawnsEnabled": true, // enables beaver spawn areas
        "BeaverSpawnsRangeInFoundations": 75,
        "BeaverSpawnsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],


        "CityTerminalsEnabled": true, // enables city terminals
        "CityTerminalsRangeInFoundations": 20,
        "CityTerminalsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],
          
        "ExplorerNotesEnabled": true, // enables explorer notes
        "ExplorerNotesRangeInFoundations": 5,
        "ExplorerNotesWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],
  
        "HordeDropsEnabled": true, // enables osd and element nodes
        "HordeDropsRangeInFoundations": 20,
        "HordeDropsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],
  
        "MissionTerminalsEnabled": true, // enables mission terminals
        "MissionTerminalsRangeInFoundations": 20,
        "MissionTerminalsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],
          
        "SpawnPointsEnabled": true, // enables spawn points
        "SpawnPointsRangeInFoundations": 5,
        "SpawnPointsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],
          
        "SupplyDropsEnabled": true, // enables supply drops
        "SupplyDropsRangeInFoundations": 5,
        "SupplyDropsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],          
          
        "TributeTerminalsEnabled": true, // enables tribute terminals / oblisks
        "TributeTerminalsRangeInFoundations": 30,
        "TributeTerminalsWhitelist": [
            "PrimalItemStructure_SleepingBag_Hide",
            "PrimalItemStructure_SleepableSleepingbag"
        ],


        "CustomLocations":[  // add your own custom locations. Use the first three numbers from a ccc command
            {
                "MapName": "TheIsland",
 
                "Locations":[
                    {
                        "Name": "Someplace on the Island",        // Give this a name. **The name displays when you are in admin mode. NOT REQUIRED, default is ""
                        "Enabled": false,                         // Is this location enabled? **NOT REQUIRED, default is true
                        "Location": [ 12222, 122222, 122222],    // the x,y,z of the location. **REQUIRED
                        "RangeInFoundations": 5,                 // The range in foundations for the building prevention. **REQUIRED
                        "TribeIDs": [2981118212, 128971761]     // Tribe Id's that are ALLOWED to build in this area. **NOT REQUIRED, default is empty
                    },
                    { "Location": [-118119, 176516, -8834], "RangeInFoundations": 15 }
                ]
            },
            {
                "MapName": "Testing123",   // use a custom map name by adding to the command line:   -jraMapName=Testing123
                "Locations":[
                    { "Location": [-130143, 162325, -9532], "RangeInFoundations": 3 },
                    { "Location": [-118119, 176516, -8834], "RangeInFoundations": 3 }
                ]
            }
        ],
 
        "SenderNameInChat": "SERVER",
        "MessageCannotBuildHere1": "You can not build here you are too close to a spawn point.",
        "MessageCannotBuildHere2": "You can not build here you are too close to a mission terminal.",
        "MessageCannotBuildHere3": "You can not build here you are too close to a city terminal.",
        "MessageCannotBuildHere4": "You can not build here you are too close to a tribute terminal.",
        "MessageCannotBuildHere5": "You can not build here you are too close to a {}.",
        "MessageCannotBuildHere6": "You can not build here you are too close to a supply drop.",
        "MessageCannotBuildHere7": "You can not build here you are too close to a beaver spawn point.",
        "MessageCannotBuildHere8": "You can not build here you are too close to a orbital supply drop or element node.",
        "MessageCannotBuildCustom": "You can not build here.",
        "ExplorerNote": "explorer note",
        "Glitch": "glitch",
        "Rune": "rune"
    }
}

Reload command: NoBuildingOnStuff.reload


Beaver Spawn areas:

1684440653149.png


Supply Drops:

1682040681875.png


Explorer Notes:

1677356542365.png


Runes:

1677356942758.png


Glitches:

1677356414063.png


Mission terminals:


1677211694719.png


City terminals:

1677211710698.png


Tribute terminals / Oblisks:

1677211738922.png


Spawn locations:

1677211768219.png


All data is loaded one time, when the plugin loads:

1682041290793.png


Join my Discord Channel for more support!
If you enjoy my plugins, please leave a rating!
Author
jraServerAPI
Type
Digital product
License duration
Unlimited
Price
25.00 USD
Views
4,712
First release
Last update

Ratings

5.00 star(s) 2 ratings

More resources from jraServerAPI

Latest updates

  1. Version 1.08 Update

    - Added whitelists to each prevention type config file has changed
  2. Version 1.07 Update

    - Added support for Orbital Supply Drops and Element Nodes - Added HordeDropsEnabled...
  3. What's new in 1.06

    - Improved Supply Drop search algorithm as there was a lot of invalid locations in the previous...

Latest reviews

I have purchased this plugin, but it prompts me: 04/10/25 19:58 [NoBuildingOnSuff] [info] [E008] This plugin needs to be licensed in order to work. Plugin is disabled. Visit https://discord.gg/TFSY7fEqT7 for help.
What should I do?
jraServerAPI
jraServerAPI
join my discord and open a ticket
Great plugin! No need to prescribe all manually, put it and forgot about the problem of buildings on the spawns, obelisks, etc, thank you :)
jraServerAPI
jraServerAPI
you're welcome!
Back
Top