Skript 2.Yardım :)

S

Switcher

Ziyaretçi

Kodu atar mısın ?
Kod:
command /deneme:
    trigger:
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "deneme2"
       
       
command /deneme2:
    trigger:
        wait 5 ticks
        open chest with 1 rows named "&e&lKapı Menü" to player
        format slot 2 of player with stone named "&aKişi Ekle" to close then run "deneme4"
       
   

command /deneme4:
    executable by: console
    trigger:
        give player 10 diamond
 

blackone1991

Elmas Madencisi
En iyi cevaplar
0
Kod:
command /deneme:
    trigger:
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "deneme2"
     
     
command /deneme2:
    trigger:
        wait 5 ticks
        open chest with 1 rows named "&e&lKapı Menü" to player
        format slot 2 of player with stone named "&aKişi Ekle" to close then run "deneme4"
     
 

command /deneme4:
    executable by: console
    trigger:
        give player 10 diamond
PHP:
command /deneme:
    trigger:
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "deneme2 %player%"
     
     
command /deneme2 <player>:
    trigger:
        wait 5 ticks
        open chest with 1 rows named "&e&lKapi Menü" to arg 1
        format slot 2 of arg 1 with stone named "&aKisi Ekle" to close then run "deneme4 %arg 1%"
     
 

command /deneme4 <player>:
    executable by: console
    trigger:
         give 10 diamond to arg 1
 
S

sergun26

Ziyaretçi
Kod:
command /deneme:
    trigger:
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "deneme2"
      
      
command /deneme2:
    trigger:
        wait 5 ticks
        open chest with 1 rows named "&e&lKapı Menü" to player
        format slot 2 of player with stone named "&aKişi Ekle" to close then run "deneme4"
      
  

command /deneme4:
    executable by: console
    trigger:
        give player 10 diamond
Kod:
command /deneme:
    trigger:
        wait 3 ticks
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "oyuncusudo %player% deneme2" 
command /deneme2:
    trigger:
        wait 3 ticks
        open chest with 1 rows named "&e&lKapı Menü" to player
        format slot 2 of player with stone named "&aKişi Ekle" to close then run "oyuncusudo %player% deneme4"
command /deneme4:
    trigger:
        give player 10 diamond
command /oyuncusudo <player> <text>:
    executable by: console
    trigger:
        execute arg 1 command "/%arg 2%"
 
S

Switcher

Ziyaretçi
Kod:
command /deneme:
    trigger:
        wait 3 ticks
        open chest with 1 rows to player
        format slot 0 of player with redstone to close then run "oyuncusudo %player% deneme2"
command /deneme2:
    trigger:
        wait 3 ticks
        open chest with 1 rows named "&e&lKapı Menü" to player
        format slot 2 of player with stone named "&aKişi Ekle" to close then run "oyuncusudo %player% deneme4"
command /deneme4:
    trigger:
        give player 10 diamond
command /oyuncusudo <player> <text>:
    executable by: console
    trigger:
        execute arg 1 command "/%arg 2%"
Aslında basitmiş ben senin dediğini anlayamamışım sağol :) oldu
 
Üst