Op SkyBlock OTOSAT Yardım !(KİLİT)

LordOfTürk

Bööö!
Site İK Yöneticisi
En iyi cevaplar
83
Merhabalar sevgili forum üyeleri ve ziyaretçiler
Sizden bugün otosat skript isticem skript dedimde pluginde olur aslında :D neyse
oyuncular otosat isteyip duruyor autosellchest mi neydi onu ve ona benzer pluginler denedim fakat lag yapıyor bi süre sonra tps yi inanılmaz şekilde düşürüyordu
lag yapmaması için 1-2dk bir satma yapcaksın ki lag yapmasın oda yetmiyor chest ler çok çabuk doluyor bu yüzden millet şikayet ediyor
satma çubuğu vardı skript forum da dendim skript ı tekrar yazdırdım gene dedim bir iki reload yiğince ayar için bug a giriyor ve bu senin sandığın değil diyip duruyor
plugin ini buldum oda çalışmadı hiç ne yapacağımı bilemedim bi akıl verirseniz güzel olur millet başımın etini yedi :D otosat otosat diye diye ...
(istediğim şey chest den çıkarmadan satmak)​
 

Voxy

Ağaç Yumruklayıcı
En iyi cevaplar
0

Merhaba isteğini yeni gördüm , istediğin skripte benziyor , şu skripti kullanabilirsin ;

NOT: ALINTIDIR

Kod:
#Sandık içindeki eşyaları otomatik satma skripti

#Forum Gamer Darkkandadr



options:

    p: &eHover&fCraft &c> #Mesaj başlarındaki prefix

    cubukismi: &eSatış Çubuğu #Sandıktaki itemleri satmak için tıklanılacak çubuğun ismi

    1demirfiyati: 3000 #1 demirin satma fiyatı

    1altinfiyati: 4000 #1 altının satma fiyatı

    1elmasfiyati: 5000 #1 elmasın satma fiyatı

    1zumrutfiyati: 6000 #1 zümrütün satma fiyatı

    1demirblock: 27000 #1 demir bloğunun satma fiyatı

    1goldblock: 36000 #1 altın bloğunun satma fiyatı

    1diablock: 45000 #1 elmas bloğunun satma fiyatı

    1zumrutblock: 54000 #1 zümrüt bloğunun satma fiyatı



command /çubuk:

    trigger:

        give 1 stick named "{@cubukismi}" to player

on leftclick on chest with stick:

    if name of player's tool is "{@cubukismi}":

        if {chests::%player%::*} contains location of clicked chest:

            if clicked chest contains iron ingot:

                set {_itemcounti} to number of all iron ingots in clicked chest

                remove {_itemcounti} of iron ingots from clicked chest's inventory

                add {@1demirfiyati} * {_itemcounti} to the player's money

                send "{@p} &a%{_itemcounti}% demir satıldı. Kazanılan para: &c%{@1demirfiyati} * {_itemcounti}%"

            if clicked chest contains gold ingot:

                set {_itemcountg} to number of all gold ingots in clicked chest

                remove {_itemcountg} of gold ingots from clicked chest's inventory

                add {@1altinfiyati} * {_itemcountg} to the player's money

                send "{@p} &a%{_itemcountg}% altın satıldı. Kazanılan para: &c%{@1altinfiyati} * {_itemcountg}%"

            if clicked chest contains diamond:

                set {_itemcountd} to number of all diamonds in clicked chest

                remove {_itemcountd} of diamonds from clicked chest's inventory

                add {@1elmasfiyati} * {_itemcountd} to the player's money

                send "{@p} &a%{_itemcountd}% elmas satıldı. Kazanılan para: &c%{@1elmasfiyati} * {_itemcountd}%"

            if clicked chest contains emerald:

                set {_itemcounte} to number of all emeralds in clicked chest

                remove {_itemcounte} of emeralds from clicked chest's inventory

                add {@1zumrutfiyati} * {_itemcounte} to the player's money

                send "{@p} &a%{_itemcounte}% zümrüt satıldı. Kazanılan para: &c%{@1zumrutfiyati} * {_itemcounte}%"

            if clicked chest contains iron block:

                set {_itemcountib} to number of all iron blocks in clicked chest

                remove {_itemcountib} of iron blocks from clicked chest's inventory

                add {@1demirblock} * {_itemcountib} to the player's money

                send "{@p} &a%{_itemcountib}% demir blok satıldı. Kazanılan para: &c%{@1demirblock} * {_itemcountib}%"

            if clicked chest contains gold block:

                set {_itemcountgb} to number of all gold blocks in clicked chest

                remove {_itemcountgb} of gold blocks from clicked chest's inventory

                add {@1goldblock} * {_itemcountgb} to the player's money

                send "{@p} &a%{_itemcountgb}% altın blok satıldı. Kazanılan para: &c%{@1goldblock} * {_itemcountgb}%"

            if clicked chest contains diamond block:

                set {_itemcountdb} to number of all diamond blocks in clicked chest

                remove {_itemcountdb} of diamond blocks from clicked chest's inventory

                add {@1diablock} * {_itemcountdb} to the player's money

                send "{@p} &a%{_itemcountdb}% elmas blok satıldı. Kazanılan para: &c%{@1diablock} * {_itemcountdb}%"

            if clicked chest contains emerald block:

                set {_itemcounteb} to number of all emerald blocks in clicked chest

                remove {_itemcounteb} of emerald blocks from clicked chest's inventory

                add {@1zumrutblock} * {_itemcounteb} to the player's money

                send "{@p} &a%{_itemcounteb}% zümrüt blok satıldı. Kazanılan para: &c%{@1zumrutblock} * {_itemcounteb}%"

        else:

            send "{@p} &aSadece kendi sandığındaki madenleri satabilirsin."

  

