Yardım edermisiniz.

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

OnlyDarkness

Retired Bartender
Emektar
MinePass
Katılım
10 Şubat 2018
Mesajlar
370
Çözümler
1
Elmaslar
210
Puan
14.195
Konum
AYDIN / DİDİM
Discord İzni
Minecraft
OnlyDarknesss

Discord:

OnlyDarknesss#0932

Öncelikle Merhaba arkadaşlar.

Ben Suan bir sunucu üzerinde Çalısmaktayım Ama Adaya ışınlandığım zaman ekrandaki yazıyı nasıl değiştirceğimi bulamadım bi yardım ederseniz sevinirim.
 
Askyblock locale'nin içinde hangi dil seçiliyse ona gir ''title'' kelimesini arat ordan değiştirebilirsin
 
teşekkürler bir isteğim daha olucaktı

spawner skripti verebilirmisiniz
silkspawners olabilir block spawner istiyorsan h.i.d'un tornado spawnersi kullnabilirsin skrit sunucunu kastırır tps değerlerini düşürür
 
teşekkürler bir isteğim daha olucaktı

spawner skripti verebilirmisiniz
SilkSpawners kullanabilirsin skript kullanma taraftarı değilim. İstediğin şey şu sanırım
Kod:
options:
    delay: 5
    count: 1
 
command /spmarket:
    trigger:
        open chest with 1 row named "&e&lSpawner Al &f||| &c&lTolgaCX" to player
        format slot 0 of player with paper named "&b&lDemir Spawner" to close then run [make player execute command "dsp"]
        format slot 1 of player with paper named "&b&lDemir Blok Spawner" to close then run [make player execute command "dbsp"]
        format slot 2 of player with paper named "&b&lSünger Spawner" to close then run [make player execute command "ssp"]
        format slot 3 of player with paper named "&b&lElmas Spawner" to close then run [make player execute command "diasp"]
        format slot 4 of player with paper named "&b&lElmas Blok Spawner" to close then run [make player execute command "diabloksp"]
        format slot 5 of player with paper named "&b&lAltın Spawner" to close then run [make player execute command "altinsp"]
        format slot 6 of player with paper named "&b&lAltın Blok Spawner" to close then run [make player execute command "altinbloksp"]
        format slot 7 of player with paper named "&b&lZümrüt Spawner" to close then run [make player execute command "zumrutsp"]
        format slot 8 of player with paper named "&b&lZümrüt Blok Spawner" to close then run [make player execute command "zumrutbloksp"]
      
command /dsp:
    permission: sp.dsp
    trigger:
        execute console command "give %player% 52 5 name:&eIron_Spawner"
 
command /dbsp:
    permission: sp.dsp
    trigger:
        execute console command "give %player% 52 5 name:&eIron_Block_Spawner"
      
#  ################################################################   
#  ################################################################   
#  ################################################################   
#  ################################################################   
      
command /ssp:
    permission: sp.dsp
    trigger:
        execute console command "give %player% 52 5 name:&eSponge_Spawner"
      
#  ################################################################   
#  ################################################################   
#  ################################################################   
#  ################################################################   
      
command /diasp:
    permission: sp.dsp
    trigger:
        execute console command "give %player% 52 5 name:&eDiamond_Spawner"
      
command /diabloksp:
    permission: sp.dsp
    trigger:
        execute console command "give %player% 52 5 name:&eDiamond_Block_Spawner"

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

command /altinsp:
    permission: sp.goldsp
    trigger:
        execute console command "give %player% 52 5 name:&eGold_Spawner"
      
command /altinbloksp:
    permission: sp.goldbloksp
    trigger:
        execute console command "give %player% 52 5 name:&eGold_Block_Spawner"

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

command /zumrutsp:
    permission: sp.goldsp
    trigger:
        execute console command "give %player% 52 5 name:&eEmerald_Spawner"
      
command /zumrutbloksp:
    permission: sp.goldbloksp
    trigger:
        execute console command "give %player% 52 5 name:&eEmerald_Block_Spawner"
 
on place of a mob spawner:
    if name of player's tool is "&eIron Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:iron_ingot,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Demir Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {dsspawner::*}
        add -1 to {dsp.%player%}
        add -1 to {aasp.%player%}
      
on place of a mob spawner:
    if name of player's tool is "&eIron Block Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:iron_block,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Demir Blok Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {dbspawner::*}
        add -1 to {dsp.%player%}
        add -1 to {aasp.%player%}
      
