Stránka 1 z 1

creative - davani veci

Napsal: 03 dub 2012, 11:08
od Welton123
PODPIS



Ahoj, mám na serveru plugin http://dev.bukkit.org/server-mods/creativecontrol/

ale problem je v tom, ze admini nemohou vyhazovat veci z inventare ale kdyz si zruseji creative tak se jim inventar nezmění a já potřebuji aby se změnil :-/ . jde to nějak ? popřípadě neznáte nějaký jiný, který to umí ? karma +

Re: creative - davani veci

Napsal: 03 dub 2012, 11:23
od Vojko
Máš v configu zapnuté toto ?

Kód: Vybrat vše

## Separate the inventories, one to creative and other to survival.
  Inventory: true

Re: creative - davani veci

Napsal: 03 dub 2012, 11:29
od Welton123
Už ano, děkuji a ještě, když creative hráč v residenci něco postaví a normalní hráč příjde tak to zničí i když je to v Residenci ale když to místo creative hráče postaví normál. hráč tak už to zničit nejde.

Re: creative - davani veci

Napsal: 03 dub 2012, 11:41
od Vojko
Skopíruj sem prosím config :)

Re: creative - davani veci

Napsal: 03 dub 2012, 12:03
od Welton123
Tady je:

Kód: Vybrat vše

Prevent:
## Players with creative mode CAN'T attack others players
  PvP: true
## Players with creative mode CAN'T pickup items
  Pickup: true
## Players with creative mode CAN'T drop items
  Drop: true
## Players with creative mode CAN'T attack mobs.
  Mob: true
## Players with creative mode CAN'T be target by mobs.
  Target: true
## Player with creative mode CAN'T use those commands.
  Commands:
    - /sell
    - /buy

##Multi World Configurations
MultiWorld:
## If the player is in a fully no creative world, set him to survival?
  setSurvival: true
## All fully no creative worlds.
  NoCreativeWorlds:
    - world_name
## All worlds which not will have CreativeControl protections.
  Exclude:
    - world_name
 
Remove:
## Players with creative mode CAN'T create iron golems
  IronGolem: true
## Players with creative mode CAN'T create snow golems
  SnowGolem: true
## Players with creative mode CAN'T use Creature Eggs
  CreatureEGG: true
## Players with creative mode CAN'T throw chicken eggs
  ChickenEGG: true
## Players with creative mode CAN'T throw exp bottle
  ExpBottle: true
 
BlackList:
  Use:
## This will prevent the USE of the item, will be possible place/break.
    MineCartStorage: true
    WaterBucket: true
    LavaBucket: true
    FlintNSteel: true
    Furnace: true
    Dispenser: true
    Workbench: true
    Chest: true
## List here, all the items you dont wanna to be used.
    Others:
      - 261
      - 346

  Place:
    BedRock: true
    Ice: true
    TnT: true
## List here, all the blocks you dont wanna to be placed
    Other:
      - 8
      - 9
      - 10
      - 11
      - 51

  Break:
    BedRock: true
## List here, all the blocks you dont wanna to be broken
    Other:
      - 14
      - 15

Limits:
## Limit of block place/break per second.
  PlacePerSec: 5
  BreakPerSec: 5
 
## Protection type for blocks placed by and creative.
Protection:
## The block placed by an creative will drop nothing when broken, even if a survival break it.
  NoDrop: true
## The block placed will be auto protected and only can be destroyed by the owner.
  OwnBlock: false
## Blocks placed by and creative will be unable to be pulled/pushed
  Pistons: true

## MySQL Configuration
MySQL:
  ## Use MySQL?
  enabled: false
  host: localhost:3306
  database: ccontrol
  username: root
  password: 123

PlayerData:
## Set the player gamemode to survival on quit [Leave this true if you use authme, authdb, xauth, any other auth plugin with inventory manager]
  SetSurvival: true
## Save the survival player status, like Health, food etc.
  Status: true
## Separate the inventories, one to creative and other to survival.
  Inventory: true
 
DataBase:
## Time to save the nodrop/ownblock database [in minutes]
  SaveInterval: 5
## Announce the database saving?
  announce: false
 
Messages:
## If you dont wanna any messages, set this to true.
  Quiet: false
## Select your language, avaliable by default is en_US and pt_BR.
locale: en_US
## Debug Messages.
debug: false
## Uselless debug messages.
superdebug: false

Re: creative - davani veci

Napsal: 03 dub 2012, 12:22
od Vojko

Kód: Vybrat vše

## The block placed will be auto protected and only can be destroyed by the owner.
  OwnBlock: false

Re: creative - davani veci

Napsal: 03 dub 2012, 12:23
od Welton123
FALSE tam mám a když tam dám TRUE tak ten blok zničejí a vypadne jim ten blok ale když tam nechám FALSE tak ho zničejí ale blok jim nevypadne.

Re: creative - davani veci

Napsal: 03 dub 2012, 12:37
od Arcas
Nahraď část :

Kód: Vybrat vše

## Protection type for blocks placed by and creative.
Protection:
## The block placed by an creative will drop nothing when broken, even if a survival break it.
  NoDrop: true
## The block placed will be auto protected and only can be destroyed by the owner.
  OwnBlock: false
## Blocks placed by and creative will be unable to be pulled/pushed
  Pistons: true


timhle

Kód: Vybrat vše

## Protection type for blocks placed by and creative.
Protection:
## The block placed by an creative will drop nothing when broken, even if a survival break it.
  NoDrop: false
## The block placed will be auto protected and only can be destroyed by the owner.
  OwnBlock: false
## Blocks placed by and creative will be unable to be pulled/pushed
  Pistons: false

Re: creative - davani veci

Napsal: 03 dub 2012, 13:10
od Welton123
Už funguje, díky :-)

LOCK