on place of chest:

    add event-block's location to {chests::%player%::*}

on break of chest:

    if {chest::%player%::*} contains event-block's location:

        remove event-block's location from {chests::%player%::*}
 

LordOfTürk

Bööö!
Site İK Yöneticisi
En iyi cevaplar
83
Merhaba isteğini yeni gördüm , istediğin skripte benziyor , şu skripti kullanabilirsin ;

NOT: ALINTIDIR

Kod:
#Sandık içindeki eşyaları otomatik satma skripti

#Forum Gamer Darkkandadr



options:

    p: &eHover&fCraft &c> #Mesaj başlarındaki prefix

    cubukismi: &eSatış Çubuğu #Sandıktaki itemleri satmak için tıklanılacak çubuğun ismi

    1demirfiyati: 3000 #1 demirin satma fiyatı

    1altinfiyati: 4000 #1 altının satma fiyatı

    1elmasfiyati: 5000 #1 elmasın satma fiyatı

    1zumrutfiyati: 6000 #1 zümrütün satma fiyatı

    1demirblock: 27000 #1 demir bloğunun satma fiyatı

    1goldblock: 36000 #1 altın bloğunun satma fiyatı

    1diablock: 45000 #1 elmas bloğunun satma fiyatı

    1zumrutblock: 54000 #1 zümrüt bloğunun satma fiyatı



command /çubuk:

    trigger:

        give 1 stick named "{@cubukismi}" to player