on place of a mob spawner:
    if name of player's tool is "&eSponge Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:sponge,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Sünger Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {spspawner::*}
        add -1 to {ssp.%player%}
        add -1 to {aasp.%player%}
      
on place of a mob spawner:
    if name of player's tool is "&eDiamond Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:diamond,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Elmas Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {diasp::*}
        add -1 to {diasp.%player%}
        add -1 to {aasp.%player%}

on place of a mob spawner:
    if name of player's tool is "&eDiamond Block Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:diamond_block,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Elmas Blok Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {diabsp::*}
        add -1 to {diabsp.%player%}
        add -1 to {aasp.%player%}
      
      
on place of a mob spawner:
    if name of player's tool is "&eGold Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:gold_ingot,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Altın Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {goldsp::*}
        add -1 to {goldsp.%player%}
        add -1 to {aasp.%player%}
      
on place of a mob spawner:
    if name of player's tool is "&eGold Block Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:gold_block,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Altın Blok Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {goldbloksp::*}
        add -1 to {goldbloksp.%player%}
        add -1 to {aasp.%player%}

on place of a mob spawner:
    if name of player's tool is "&eEmerald Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:emerald,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Zümrüt Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {zumrutsp::*}
        add -1 to {zumrutsp.%player%}
        add -1 to {aasp.%player%}

on place of a mob spawner:
    if name of player's tool is "&eEmerald Block Spawner":
        set {_x} to x coord of event-location
        set {_y} to y coord of event-location
        set {_z} to z coord of event-location
        execute console command "manuaddp %player% minecraft.command.setblock"
        wait 0.3 seconds
        execute player command  "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,SpawnData:{Item:{id:emerald_block,Count:1}},SpawnCount:{@count},SpawnRange:2,RequiredPlayerRange:10,delay:{@delay},MinSpawnDelay:40,MaxSpawnDelay:100,MaxNearbyEntities:9999}"
        send "&c&lMagicSpawners &8» &7Zümrüt Blok Spawner koyuldu!"
        execute console command "manudelp %player% minecraft.command.setblock"
        set {_1} to location of event-block
        add {_1} to {zumrutbloksp::*}
        add -1 to {zumrutbloksp.%player%}
        add -1 to {aasp.%player%}           
      
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {dsspawner::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eIron Spawner" at {_1}
        remove {_1} from {dsspawner::*}   
 
 
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {dbspawner::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eIron Block Spawner" at {_1}
        remove {_1} from {dbspawner::*}   
 
 
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {spspawner::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eSponge Spawner" at {_1}
        remove {_1} from {spspawner::*}
      
      
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {diasp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eDiamond Spawner" at {_1}
        remove {_1} from {diasp::*}
      
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {diabsp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eDiamond Block Spawner" at {_1}
        remove {_1} from {diabsp::*}
 
 
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {goldsp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eGold Spawner" at {_1}
        remove {_1} from {goldsp::*}


on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {goldbloksp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eGold Block Spawner" at {_1}
        remove {_1} from {goldbloksp::*}   
      
      
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {zumrutsp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eEmerald Spawner" at {_1}
        remove {_1} from {zumrutsp::*}   
          
on break of mob spawner:
    tool of player is any pickaxe of silk touch
    set {_1} to location of event-block
    loop {zumrutbloksp::*}:
        loop-value is {_1}
        cancel event
        set block at {_1} to air
        drop a mob spawner named "&eEmerald Block Spawner" at {_1}
        remove {_1} from {zumrutbloksp::*}
 
Ama unutma skript ile alacağın item spawner 100 sp olsun serverde tps değerlerini aşırı düşürüp sunucunu yoracaktır
 
arkadaşlar silkspawners ta blok sp olmuyor ver bana sorunsuz çalısan bir blok sp plugini yada skripti lazım :d
 
arkadaşlar silkspawners ta blok sp olmuyor ver bana sorunsuz çalısan bir blok sp plugini yada skripti lazım :d
Aradığın plugin Tornado Spawner Forumdaki plugin paketlerine bak var bazılarında ordan al
 
arkadaşlar silkspawners ta blok sp olmuyor ver bana sorunsuz çalısan bir blok sp plugini yada skripti lazım :d
halen geliştirmekte olduğum eklentimi kullanabilirsin
 
discord isteği yollanmıstır
halen geliştirmekte olduğum eklentimi kullanabilirsin
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

Hala Discord sunucumuza katılmadın mı?

Büyük bir topluluğun parçası ol, etkinliklere katıl ve özel hediyeler kazanma şansı yakala!

Şimdi Katıl
Üst