[İstek] Skript pvp rütbe

scorpion53

Taş Madencisi
En iyi cevaplar
0
merhaba ben serverim için bi skript istiyorum bu skript adam öldürdükçe 7-8 puan gelcek ölünce 3-4 puan gitcek belli puana gelince diyelim 400 puan katil rütbesine atlicak bu şekikde 5 rütbe olcak bunu dışında chatte isminin yanında puanı gözükcek yapabilcek arkadaş varmı ?
 

KuKyn

Taş Madencisi
En iyi cevaplar
0
merhaba ben serverim için bi skript istiyorum bu skript adam öldürdükçe 7-8 puan gelcek ölünce 3-4 puan gitcek belli puana gelince diyelim 400 puan katil rütbesine atlicak bu şekikde 5 rütbe olcak bunu dışında chatte isminin yanında puanı gözükcek yapabilcek arkadaş varmı ?

Forumları Biraz Araştırsan Bulabilirsin
Bu Skript Benim Degil.

---------------------------------------------------------------------------------
Skript Hakkında
Skriptimizde Belirlenen Puanlara Gelince O Rütbeye Ulaşıyoruz
Öldürünce +3 Puan Ölünce -1 Puanımız Gidiyor

---------------------------------------------------------------------------------
Cellat = 400 Point
Katil = 800 Point
Seri Katil = 1800 Point
Terminatör = 2500 Point
ÖlümMakinası = 4000 Point



Kod:
on death:
    attacker is a player
    victim is a player
    add 3 to {puan::%attacker%}
    add -1 to {puan::%victim%}
    if {puan::%attacker%} is 400:
        send "&a400 &6puana sahipsin" to attacker
        loop 3 times:
            execute console command "/playsound fireworks.largeBlast %attacker%"
            execute console command "/playsound fireworks.twinkle_far %attacker%"
            execute console command "/playsound fireworks.blast %attacker%"
        execute console command "/manuadd %attacker% cellat"
    else:   
        if {puan::%attacker%} is 800:
            send "&6800 puana sahipsin" to attacker
            loop 3 times:
                execute console command "/playsound fireworks.largeBlast %attacker%"
                execute console command "/playsound fireworks.twinkle_far %attacker%"
                execute console command "/playsound fireworks.blast %attacker%"
            execute console command "/manuadd %attacker% katil"
        else:
            if {puan::%attacker%} is 1500:
                send "&61500 puana sahipsin" to attacker
                loop 3 times:
                    execute console command "/playsound fireworks.largeBlast %attacker%"
                    execute console command "/playsound fireworks.twinkle_far %attacker%"
                    execute console command "/playsound fireworks.blast %attacker%"
                execute console command "/manuadd %attacker% serikatil"
            else:
                if {puan::%attacker%} is 2500:
                    send "&62500 puana sahipsin" to attacker
                    loop 3 times:
                        execute console command "/playsound fireworks.largeBlast %attacker%"
                        execute console command "/playsound fireworks.twinkle_far %attacker%"
                        execute console command "/playsound fireworks.blast %attacker%"
                    execute console command "/manuadd %attacker% terminatör"
                else:
                    if {puan::%attacker%} is 4000:
                        send "&64000 puana sahipsin" to attacker
                        loop 3 times:
                            execute console command "/playsound fireworks.largeBlast %attacker%"
                            execute console command "/playsound fireworks.twinkle_far %attacker%"
                            execute console command "/playsound fireworks.blast %attacker%"
                        execute console command "/manuadd %attacker% OlumMakinesi"
  


command /sıfırla <text>:
    trigger:
        delete {puan::%arg%}
        send "&6Leveli başarıyla sıfırladınız" to player
        
      
command /puanbak:
    trigger:
        if {puan::%player%} is 4000:
            send "&a4000 &bPuana sahipsin. Ötesi yok !"
        else:   
            send "&6Levelin: &a%{puan::%player%}%"

 
Üst