on leftclick on chest with stick:

    if name of player's tool is "{@cubukismi}":

        if {chests::%player%::*} contains location of clicked chest:

            if clicked chest contains iron ingot:

                set {_itemcounti} to number of all iron ingots in clicked chest

                remove {_itemcounti} of iron ingots from clicked chest's inventory

                add {@1demirfiyati} * {_itemcounti} to the player's money

                send "{@p} &a%{_itemcounti}% demir satıldı. Kazanılan para: &c%{@1demirfiyati} * {_itemcounti}%"

            if clicked chest contains gold ingot:

                set {_itemcountg} to number of all gold ingots in clicked chest

                remove {_itemcountg} of gold ingots from clicked chest's inventory

                add {@1altinfiyati} * {_itemcountg} to the player's money

                send "{@p} &a%{_itemcountg}% altın satıldı. Kazanılan para: &c%{@1altinfiyati} * {_itemcountg}%"

            if clicked chest contains diamond:

                set {_itemcountd} to number of all diamonds in clicked chest

                remove {_itemcountd} of diamonds from clicked chest's inventory

                add {@1elmasfiyati} * {_itemcountd} to the player's money

                send "{@p} &a%{_itemcountd}% elmas satıldı. Kazanılan para: &c%{@1elmasfiyati} * {_itemcountd}%"

            if clicked chest contains emerald:

                set {_itemcounte} to number of all emeralds in clicked chest

                remove {_itemcounte} of emeralds from clicked chest's inventory

                add {@1zumrutfiyati} * {_itemcounte} to the player's money

                send "{@p} &a%{_itemcounte}% zümrüt satıldı. Kazanılan para: &c%{@1zumrutfiyati} * {_itemcounte}%"

            if clicked chest contains iron block:

                set {_itemcountib} to number of all iron blocks in clicked chest

                remove {_itemcountib} of iron blocks from clicked chest's inventory

                add {@1demirblock} * {_itemcountib} to the player's money

                send "{@p} &a%{_itemcountib}% demir blok satıldı. Kazanılan para: &c%{@1demirblock} * {_itemcountib}%"

            if clicked chest contains gold block:

                set {_itemcountgb} to number of all gold blocks in clicked chest

                remove {_itemcountgb} of gold blocks from clicked chest's inventory

                add {@1goldblock} * {_itemcountgb} to the player's money

                send "{@p} &a%{_itemcountgb}% altın blok satıldı. Kazanılan para: &c%{@1goldblock} * {_itemcountgb}%"

            if clicked chest contains diamond block:

                set {_itemcountdb} to number of all diamond blocks in clicked chest

                remove {_itemcountdb} of diamond blocks from clicked chest's inventory

                add {@1diablock} * {_itemcountdb} to the player's money

                send "{@p} &a%{_itemcountdb}% elmas blok satıldı. Kazanılan para: &c%{@1diablock} * {_itemcountdb}%"

            if clicked chest contains emerald block:

                set {_itemcounteb} to number of all emerald blocks in clicked chest

                remove {_itemcounteb} of emerald blocks from clicked chest's inventory

                add {@1zumrutblock} * {_itemcounteb} to the player's money

                send "{@p} &a%{_itemcounteb}% zümrüt blok satıldı. Kazanılan para: &c%{@1zumrutblock} * {_itemcounteb}%"

        else:

            send "{@p} &aSadece kendi sandığındaki madenleri satabilirsin."

 

on place of chest:

    add event-block's location to {chests::%player%::*}

on break of chest:

    if {chest::%player%::*} contains event-block's location:

        remove event-block's location from {chests::%player%::*}
mlsf denedim hatta baştan yazdırdım fakat bi süre sonra bu chest senin değil diyip duruyor .
 

MustafaDogu

Ağaç Yumruklayıcı
En iyi cevaplar
1
Merhabalar sevgili forum üyeleri ve ziyaretçiler
Sizden bugün otosat skript isticem skript dedimde pluginde olur aslında :D neyse
oyuncular otosat isteyip duruyor autosellchest mi neydi onu ve ona benzer pluginler denedim fakat lag yapıyor bi süre sonra tps yi inanılmaz şekilde düşürüyordu
lag yapmaması için 1-2dk bir satma yapcaksın ki lag yapmasın oda yetmiyor chest ler çok çabuk doluyor bu yüzden millet şikayet ediyor
satma çubuğu vardı skript forum da dendim skript ı tekrar yazdırdım gene dedim bir iki reload yiğince ayar için bug a giriyor ve bu senin sandığın değil diyip duruyor
plugin ini buldum oda çalışmadı hiç ne yapacağımı bilemedim bi akıl verirseniz güzel olur millet başımın etini yedi :D otosat otosat diye diye ...
(istediğim şey chest den çıkarmadan satmak)​
Öncellikle Merhaba Ben Bir Skript Bulmuştum Emek Skyblockta /demir sat Komutu Yazılınca 640 Demir Satıyordu Ve Bende Geliştirdim /altın sat /elmas sat /zümrüt sat ekledim Çok Basit Bir Skript Kendinde Editleye Billirsin İşini Görür Bence : (AMA TAVSİYE SK BULMA PLUGİN ARA SK SUNUCUYU YORAR)


