Skript istegi acil

buraksz

Marangoz
Mesajlar
50
En iyi cevaplar
0
Beğeniler
6
Puanları
0
command gorevver [<text>]:
trigger:
if arg 1 is "elmas":
if player has 32 of 264:
remove 32 264 from player
send "{@p} 32 Elmas Gorevini Yaptınız ! 5000 TL Ve 12 Elmas Kazandınız."
execute console command "eco give %player% 5000"
else:
send "{@p}Yeterli Elmas'ınız Yok"



bu şekilde olan görevi adam öldürme olarak nasıl çevirebiliriz.

Örnek ;

10 Adam Öldür 5 TL kazan şeklinde
 


AtomyTR

Atomart - En büyük Discord Türk Sanat topluluğu.
Grafiker
Emekli
Mesajlar
1,671
En iyi cevaplar
19
Beğeniler
1,746
Puanları
5,090
Ruh hali
Senin verdiğin kodu düzeltmemizmi yoksa yeni bir kod yazmamızımı istiyorsun ?
 

xEndlessV2

Elmas Madencisi
Mesajlar
716
En iyi cevaplar
0
Beğeniler
326
Puanları
590
bi veriable yaparsın {gorevoldurme.%player%} şeklinde ,10 a ulaştığında ödüllerini falan bu sistem ile verdirirsin.Yazamazsan söle,denerim bende
 

TheHitman72

Marangoz
Mesajlar
44
En iyi cevaplar
0
Beğeniler
11
Puanları
0
PHP:
on death of player:
    attacker is player
    victim is player
    add 1 to {%attacker%.kill}
    if {%attacker%.kill} is 5:
        execute console command "echo give %attacker% 5000"

test etmedim ama muhtemelen hata yoktur

5 yazan yer oldurme sayısı

player yazan yer ise öldüreceği kişidir.

görev ver komutu ile ise

PHP:
command /gorevver [<text>]:
    trigger:
         add 1 to {%player%.gorev}

PHP:
on death of player:
    if {%player%.gorev} is 1:
        attacker is player
        victim is player
        add 1 to {%attacker%.kill}
        if {%attacker%.kill} is 5:
            execute console command "echo give %attacker% 5000"
 
Son düzenleme:

buraksz

Marangoz
Mesajlar
50
En iyi cevaplar
0
Beğeniler
6
Puanları
0
PHP:
on death of player:
    attacker is player
    victim is player
    add 1 to {%attacker%.kill}
    if {%attacker%.kill} is 5:
        execute console command "echo give %attacker% 5000"

test etmedim ama muhtemelen hata yoktur

5 yazan yer oldurme sayısı

player yazan yer ise öldüreceği kişidir.

görev ver komutu ile ise

PHP:
command /gorevver [<text>]:
    trigger:
         add 1 to {%player%.gorev}

PHP:
on death of player:
    if {%player%.gorev} is 1:
        attacker is player
        victim is player
        add 1 to {%attacker%.kill}
        if {%attacker%.kill} is 5:
            execute console command "echo give %attacker% 5000"
2 sini bir arada yapma şansın varmı üstte attıgım gibi , script bir arkadaşın paylaşmış ayırıp error almak istemiyorum .
 

xEndlessV2

Elmas Madencisi
Mesajlar
716
En iyi cevaplar
0
Beğeniler
326
Puanları
590
PHP:
on death of player:
    attacker is player
    victim is player
    add 1 to {%attacker%.kill}
    if {%attacker%.kill} is 5:
        execute console command "echo give %attacker% 5000"

test etmedim ama muhtemelen hata yoktur

5 yazan yer oldurme sayısı

player yazan yer ise öldüreceği kişidir.

görev ver komutu ile ise

PHP:
command /gorevver [<text>]:
    trigger:
         add 1 to {%player%.gorev}

PHP:
on death of player:
    if {%player%.gorev} is 1:
        attacker is player
        victim is player
        add 1 to {%attacker%.kill}
        if {%attacker%.kill} is 5:
            execute console command "echo give %attacker% 5000"
Bu şekilde yaparsan warn vericektir {kill.%attacker%} yazman daha sağlıklı
 

SnipeTR

Zombi Katili
Mesajlar
184
En iyi cevaplar
0
Beğeniler
67
Puanları
780
PHP:
on death of player:
    attacker is player
    victim is player
    add 1 to {%attacker%.kill}
    if {%attacker%.kill} is 5:
        execute console command "echo give %attacker% 5000"

test etmedim ama muhtemelen hata yoktur

5 yazan yer oldurme sayısı

player yazan yer ise öldüreceği kişidir.

görev ver komutu ile ise

PHP:
command /gorevver [<text>]:
    trigger:
         add 1 to {%player%.gorev}

PHP:
on death of player:
    if {%player%.gorev} is 1:
        attacker is player
        victim is player
        add 1 to {%attacker%.kill}
        if {%attacker%.kill} is 5:
            execute console command "echo give %attacker% 5000"
On death of player demişsin altına victim is player demişsin ne gerek var?
 

TheHitman72

Marangoz
Mesajlar
44
En iyi cevaplar
0
Beğeniler
11
Puanları
0
Nolur nolmaz

Discovery cihazımdan Tapatalk kullanılarak gönderildi
 

SnipeTR

Zombi Katili
Mesajlar
184
En iyi cevaplar
0
Beğeniler
67
Puanları
780
Kod:
command gorevver [<text>]:
    trigger:
        arg 1 is "adamoldurme":
            set {adamoldurme.%player%} to 1

on death:
    attacker is player
    victim is player
    {adamoldurme.%player%} is 1
    add 1 to {adamoldurmesayi.%player%}
    {adamoldurmesayi.%player%} is 10
    add 5 to player's balance
    delete {adamoldurme.%player%}
 

Üst