[Istek]DemirSpawneri

KaanGM

Zombi Katili
Mesajlar
185
En iyi cevaplar
0
Beğeniler
22
Puanları
0
Arkadaşlar bi skyblock sunucusunda gördüm Demir,Elmas,Altın spawneri vardı birde craft edilen golem sp fln vardı onlar nasıl olucak bazıları yapmış işlemiyor ama onlar
Bi arkadaşımız elmas spawner yapmış çalışıyor
oda bu
Kod:
on place of a diamond block:
    set {someVariable} to name of held item of player
    {someVariable} is "&6&lElmas 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
    make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""diamond"",Count:1},PickupDelay:1}}"#Buraya as op ekler iseniz oyuncularda koyabilir. Wildskript gerektirir.
    send "&bElmas spawnerini basari ile koydun!"

command /elmasspawner <text>:
    trigger:
        arg-1 is "ver":
            give a diamond block named "&6&lElmas Spawner" to player
Bunu nasıl elmas fln yaparım _
 


SnipeTR

Zombi Katili
Mesajlar
184
En iyi cevaplar
0
Beğeniler
67
Puanları
780
Ben yapmıştım bunu bunu nasıl elmas fln yaparım derken demir felan demek istedin heralde? ki şöyle kodu uzatırsak;
Kod:
on place of a diamond block:
     set {_someVariable} to name of held item of player
    {_someVariable} is "&6&lElmas 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
    make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""diamond"",Count:1},PickupDelay:1}}"#Buraya as op ekler iseniz oyuncularda koyabilir. Wildskript gerektirir.
    send "&bElmas spawnerini basari ile koydun!"

on place of a gold block:
     set {_someVariable} to name of held item of player
    {_someVariable} is "&6&lAltın 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
    make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""gold"",Count:1},PickupDelay:1}}"
    send "&bAltın spawnerini basari ile koydun!"

on place of a iron block:
     set {_someVariable} to name of held item of player
    {_someVariable} is "&6&lDemir 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
    make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""iron"",Count:1},PickupDelay:1}}"
    send "&bDemir spawnerini basari ile koydun!"

command /spawnerver <text>:
    permission: spawner.ver
    trigger:
        arg-1 is "elmas":
            give a diamond block named "&6&lElmas Spawner" to player
        arg-1 is "altin":
            give a diamond block named "&6&lAltın Spawner" to player
        arg-1 is "demir":
            give a diamond block named "&6&lDemir Spawner" to player

Komut /spawnerver altin veya elmas veya demir. Yetki: spawner.ver
 

MeeRach

Vi3e
Mesajlar
1,113
En iyi cevaplar
0
Beğeniler
580
Puanları
1,335
Ruh hali
Kod:
make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""diamond"",Count:1},PickupDelay:1}}"
bildiğim kadarıyla bu komut, komut bloğu ile kullanılmıyor muydu? 1.9'dan sonra konsol tarafından kullanılıyor.
 

SnipeTR

Zombi Katili
Mesajlar
184
En iyi cevaplar
0
Beğeniler
67
Puanları
780
Kod:
make player execute command "setblock %{_x}% %{_y}% %{_z}% minecraft:mob_spawner 0 replace {EntityId:Item,Delay:1,SpawnData:{Item:{id:""diamond"",Count:1},PickupDelay:1}}"
bildiğim kadarıyla bu komut, komut bloğu ile kullanılmıyor muydu? 1.9'dan sonra konsol tarafından kullanılıyor.
Konsola kullandırıldığında dünya sıkıntısı olduğu için böyle bir şey yapmışım sanırım.
 

Üst