DevDavEd_zQ
Użytkownik-
Ilość zawartości
60 -
Rejestracja
-
Ostatnia wizyta
Treść opublikowana przez DevDavEd_zQ
-
nie potrzebbuje juz
-
wiesz ze to cheaty?
-
spolszczenie Tłumaczenie pliku config w Vulcan
DevDavEd_zQ odpowiedział(a) na Europegaz11 pytanie w Pytania i problemy
sprobuj z chatgpt- 1 odpowiedź
-
- tłumacznie
- vulcan
-
(i 2 więcej)
Oznaczone tagami:
-
prosze o propawienie skryptu, wywala mi taki blad: cant understand this structure: on walk
DevDavEd_zQ odpowiedział(a) na OskarYTYT pytanie w Pytania i problemy
Skladnia jak on move: nawet nie istnieje sprobuj: on player move: chb do on player move: musisz miec skquery/skutilites ale nwm -
Masz tutaj moj skrypt ktory kiedys robilem moze nie jest to z vault ale dziala wymagane pluginy: Skript, ItemEdit
-
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]:
-
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ę
-
10 mies temu ale ok
-
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
-
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
-
i jak se zrobilem tak jak ty napisales to moge wszystko zabierac z gui i mnie nie teleportuje
-
nie mam tak:
-
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.
-
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
-
a mozna caly skrypt bo caly czas mi nadal wywala bledy
-
moze jakies dalsze opowiedzienie co on ma robic?
-
Jakei to maja byc iitemy i co one maja robic?
-
https://imgur.com/a/ZyrsGe6 tu masz zdjecie
-
mam tutaj taki skrypt i blad mi wywala gdy uzywam /sk reload portfel.sk on placeholderapi request for prefix "portfel": blad to Can't understand this structure: on placeholderapi request for prefix "portfel" mam skript-placeholders wersja 1.7.0 a wersja skript mam 2.12.1 i mam placeholderapi
-
Line 22: (lobby.sk) Can't understand this condition: 'clicked item is set' Line: if clicked item is set: Encountered 1 error while reloading lobby.sk! (91ms)
-
MA KTOŚ PLUGIN/SKRIPT NA KONSOLE Z DISCORDA
DevDavEd_zQ odpowiedział(a) na PapryczkaYT1 temat w Skrypty
w webhook_url wpisz swoj webhook kanalu na dc swoim aby dostac webhook Wejdź na Discorda i przejdź do swojego serwera, gdzie chcesz mieć konsolę. Kliknij prawym przyciskiem myszy na kanał tekstowy, do którego chcesz wysyłać wiadomości (np. #konsola-serwera). Wybierz Edytuj kanał (Edit Channel). Po lewej stronie kliknij zakładkę Integracje (Integrations). W sekcji Webhooki kliknij Nowy webhook (New Webhook). Nadaj mu nazwę, np. "Konsola Minecraft" i wybierz kanał (np. #konsola-serwera). Kliknij Kopiuj adres webhooka (Copy Webhook URL) – to jest ten magiczny URL, który musisz dać do skryptu. Zapisz i zamknij. -
probowalem nie dziala
-
on join: wait 1 second execute console command "mvtp %player% Lobby" wait 1 second if world of player is "Lobby": clear player's inventory give clock named "&b&lWybierz Tryb" to slot 4 of player on right click with clock: if name of player's tool is "&b&lWybierz Tryb": open chest inventory with 3 rows named "&aWybierz Tryb" to player set slot 13 of player's current inventory to diamond sword named "&c&lBoxPvP" with lore "&f", "&aKliknij aby dolaczyc" on left click with clock: if name of player's tool is "&b&lWybierz Tryb": open chest inventory with 3 rows named "&aWybierz Tryb" to player set slot 13 of player's current inventory to diamond sword named "&c&lBoxPvP" with lore "&f", "&aKliknij aby dolaczyc" on inventory click: if name of event-inventory is "&aWybierz Tryb": cancel event if clicked item is set: if name of clicked item equals "&c&lBoxPvP": close player's inventory execute console command "mvtp %player% BoxPvP" i mam blad w if clicked item is set: pomoze ktos i naprawi ten skrypt?
-
tu jest skrypt taki i pokazuje takie bledy czemó line 13: (skup.sk) a slot cant be set to spider_eye named oko pajaka with lore cena 2.00 zk because the latter is neither an item type nor an item stack i tak pisze na lini 12 i 7 i 6 i 5
-
poprosze o skrypt do minecraft skript pluginu zeby w obrebu 30 kratek jak nie ma osoby jakiejs to pisze &cNikt cie nie uslyszal i zeby tej wiadomosci nie bylo widac a jak jest jakas osoba w obrebie 30 kratek to nic nie pisz i na /krzyk i wiadomosc to na inf kratek i pisze &7&l[KRZYK] &f(nickgracza) i wiadomosc
