The_Dark_Brawlers
Kızıltaş Madencisi
- En iyi cevaplar
- 0
adamın tam kafasının üstündeki ve ağanın altındaki blok her saniyede bir cam olacak adam o konumdan hareket edince o cam yaptığı yer eski haline dönecek
every second:
set block at block above 0 north to glass
set block at block below 0 north to glass
Kod:every second: set block at block above 0 north to glass set block at block below 0 north to glass
#Not: 0 north ne alaka diyenler, bir bildiğim var ki oraya onu yazdım.
every second:
if {%player%.ste} is set:
set block at block above 0 north to glass
set block at block below 0 north to glass
every second: altına şu kodu ekleyin. Loop players:PHP:every second: if {%player%.ste} is set: set block at block above 0 north to glass set block at block below 0 north to glass
There's no player in a periodical event (kuleme.sk, line 6: if {%player%.ste} is set:')
every second: altına şu kodu ekleyin. Loop players:
every second:
loop players:
if {%loop-player%.ste} is set:
set block at block above 0 north to glass
set block at block below 0 north to glass
[18:38:45 ERROR]: 'block above 0 north' is not a text (kuleme.sk, line 8: set block at block above 0 north to glass')PHP:every second: loop players: if {%loop-player%.ste} is set: set block at block above 0 north to glass set block at block below 0 north to glass
[18:38:45 ERROR]: 'block below 0 north' is not a text (kuleme.sk, line 9: set block at block below 0 north to glass')
every second:
loop players:
if {%loop-player%.ste} is set:
set block at block above 0 north of loop-player to glass
set block at block below 0 north of loop-player to glass
adam hareket ettiğinde arkasında cam bırakıyorPHP:every second: loop players: if {%loop-player%.ste} is set: set block at block above 0 north of loop-player to glass set block at block below 0 north of loop-player to glass
every 0.1 second:
loop players:
if {%loop-player%.ste} is set:
set {_kordinat_1} to location 1 meters below loop-player
set {_kordinat_2} to location 2 meters up loop-player
execute console command "setblock {_kordinat_1} minecraft:glass"
execute console command "setblock {_kordinat_2} minecraft:glass"
şu an hata almıyorum fakat block koymuyor?PHP:every 0.1 second: loop players: if {%loop-player%.ste} is set: set {_kordinat_1} to location 1 meters below loop-player set {_kordinat_2} to location 2 meters up loop-player execute console command "setblock {_kordinat_1} minecraft:glass" execute console command "setblock {_kordinat_2} minecraft:glass"
every 0.1 second:
loop players:
if {%loop-player%.ste} is set:
set {_kordinat_1} to location 1 meters below loop-player
set {_kordinat_2} to location 2 meters up loop-player
set {_kordinat_1} to grass
set {_kordinat_2} to grass
hata vermedi fakat koymadıBir de bunu dene.PHP:every 0.1 second: loop players: if {%loop-player%.ste} is set: set {_kordinat_1} to location 1 meters below loop-player set {_kordinat_2} to location 2 meters up loop-player set {_kordinat_1} to grass set {_kordinat_2} to grass
every 0.1 second:loop players:
if {%loop-player%.ste} is set:
set {_kordinat_1} to location 1 meters below loop-player
set {_kordinat_2} to location 2 meters up loop-player
set {_kordinat_1} to grass
set {_kordinat_2} to grass
every 5 ticks:
loop all players:
set {_k_1} to location 1 metres below loop-player
set {_k_2} to location 2 metres up loop-player
set block at {_k_1} to grass
set block at {_k_2} to grass
every 5 ticks:
loop all players:
set {_k_1} to location 1 metres below loop-player
set {_k_2} to location 2 metres up loop-player
set block at {_k_1} to glass
set block at {_k_2} to glass