JavaScript:
command /demir <text>:
    usage: &cKullanim: &7/demir sat
    trigger:
        if arg-1 is "sat":
            if player has 640 iron ingot:
                remove 640 iron ingot from player
                execute console command "/eco give %player% 4444440"
                send "&8[&c+&8] &7Envanterinden &c640 &7Demir Alindi Ve &c444440 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Demiriniz Yok! En Az &c640 &7Adet Olmali!" to player


command /altin <text>:
    usage: &cKullanim: &7/altin sat
    trigger:
        if arg-1 is "sat":
            if player has 640 gold ingot:
                remove 640 gold ingot from player
                execute console command "/eco give %player% 555550"
                send "&8[&c+&8] &7Envanterinden &c640 &7Altin Alindi Ve &c555550 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Altininiz Yok! En Az &c640 &7Adet Olmali!" to player


command /elmas <text>:
    usage: &cKullanim: &7/elmas sat
    trigger:
        if arg-1 is "sat":
            if player has 640 diamond:
                remove 640 diamond from player
                execute console command "/eco give %player% 777770"
                send "&8[&c+&8] &7Envanterinden &c640 &7Elmas Alindi Ve &c777770 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Elmassınız Yok! En Az &c640 &7Adet Olmali!" to player


command /zumrut <text>:
    usage: &cKullanim: &7/zumrut sat
    trigger:
        if arg-1 is "sat":
            if player has 640 emerald:
                remove 640 emerald from player
                execute console command "/eco give %player% 777770"
                send "&8[&c+&8] &7Envanterinden &c640 &7Zümrüt Alindi Ve &c777770 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Zümrüt Yok! En Az &c640 &7Adet Olmali!" to player
 

LordOfTürk

Bööö!
Site İK Yöneticisi
En iyi cevaplar
83
Öncellikle Merhaba Ben Bir Skript Bulmuştum Emek Skyblockta /demir sat Komutu Yazılınca 640 Demir Satıyordu Ve Bende Geliştirdim /altın sat /elmas sat /zümrüt sat ekledim Çok Basit Bir Skript Kendinde Editleye Billirsin İşini Görür Bence : (AMA TAVSİYE SK BULMA PLUGİN ARA SK SUNUCUYU YORAR)


JavaScript:
command /demir <text>:
    usage: &cKullanim: &7/demir sat
    trigger:
        if arg-1 is "sat":
            if player has 640 iron ingot:
                remove 640 iron ingot from player
                execute console command "/eco give %player% 4444440"
                send "&8[&c+&8] &7Envanterinden &c640 &7Demir Alindi Ve &c444440 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Demiriniz Yok! En Az &c640 &7Adet Olmali!" to player


command /altin <text>:
    usage: &cKullanim: &7/altin sat
    trigger:
        if arg-1 is "sat":
            if player has 640 gold ingot:
                remove 640 gold ingot from player
                execute console command "/eco give %player% 555550"
                send "&8[&c+&8] &7Envanterinden &c640 &7Altin Alindi Ve &c555550 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Altininiz Yok! En Az &c640 &7Adet Olmali!" to player


command /elmas <text>:
    usage: &cKullanim: &7/elmas sat
    trigger:
        if arg-1 is "sat":
            if player has 640 diamond:
                remove 640 diamond from player
                execute console command "/eco give %player% 777770"
                send "&8[&c+&8] &7Envanterinden &c640 &7Elmas Alindi Ve &c777770 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Elmassınız Yok! En Az &c640 &7Adet Olmali!" to player


command /zumrut <text>:
    usage: &cKullanim: &7/zumrut sat
    trigger:
        if arg-1 is "sat":
            if player has 640 emerald:
                remove 640 emerald from player
                execute console command "/eco give %player% 777770"
                send "&8[&c+&8] &7Envanterinden &c640 &7Zümrüt Alindi Ve &c777770 TL &7Degerinde Satildi!" to player
            else:
                send "&8[&c+&8] &7Yeterli Zümrüt Yok! En Az &c640 &7Adet Olmali!" to player
Teşekkürler ama ihtiyacım kalmadı konuyu kitlemeyi unutmuşum kb
KONU KİLİT !
 
Üst