Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # CusTMPC.cba.pl #
- # Strona z skryptami # Znajdziesz tam jeszcze wiecej skryptów ! #
- options:
- Prefix: &7*[&9Punkty&7]*
- Wiadomosc+: &8**Gracz &2%player% &8Wlasnie oddal &2dobry &8glos na serwer !
- Wiadomosc-: &8**Gracz &2%player% &8Wlasnie oddal &4Zly &8Glos na serwer !
- variables:
- {punkty.%player%} = false
- {punkty+} = 0
- {punkty-} = 0
- command /daj [<text>]:
- trigger:
- arg 1 is not set:
- send "{@Prefix} &7Uzyj /daj +/- "
- arg 1 is "+":
- if {punkty.%player%} is true:
- send "{@Prefix} &7Oddales juz glos na ten serwer !" to player
- stop
- if {punkty.%player%} is false:
- add 1 to {punkty+}
- set {punkty.%player%} to true
- broadcast "{@Wiadomosc+}"
- send "{@Prefix}&2+ &7Dla serwera zostal dodany !"
- stop
- {punkty+} is greater than 10:
- broadcast "&2Gratulacje ! &9Ten serwer zebral juz &210 dobrych glosow !"
- stop
- {punkty+} is greater than 25:
- broadcast "&2Gratulacje ! &9Ten serwer zebral juz &225 dobrych glosow !"
- stop
- {punkty+} is greater than 50:
- broadcast "&2Gratulacje ! &9Ten serwer zebral juz &250 dobrych glosow !"
- stop
- arg 1 is "-":
- if {punkty.%player%} is true:
- send "{@Prefix} &7Oddales juz glos na ten serwer !" to player
- stop
- if {punkty.%player%} is false:
- add 1 to {punkty-}
- set {punkty.%player%} to true
- broadcast "{@Wiadomosc-}"
- send "{@Prefix}&4- &7Dla serwera zostal dodany !"
- stop
- {punkty-} is greater than 10:
- broadcast "&7Niestety, ale serwer zebral juz 10 zlych glosow !"
- stop
- {punkty-} is greater than 25:
- broadcast "&7Niestety, ale serwer zebral juz 25 zlych glosow !"
- stop
- {punkty-} is greater than 50:
- broadcast "&7Niestety, ale serwer zebral juz 50 zlych glosow !"
- stop
- command /punkty:
- trigger:
- send "{@Prefix} &8Ten serwer zebral &2%{punkty+}% &8dobrych glosow, oraz &4%{punkty-}% &8negatywnych glosow" to player
Advertisement
Add Comment
Please, Sign In to add comment