Skocz do zawartości

DevDavEd_zQ

Użytkownik
  • Ilość zawartości

    60
  • Rejestracja

  • Ostatnia wizyta

Ostatnie wizyty

Blok z ostatnimi odwiedzającymi dany profil jest wyłączony i nie jest wyświetlany użytkownikom.

Osiągnięcia DevDavEd_zQ

Początkujący III

Początkujący III (4/13)

2

Reputacja

  1. nie potrzebbuje juz
  2. wiesz ze to cheaty?
  3. sprobuj z chatgpt
  4. Skladnia jak on move: nawet nie istnieje sprobuj: on player move: chb do on player move: musisz miec skquery/skutilites ale nwm
  5. Masz tutaj moj skrypt ktory kiedys robilem moze nie jest to z vault ale dziala wymagane pluginy: Skript, ItemEdit
  6. Witam mam problem z tym skryptem bo chce zrobic parkour z timerem, placeholderami ale nie dziala mi skrypt co mam: options: tick-ms: 50 # ------------------------ # TIMER START # ------------------------ on step on gold block: if world of player is "lobby": if {timer.running.%uuid of player%} is not set: set {timer.ms.%uuid of player%} to 0 set {timer.running.%uuid of player%} to true send action bar "&aCzas: &f0h 0m 0s 0ms" to player send "&8>> &aAby zatrzymać czas, napisz &2/parkourstop&a!" to player else: send "&cJuż masz włączony timer!" to player # ------------------------ # TIMER STOP I RANKING # ------------------------ on step on oak pressure plate: if world of player is "lobby": if {timer.running.%uuid of player%} is true: set {_time} to {timer.ms.%uuid of player%} # konwersja milisekund set {_hours} to floor({_time} / 3600000) set {_time} to {_time} - ({_hours} * 3600000) set {_minutes} to floor({_time} / 60000) set {_time} to {_time} - ({_minutes} * 60000) set {_seconds} to floor({_time} / 1000) set {_millis} to {_time} - ({_seconds} * 1000) # aktualizacja najlepszego czasu if {parkour.besttime.%uuid of player%} is not set: set {parkour.besttime.%uuid of player%} to {timer.ms.%uuid of player%} else if {timer.ms.%uuid of player%} < {parkour.besttime.%uuid of player%}: set {parkour.besttime.%uuid of player%} to {timer.ms.%uuid of player%} # tworzenie rankingu z nazwami graczy clear {parkour.ranking::*} loop {parkour.besttime::*}: add "%loop-index%;%loop-value%;%loop-player%" to {parkour.ranking::*} # sortowanie po czasie set {_temp::*} to {parkour.besttime::*} clear {parkour.sorted::*} while {_temp::*} is set: set {_bestUUID} to first element out of {_temp::*} set {_bestTime} to {_temp::%{_bestUUID}%} loop {_temp::*}: if {_temp::%loop-index%} < {_bestTime}: set {_bestUUID} to loop-index set {_bestTime} to {_temp::%loop-index%} add "%{_bestUUID}%;%{_bestTime}%;%player of {_bestUUID}%" to {parkour.sorted::*} delete {_temp::%{_bestUUID}%} set {parkour.ranking::*} to {parkour.sorted::*} execute console command "lobby %player%" send "&8>> &aPrzeszedłeś parkour w &2%{_hours}%h %{_minutes}%m %{_seconds}%s %{_millis}%ms&a!" to player delete {timer.running.%uuid of player%} delete {timer.ms.%uuid of player%} send action bar " " to player # ------------------------ # CZYSZCZENIE # ------------------------ on world change: delete {timer.running.%uuid of player%} delete {timer.ms.%uuid of player%} send action bar " " to player on quit: delete {timer.running.%uuid of player%} delete {timer.ms.%uuid of player%} # ------------------------ # KOMENDA STOP # ------------------------ command /parkourstop: trigger: if {timer.running.%uuid of player%} is true: delete {timer.running.%uuid of player%} delete {timer.ms.%uuid of player%} send "&aTimer został zatrzymany." to player send action bar " " to player else: send "&cNie masz włączonego timera." to player # ------------------------ # TIMER UPDATE # ------------------------ every 1 tick: loop all players: if {timer.running.%uuid of loop-player%} is true: if world of loop-player is "lobby": add {@tick-ms} to {timer.ms.%uuid of loop-player%} set {_time} to {timer.ms.%uuid of loop-player%} set {_hours} to floor({_time} / 3600000) set {_time} to {_time} - ({_hours} * 3600000) set {_minutes} to floor({_time} / 60000) set {_time} to {_time} - ({_minutes} * 60000) set {_seconds} to floor({_time} / 1000) set {_millis} to {_time} - ({_seconds} * 1000) send action bar "&aCzas: &f%{_hours}%h %{_minutes}%m %{_seconds}%s %{_millis}%ms" to loop-player # ------------------------ # PLACEHOLDERAPI # ------------------------ placeholderapi placeholder with the prefix "parkourrankingtop": set {_arg} to placeholder identifier if {_arg} is not set: set result to "&7Błędny numer pozycji" stop set {_index} to {_arg} parsed as number if {_index} <= 0: set result to "&7Błędny numer pozycji" stop if {parkour.ranking::%{_index}%} is not set: set result to "&7Brak gracza" stop set {_line} to {parkour.ranking::%{_index}%} set {_playername} to third element of split {_line} at ";" set {_time} to second element of split {_line} at ";" set {_ms_total} to {_time} set {_hours} to floor({_ms_total} / 3600000) set {_ms_total} to {_ms_total} - ({_hours} * 3600000) set {_minutes} to floor({_ms_total} / 60000) set {_ms_total} to {_ms_total} - ({_minutes} * 60000) set {_seconds} to floor({_ms_total} / 1000) set {_millis} to {_ms_total} - ({_seconds} * 1000) set result to "&f%{_index}%. &7%{_playername}% &f%{_hours}%h %{_minutes}%m %{_seconds}%s %{_millis}%ms" bledy sa takie: ( mam skquery i skutilites i sk-placeholders ) [13:46:12] [INFO]: Line 44: (parkour.sk) [13:46:12] [INFO]: There's no loop that matches 'loop-player' [13:46:12] [INFO]: Line: add "%loop-index%;%loop-value%;%loop-player%" to {parkour.ranking::*} [13:46:12] [INFO]: [13:46:12] [INFO]: Line 56: (parkour.sk) [13:46:12] [INFO]: Can't understand this expression: player of {_bestUUID} [13:46:12] [INFO]: Line: add "%{_bestUUID}%;%{_bestTime}%;%player of {_bestUUID}%" to {parkour.sorted::*} [13:46:12] [INFO]: [13:46:12] [INFO]: Line 131: (parkour.sk) [13:46:12] [INFO]: Can't understand this expression: 'third element of split {_line} at ";"' [13:46:12] [INFO]: Line: set {_playername} to third element of split {_line} at ";" [13:46:12] [INFO]: [13:46:12] [INFO]: Line 132: (parkour.sk) [13:46:12] [INFO]: Can't understand this expression: 'second element of split {_line} at ";"' [13:46:12] [INFO]: Line: set {_time} to second element of split {_line} at ";" [13:46:12] [INFO]:
  7. DevDavEd_zQ

    Witam

    Napisz mi pełny skrypt w .sk (Skript do Minecraft), który dodaje komendę /homes z aliasami /home, /dom i /domy. Skrypt ma działać tak: 1. Po wpisaniu komendy otwiera GUI z czerwonymi łóżkami w slotach 10-15. 2. Każde łóżko ma nazwę "Dom" i lore: - "&fLPM &8- &fTeleport" - "&fPPM &8- &fUstaw lokalizacje domu" 3. Kliknięcie PPM (prawy przycisk) ustawia lokalizację domu gracza: - Zamknij GUI - Wyślij wiadomość: "&8>> &aPomyslnie &2ustawiles lokalizacje &adomu!" 4. Kliknięcie LPM (lewy przycisk) teleportuje gracza: - Najpierw sprawdź, czy lokalizacja domu jest ustawiona. Jeśli nie, wyślij wiadomość: "&8>> &cNie masz ustawionego domu! Użyj PPM, aby ustawić lokalizacje." - Zamknij GUI - Odpal countdown teleportacji 3 sekundy: - 3s: send title with subtitle "&fTeleportowanie do &7domu &fza 3s" itd - Teleportuj gracza na ustawioną lokalizację
  8. 10 mies temu ale ok
  9. Nie wiem chyba nie moge tego zrobic caly czas wywalaly mi bledy i probowalem naprawic ale nie dzialalo wiec jesli bardzo potrzebujesz polecam jakies ai lub jakiegos lepszego skryptera. Pozdrawiam
  10. DevDavEd_zQ

    potrzebuje skryptu

    Siema, potrzebuję skrypt w Skript plugin do Minecrafta, który zrobi system portfela z walutą VPLN. Chcę komendy: /portfel — pokazuje gui z rangami np VIP SVIP SPONSOR ELITA klucze do skryn, ( plugin do skrzyn to getcase a plugin na rangi mam luckperms ) /addportfel <gracz> <kwota> — dodaje kasę (z tab complete na graczy), /setportfel <gracz> <kwota> — ustawia kasę, /checkcash <gracz> alias /cc — pokazuje kasę innego gracza, oraz żeby kasa była pokazywana na scoreboardzie i w tabie, wszystko prosto i czytelnie. Np jakis placeholder %player_cashvpln% ktore pokazuje ile sie ma hajsu
  11. DevDavEd_zQ

    Pomocy

    i jak se zrobilem tak jak ty napisales to moge wszystko zabierac z gui i mnie nie teleportuje
  12. DevDavEd_zQ

    Pomocy

    nie mam tak:
  13. DevDavEd_zQ

    Pomocy

    Zmienilem mam blad teraz Mam blad w line 24 error to: Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section. Line: if name of event-inventory is "&x&f&f&f&f&f&fᴡ&x&f&4&f&4&f&4ʏ&x&e&8&e&8&e&8ʙ&x&d&d&d&d&d&dɪ&x&d&2&d&2&d&2ᴇ&x&c&7&c&7&c&7ʀ&x&b&b&b&b&b&bᴢ &x&a&5&a&5&a&5ᴛ&x&9&a&9&a&9&aʀ&x&8&e&8&e&8&eʏ&x&8&3&8&3&8&3ʙ": i jak usuwam te : na koncu to mam błąd: Line 24: event-inventory is not a living entity.
  14. DevDavEd_zQ

    Pomocy

    Potrzebuje pomocy z skryptem bo mam blad w name of player's event-inventory is "&x&f&f&f&f&f&fᴡ&x&f&4&f&4&f&4ʏ&x&e&8&e&8&e&8ʙ&x&d&d&d&d&d&dɪ&x&d&2&d&2&d&2ᴇ&x&c&7&c&7&c&7ʀ&x&b&b&b&b&b&bᴢ &x&a&5&a&5&a&5ᴛ&x&9&a&9&a&9&aʀ&x&8&e&8&e&8&eʏ&x&8&3&8&3&8&3ʙ": Tutaj ten blad: Line 24: (lobby.sk) Can't compare 'name of player's event inventory' with a text Line: name of player's event-inventory is "&x&f&f&f&f&f&fᴡ&x&f&4&f&4&f&4ʏ&x&e&8&e&8&e&8ʙ&x&d&d&d&d&d&dɪ&x&d&2&d&2&d&2ᴇ&x&c&7&c&7&c&7ʀ&x&b&b&b&b&b&bᴢ &x&a&5&a&5&a&5ᴛ&x&9&a&9&a&9&aʀ&x&8&e&8&e&8&eʏ&x&8&3&8&3&8&3ʙ": i normalnie dziala mi ten zegar ale jak mam wlaczonego chesta ( skrzynke ) lub swoje inventory i jak klikne w jakis slot to mnie przenosi na ten swiat
  15. a mozna caly skrypt bo caly czas mi nadal wywala bledy
×
×
  • Dodaj nową pozycję...