Jump to content

Dimensional Anchor: How to configure it for a server


LazyRob

Recommended Posts

I did a couple google searches on how to configure it, and the best I can find is the root/config/immibis.cfg

However this configuration file is structured way differently than what I'm use to (Bukkit/plugin configs)

Basically what I want to do is ALLOW players to use Dimensional Anchors, but I would like to limit how many they can have.

I came across this post http://tekkitclassic.wikia.com/wiki/Thread:80560#11

Which is exactly what I want, but that line is nowhere in my config file so I have no clue where to place it or anything (Probably because that's the ClassicTekkit Wiki and I'm running the newest version 1.0.6)

I'm assuming that to set the number of allowed Anchors would be under the "Player Quota Override" but again, I have no clue how to structure it

# Configuration file

 

####################

# block

####################

 

block {

    I:blockMultipart.id=816

    I:chunkloader.id=817

}

 

 

####################

# chunkloader

####################

 

chunkloader {

    ####################

    # playerQuotaOverride

    ####################

 

    playerQuotaOverride {

    }

 

}

 

 

####################

# general

####################

 

general {

    B:autoAssign=false

    B:chunkloader.allowFuelPiping=false

    B:chunkloader.bypassForgeChunkLimits=true

    B:chunkloader.enableCrafting=true

 

    # comma-separated list of id:meta=number-of-ticks or id=number-of-ticks

    S:chunkloader.fuels=87=80,1=60,263:0=12000,348=2400,4=20,331=1200,112=200,3=20,263:1=1200,368=18000,378=18000,381=36000

    B:chunkloader.hideOtherPlayersLoadersInF9=false

 

    # Type of quota management to use for chunk loaders. Allowed values: perplayer, unlimited

    S:chunkloader.quotaType=unlimited

    B:chunkloader.useFuel=false

    B:enableMicroblocks=true

}

 

 

####################

# item

####################

 

item {

    I:itemSaw=5726

}

 

 

####################

# logging

####################

 

logging {

    # Name of a file to keep updated with a list of all active chunk loaders. Blank for none.

    S:chunkloader.listFileName=

 

    # Name of a file to log creation, deletion and editing of chunk loaders to. Blank for none.

    S:chunkloader.logFileName=

}

 

 

Any help would be greatly appreciated, and if you could show an example of the code in [.code] [./code] tags that'd be great so I know the exact number of spaces and stuff that I need to put

Link to comment
Share on other sites

# Type of quota management to use for chunk loaders. Allowed values: perplayer, unlimited

S:chunkloader.quotaType=unlimited

B:chunkloader.useFuel=false

B:enableMicroblocks=true

}

if you want to limit there use of the chunk loader all you would need to do is change the value for unlimited to perplayer like so

[s:chunkloader.quotaType=perplayer]

Then in another config file ( i forget which one, but it should be Chicken chunk loader or forge chunk loader ETC. ) you will find a section that limits the amount of chunks a player can keep loaded over all chunk loading devices.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...