skript

xBroxed

Oduncu
Katılım
14 Ağu 2019
Mesajlar
2
Beğeni
1
Puanları
30
merhabalar elimde böyle bir kod var fakat bu coin skriptine uyarlı bu skripti nasıl balanceye uyarlayacağım





Kod:
on load:
    set {Muhafız::coins} to 1800
    set {Oduncu::coins} to 1500
    set {Enderman::coins} to 1800
    set {Balıkçı::coins} to 1000
    set {Flash::coins} to 1200
    set {Mimar::coins} to 800
    set {Troll::coins} to 1000
    set {Bombacı::coins} to 1200
    set {KartaopuKralı::coins} to 1200
    set {Legolas::coins} to 1500


command /swkital [<text>]:
    trigger:
        if arg 1 is set:
            if arg 1 is "Muhafız" or "Oduncu" or "Enderman" or "Balıkçı" or "Flash" or "Mimar" or "Troll" or "Bombacı" or "KartaopuKralı" or "Legolas":
                if player doesn't have permission "sw.kit.%arg 1%":
                    set {_gereken} to {%arg 1%::coins}
                    set {_coins} to {coins::%player%}
                    if {_coins} is bigger or equal to {_gereken}:
                        remove {_gereken} from {coins::%player%}
                        execute console command "manuaddp %player% sw.kit.%arg 1%"
                        send "&3Skywars &8» &2%arg 1% &akit satın alındı."
                    else:
                        send "&3Skywars &8» &cYeterli coin yok!"
                else:
                    send "&3Skywars &8» &cBu kit zaten mevcut!"
            else:
                send "&3Skywars &8» &cBöyle bir kit yok!"
 

Baki1881

Oduncu
Katılım
18 Mar 2023
Mesajlar
3
Beğeni
0
Puanları
10
Merhaba, ekonomi sistemi ekleyerek coin sistemini yapabilirsiniz.
Kod:


on load:
set {Muhafız::coins} to 1800
set {Oduncu::coins} to 1500
set {Enderman::coins} to 1800
set {Balıkçı::coins} to 1000
set {Flash::coins} to 1200
set {Mimar::coins} to 800
set {Troll::coins} to 1000
set {Bombacı::coins} to 1200
set {KartaopuKralı::coins} to 1200
set {Legolas::coins} to 1500


command /swkital [<text>]:
trigger:
if arg 1 is set:
if arg 1 is "Muhafız" or "Oduncu" or "Enderman" or "Balıkçı" or "Flash" or "Mimar" or "Troll" or "Bombacı" or "KartaopuKralı" or "Legolas":
if player doesn't have permission "sw.kit.%arg 1%":
set {_gereken} to {%arg 1%::coins}
set {_coins} to {coins::%player%}
if {_coins} is bigger or equal to {_gereken}:
remove {_gereken} from {coins::%player%}
if player's balance >=5000
execute console command "manuaddp %player% sw.kit.%arg 1%"
send "&3Skywars &8» &2%arg 1% &akit satın alındı."
else:
send "&3YouTube BakiDeğilim &8» &cYeterli coin yok!"
else:
send "&3YouTube BakiDeğilim &8» &cBu kit zaten mevcut!"
else:
send "&3YouTube BakiDeğilim &8» &cBöyle bir kit yok!"
 
Üst