Vuzzlee
Birisi mi Spawnlandı?
- Katılım
- 23 Kasım 2025
- Mesajlar
- 1
- Elmaslar
- 1
- Puan
- 125
- Yaş
- 25
- Konum
- bilmorum
- Minecraft
- Vuzzleeee
Discord:
vuzzlee
Bu skript, sunucuda otomatik olarak çalışan Kelime ve Matematik Yarışması sistemi oluşturur.
- Her 3 dakikada bir rastgele seçilebilir.
- random şekilde eklediniz kelimeleri secer
- Seçilen kelime sunucuya duyurulur.
- Oyuncular 20 saniye içinde kelimey doğru şekilde yazmaya çalışır.
- İlk doğru yazan oyuncu kazanır.
- Zorluk derecesi ortalama şekilde ayarlanmıştır.
- Soru duyurulduktan sonra oyuncular 20 saniye içinde cevabı yazmaya çalışır.
- İlk doğru cevabı yazan kazanır.
# CHAT OYUNU SKRİPTİ
# YAPIMCISI:VUZZLEE
variables:
{yarisma.aktif} = false
{yarisma.cevap} = ""
{yarisma.tur} = ""
on load:
set {yarisma.aktif} to false
every 3 minutes:
if {yarisma.aktif} is false:
set {_tur} to random integer between 1 and 2
if {_tur} is 1:
set {yarisma.aktif} to true
set {yarisma.tur} to "kelime"
set {_kelimeler::1} to "mctr"
set {_kelimeler::2} to "vuzzleee"
set {_kelimeler::3} to "zxcvbnmasdfg"
set {_kelimeler::4} to "poiuytrewqas"
set {_kelimeler::5} to "lkjhgfdsaqwe"
set {_kelimeler::6} to "mnbvcxzlkjhg"
set {_kelimeler::7} to "qazwxedcrfv"
set {_kelimeler::8} to "plmoknijbuhy"
set {_kelimeler::9} to "tgyhujikoplm"
set {_kelimeler::10} to "vfrcdetgbyhn"
set {_rastgele} to random integer between 1 and 50
set {yarisma.cevap} to {_kelimeler::%{_rastgele}%}
broadcast "&b&lKELIME &7| &f&lYARISMASI"
broadcast ""
broadcast " &7Kelime: &e%{yarisma.cevap}%"
broadcast ""
broadcast " &b20 Saniye Icerisinde ilk dogru yazan kazanir"
wait 20 seconds
if {yarisma.aktif} is true:
if {yarisma.tur} is "kelime":
set {yarisma.aktif} to false
set {yarisma.cevap} to ""
set {yarisma.tur} to ""
else:
set {yarisma.aktif} to true
set {yarisma.tur} to "matematik"
set {_islem} to random integer between 1 and 3
if {_islem} is 1:
set {_sayi1} to random integer between 50 and 150
set {_sayi2} to random integer between 30 and 120
set {_soru} to "%{_sayi1}% + %{_sayi2}%"
set {yarisma.cevap} to "%{_sayi1} + {_sayi2}%"
else if {_islem} is 2:
set {_sayi1} to random integer between 100 and 250
set {_sayi2} to random integer between 30 and 150
set {_soru} to "%{_sayi1}% - %{_sayi2}%"
set {yarisma.cevap} to "%{_sayi1} - {_sayi2}%"
else:
set {_carpan1} to random integer between 12 and 25
set {_carpan2} to random integer between 8 and 20
set {_soru} to "%{_carpan1}% x %{_carpan2}%"
set {yarisma.cevap} to "%{_carpan1} * {_carpan2}%"
broadcast "&b&lMATEMATIK &7| &f&lYARISMASI"
broadcast ""
broadcast " &7Soru: &e%{_soru}% &7= ?"
broadcast ""
broadcast " &b20 Saniye Icerisinde ilk dogru yazan kazanir"
wait 20 seconds
if {yarisma.aktif} is true:
if {yarisma.tur} is "matematik":
set {yarisma.aktif} to false
set {yarisma.cevap} to ""
set {yarisma.tur} to ""
on chat:
if {yarisma.aktif} is true:
if {yarisma.tur} is "kelime":
if message is {yarisma.cevap}:
cancel event
broadcast " &aTEBRIKLER &f%player%"
broadcast " &7Soruyu ilk cevaplayan sen oldun"
broadcast ""
execute console command "eco give %player% 5000"
set {yarisma.aktif} to false
set {yarisma.cevap} to ""
set {yarisma.tur} to ""
else if {yarisma.tur} is "matematik":
set {_cevap} to message parsed as number
set {_dogru} to {yarisma.cevap} parsed as number
if {_cevap} is {_dogru}:
cancel event
broadcast " &aTEBRIKLER &f%player%"
broadcast " &7Soruyu ilk cevaplayan sen oldun"
broadcast ""
execute console command "eco give %player% 5000"
set {yarisma.aktif} to false
set {yarisma.cevap} to ""
set {yarisma.tur} to ""
Moderatör tarafından düzenlendi: