Stránka 1 z 1

Neustála noc bez děště

Napsal: 15 úno 2016, 18:08
od jakub1000
Server: IP: 93.91.250.212:27824


Zdravím,
Chtěl bych se zeptat, jak lze udělat aby byla pouze v jednom světu neustále noc + aby tam nebyl nikdy déšť
Šlo by to jinak než přes command bloky ?

Díky za rady.

Re: Neustála noc bez děště

Napsal: 15 úno 2016, 18:12
od pitilon@seznam.cz
Noc nastav si noc a v daném světě napiš /gamerule doDaylightCycle false

Re: Neustála noc bez děště

Napsal: 15 úno 2016, 18:51
od Iamplayer1
Ten dážď nejaky plugin "No Weather" kde možeš davat svety.

Re: Neustála noc bez děště

Napsal: 15 úno 2016, 19:45
od jakub1000
Ten příkaz mi bohužel nefungoval, tak jsem ho dal do command bloku (bez /) a stejně nic.
Nač tam cpát plugin... Musí to nějak jít zakázat..

Re: Neustála noc bez děště

Napsal: 15 úno 2016, 19:46
od Hanakocz
Ten příkaz musí být správně včetně malých a velkých písmen. Doporučuji napsat /gamerule a zmáčknout TAB, aby se ti ukázaly možnosti.
http://minecraft.gamepedia.com/Commands#gamerule

Kód: Vybrat vše

/gamerule doDaylightCycle false


Btw. na ten déšť stačí mít WorldGuard.
V hlavním configu najdeš tuto část:

Kód: Vybrat vše

weather:
    prevent-lightning-strike-blocks: []
    disable-lightning-strike-fire: true
    disable-thunderstorm: true
    disable-weather: true
    disable-pig-zombification: false
    disable-powered-creepers: false
    always-raining: false
    always-thundering: false

Zajímá tě z toho řádek

Kód: Vybrat vše

    disable-weather: true


Nicméně....to je pro VŠECHNY SVĚTY. Takže....si tuto část zkopíruj. Otevři podsložku worlds, název světa, kde to chceš, a tam otevři config pro daný svět. Něco takového by tam mělo být:

Kód: Vybrat vše

#
# WorldGuard's world configuration file
#
# This is a world configuration file. Anything placed into here will only
# affect this world. If you don't put anything in this file, then the
# settings will be inherited from the main configuration file.
#
# If you see {} below, that means that there are NO entries in this file.
# Remove the {} and add your own entries.
#

{}

Gól je v tom, že takto, když je to prázdné, tak se daný svět chová podle hlavního configu.
Tudíž tam stačí vpravit část, kterou chci mít jinak.

Kód: Vybrat vše

#
# WorldGuard's world configuration file
#
# This is a world configuration file. Anything placed into here will only
# affect this world. If you don't put anything in this file, then the
# settings will be inherited from the main configuration file.
#
# If you see {} below, that means that there are NO entries in this file.
# Remove the {} and add your own entries.
#

weather:
    prevent-lightning-strike-blocks: []
    disable-lightning-strike-fire: true
    disable-thunderstorm: true
    disable-weather: true
    disable-pig-zombification: false
    disable-powered-creepers: false
    always-raining: false
    always-thundering: false


PS: tajíš nám, že máš prastarou verzi 1.5.2, a divíš se, že námi navrhovaná řešení nefungují? No není to navrhovanými správnými řešeními, ale tvojí verzí.
PS PS : Pokud nemáš ani WorldGuard, tak tvoje jediná další možnost je mít redstone clock s /weather clear. Ale neustále běžící redstone obvod fakt není dobré řešení, když už ti teď CPU serveru jezdí na 95 až 120 %, že.....
PS PS PS: víš o tom, že jsou jednodušší metody, jak zrychlit server, ne vypnutí počasí?

Re: Neustála noc bez děště

Napsal: 15 úno 2016, 20:13
od jakub1000
Příkaz gamerule mi normálně funguje..
CPU mi nejede na 90% jede mi na 45%.. (průměr 38%)
Já to počasí chci vypnout kvůli nějakému zrychlení ? Potřebuji to pouze v jedom světu ve kterém potřebuji mít neustále noc.
WorldGuard využívám, tudíž tento způsob bude fungovat.
Díky.