Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

[DL] SKRYPTY D3STROY'a - Zapraszam !


Rekomendowane odpowiedzi

Opublikowano

Cześć.

Z tej strony D3STROY.

W tym temacie będę udostępniał Wam zagraniczne skrypty, które spolszczę i Wam je przekaże.

Będę wykonywał to dopóki nie naucze się dobrze pisać pluginów :]

 

 

1378737569-U997276.png

#Instalacja skryptów:

1. Musimy posiadać wgrany plugin Skript ( http://dev.bukkit.org/bukkit-plugins/skript/ )

2. Przy każdym z skryptów jest kod danego skryptu.

3. Kopiujemy ten kod z białego pola, wklejamy np. do Notepad++ i zapisujemy z roszerzeniem .sk.

3. Każdy plik wrzucamy do plugins/Skript/scripts

4. Reloadujemy plugin ( /skript reload ) i cieszymy się nowym skryptem :]

#PvPTimer - Ochrona graczy nowych graczy - autor : midnifgtfang22 - Polska wersja D3STROY

#PvPTimer
#Autor: midnifgtfang22
#Spolszczenie: D3STROY
options:

	#Settings:
	Pvp-World: "world"   /świat na którym mają być chronieni
	#What worlds does this script apply to? This is used for all events, so make sure it is set correctly
	Pvp-Timer-Protection: 30 minutes  /ile mają być chronieni ?
	#How long are they protected for?
	Allow-Pickup: false   /mogą podnosić itemy podczas ochrony?
	#Will you allow the player to pickup items while their timer is active? Set this to false to activate it
	Allow-Placing: false  /mogą budować -||-
	#Will you allow the player to place items while their timer is active? Set this to false to activate it
	Allow-Breaking: false
	#Will you allow the player to break items while their timer is active? Set this to false to activate it
	Protect-From-Mobs: false
	#Does the time protection extend to not only players, but mobs? Set this to true to activate it

#Idea for PvP timer script. Works as intended.
on teleport:
	if the former world was not {@Pvp-World}:
		if the future world is {@Pvp-World}:
			if {pvptimer.timeexpired::%name of player%} is set:
				stop
			else:
				if {pvptimer.timeleft::%name of player%} is set:
					stop
				else:
					set {pvptimer.timeleft::%name of player%} to now
					message "&aTwoja ochrona zostala wlaczona. W {@Pvp-Timer-Protection}, Twoja ochrona wlaczy sie automatycznie."
			
#Actual script to block pvp/decrease variables
on damage of player:
	if {@Protect-From-Mobs} is true:
		if attacker is a player or entity:
			if attacker is not tnt:
				set {_check} to true
			if attacker is not a player:
				set {_notPlayer} to true
	else:
		if attacker is a player:
			set {_check} to true
	if {_check} is set:
		if world is {@Pvp-World}:
			if {_notPlayer} is not set:
				if {pvptimer.timeleft::%name of attacker%} is set:
					if difference between {pvptimer.timeleft::%name of attacker%} and now is less than {@Pvp-Timer-Protection}:
						cancel event
						send "&cYou cannot attack while your PvP protection is enabled" to the attacker
					else:
						set {pvptimer.timeexpired::%name of attacker%} to true
						delete {pvptimer.timeleft::%name of attacker%}
						message "&dTwoja ochrona zniknela, powodzenia!" to attacker
			if {pvptimer.timeleft::%name of victim%} is set:
				if difference between {pvptimer.timeleft::%name of victim%} and now is less than {@Pvp-Timer-Protection}:
					cancel event
					send "&cTen gracz jest chroniony." to the attacker
				else:
					set {pvptimer.timeexpired::%name of victim%} to true
					delete {pvptimer.timeleft::%name of victim%}
					message "&dTwoja ochrona zniknela, powodzenia!" to victim
				
#PvP Timer Command (to turn it off manually) and check time remaining
command /pvptimer [<text>] [<player>]:
	description: Wylacz swoja ochrone wczesniej.
	permission: pvp.timer
	usage: /pvptimer
	trigger:
		if world is {@Pvp-World}:
			if arg 1 is set:
				if arg 2 is set:
					if player has permission "pvp.timer.admin":
						if arg 1 is "timer" or "time":
							if {pvptimer.TimeExpired.%name of arg 2%} is true:
								message "&dTen gracz nie ma dluzej ochrony."
							else:
								set {_time} to difference between {pvptimer.TimeLeft.%name of arg 2%} and now
								message "&5Pozostaly czas: %difference between {_time} and {@Pvp-Timer-Protection}%"
						if arg 1 is "off":
							if {pvptimer.TimeExpired.%name of arg 2%} is true:
								message "&aOchrona tego gracza zostala przedluzona !"
							else:
								set {pvptimer.TimeExpired.%name of arg 2%} to true
								delete {pvptimer.TimeLeft.%name of arg 2%}
								delete {pvptimer.HasJoined.%name of arg 2%}
								message "&aYou have manually disabled the PvP protection of &6%name of arg 2%."
								message "&aYour PvP protection has been disabled by an Admin. Good Luck!" to arg 2
					else:
						message "&cYou cannot do that"
				else:
					if arg 1 is "timer" or "time":
						if {pvptimer.timeexpired::%name of player%} is set:
							message "&dYour safety time has already expired"
						else:
							set {_time} to difference between {pvptimer.timeleft::%name of player%} and now
							message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
					if arg 1 is "off":
						if {pvptimer.timeexpired::%name of player%} is set:
							message "&dYour safety time has already expired"
						else:
							set {pvptimer.timeexpired::%name of player%} to true
							delete {pvptimer.timeleft::%name of player%}
							message "&aYou have manually disabled your PvP protection. Good Luck!"
			else:
				message "&5PvP Timer Help (PL/D3STRO):"
				if player has permission "pvp.timer.admin":
					message "&d- timer [player]"
					message "&d- off [player]"
				else:
					message "&d- timer"
					message "&d- off"
		else if player has permission "pvp.timer.admin":
			if arg 1 is set:
				if arg 2 is set:
					if arg 1 is "timer" or "time":
						if {pvptimer.TimeExpired.%name of arg 2%} is true:
							message "&dThat player no longer has PvP Protection."
						else:
							set {_time} to difference between {pvptimer.TimeLeft.%name of arg 2%} and now
							message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
					if arg 1 is "off":
						if {pvptimer.TimeExpired.%name of arg 2%} is true:
							message "&aThat player's safety time has already expired"
						else:
							set {pvptimer.TimeExpired.%name of arg 2%} to true
							delete {pvptimer.TimeLeft.%name of arg 2%}
							delete {pvptimer.HasJoined.%name of arg 2%}
							message "&aYou have manually disabled the PvP protection of &6%name of arg 2%."
							message "&aYour PvP protection has been disabled by an Admin. Good Luck!" to arg 2
				else:
					if arg 1 is "timer" or "time":
						if {pvptimer.timeexpired::%name of player%} is set:
							message "&dYour safety time has already expired"
						else:
							set {_time} to difference between {pvptimer.timeleft::%name of player%} and now
							message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
					if arg 1 is "off":
						if {pvptimer.timeexpired::%name of player%} is set:
							message "&dYour safety time has already expired"
						else:
							set {pvptimer.timeexpired::%name of player%} to true
							delete {pvptimer.timeleft::%name of player%}
							message "&aYou have manually disabled your PvP protection. Good Luck!"
			else:
				message "&5PvP Timer pomoc:"
				message "&d- timer [player]"
				message "&d- off [player]"
		else:
			send "&cThis command can only be used in Wilderness"
						
#Timer event to check whether or not to disable the protection
every 3 minutes:
	loop {pvptimer.timeleft::*}:
		set {_t} to loop-value
		if difference between {_t} and now is more than {@Pvp-Timer-Protection}:
			set {pvptimer.timeexpired::%loop-index%} to true
			delete {pvptimer.timeleft::%loop-index%}
			loop all players:
				if loop-index is loop-player:
					message "&aTwoja ochrona zniknela. Powodzenia!" to loop-player

#Block picking up items while timer is active	
on pickup of anything:
	if {@Allow-Pickup} is false:
		if world is {@Pvp-World}:
			if {pvptimer.timeexpired::%name of player%} is set:
				stop
			else:
				cancel event
				if {pvptimer.Timer.Message.Cooldown::%name of player%} is set:
					stop
				else:
					message "&cNie mozesz podnosic itemow podczas ochrony. Uzyj &f/pvptimer off&c do wylaczenia" to player
					set {pvptimer.Timer.Message.Cooldown::%name of player%} to 2
					wait 2 seconds
					delete {pvptimer.Timer.Message.Cooldown::%name of player%}
		
#Block placing blocks while timer is active	
on place of anything:
	if {@Allow-Placing} is false:
		if world is {@Pvp-World}:
			if {pvptimer.timeexpired::%name of player%} is set:
				stop
			else:
				cancel event
				message "&cNie mozesz budowac podczas ochrony. Uzyj &f/pvptimer off&c do wylaczenia" to player

#Block breaking blocks while timer is active	
on break of anything:
	if {@Allow-Breaking} is false:
		if world is {@Pvp-World}:
			if {pvptimer.timeexpired::%name of player%} is set:
				stop
			else:
				cancel event
				message "&cNie mozesz niszczyc podczas ochrony. Uzyj &f/pvptimer off&c do wylaczenia" to player	

#CocaCola Vending Machines - autor: MinerMaxHD - Polska wersja D3STROY

Automat do CocaColi

1. Filmik prezentujący jak wykonać maszynę do Cocacoli

 

http://youtu.be/qesXNxeQ5cM?t=2m18s
 

 

#CocaCola Vending Machines
#Autor: MinerMaxXD
#Spolszczenie: D3STROY
command /vendcola:
	usage: /vendcola - ustawia maszyne do cocali
	description: /vendcola - ustawia maszyne do cocali
	trigger:
		set {_vend} to location of targeted block
		set {_vendl} to location of block above targeted block
		set {_vendr} to location of block right of block at {_vendl}
		set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
		set line 2 of block at {_vend} to "----------------"
		set line 3 of block at {_vend} to "&a&lTYLKO 1 ZLOTO!"
		set line 4 of block at {_vend} to "&aKup teraz!!!"
		set line 1 of block at {_vendr} to "----------------"
		set line 2 of block at {_vendr} to "&f&lCOCA"
		set line 3 of block at {_vendr} to "----------------"
		set line 1 of block at {_vendl} to "----------------"
		set line 2 of block at {_vendl} to "&4&lCOLA"
		set line 3 of block at {_vendl} to "----------------"
on right click on button:
	if line 1 of block above clicked block is "&lCOCA&4&lCOLA":
		if {vend.%location of clicked block%.inuse} is true:
			message "&aKtos tego uzywa, sprobuj za chwile"
			stop trigger
		set {vend.%location of clicked block%.inuse} to true
		set {_vend} to location of block above clicked block
		if player is not holding gold ingot:
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&4Musisz"
			set line 4 of block at {_vend} to "&4hTrzymac zloto."
			wait 3 seconds
			set {vend.%location of clicked block%.inuse} to false
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lTYLKO 1 ZLOTO!"
			set line 4 of block at {_vend} to "&aKup teraz!!!"
		if player is holding gold ingot:
			remove 1 golden ingot from the player's inventory
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM"
			set line 4 of block at {_vend} to "&aplease wait"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM.."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM..."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lVENDING"
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lVENDING."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM.."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lPRZETWARZAM..."
			set line 4 of block at {_vend} to "&azaczekaj"
			wait 1 second
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lGOTOWE!"
			set line 4 of block at {_vend} to "&aDziekuje"
			add potion of healing named "&fCOCA&4COLA" to the inventory of the player
			wait 3 seconds
			set {vend.%location of clicked block%.inuse} to false
			set line 1 of block at {_vend} to "&lCOCA&4&lCOLA"
			set line 2 of block at {_vend} to "&l--------------"
			set line 3 of block at {_vend} to "&a&lTYLKO 1 ZLOTO!"
			set line 4 of block at {_vend} to "&aKup teraz!!!"

#WChat - Cenzor z kilkoma zastosowaniami - autor: destroyer4017 - Polska wersja: D3STROY

Użytkowanie :

Zauważysz że widnieje coś takiego jak :


    {wchat::[TEKST]} = "TO_NA_CO_SIE_ZMIENIA"

Tam gdzie jest "TEKST", wpisujesz to co ma być cenzurowane, np. "D3STROY".

Tam w "TO_NA..." zmieniasz to co będzie widnieć zamiast D3STROY czyli np. jeżeli zastosujesz przekleństwo, możesz ustawić ****.

 

#WChat
#Autor: destroyer4017
#Spolszczenie: D3STROY
# #! If this text is not red you are not using Skript UDL !#
#startfold @filter-declaration
# Create filters by extending this format: #? {wchat::<filter>} = "replacement" ?#
variables:
    {wchat::[TEKST]} = "TO_NA_CO_SIE_ZMIENIA"
#endfold
#startfold @main #! DO NOT EDIT !#
on chat:
    loop {wchat::*}:
        replace all loop-index with loop-value in message
#endfold

1390848731-U997276.png


Opublikowano

Naprzykład wychodzisz ze spawna na pvp i nie mogą cie odrazu zabić, Masz np. 10 sekund aby uciec proste :-)

Nazywa się to NotSpawnKiller

1378582975-U1008851.jpg

Buziaczki :********

Opublikowano

Jak to pisalem to jeszcze nie bylo tego wie

 

@Up

...

Piszę że ochrona przed PVP (początkowa) taka jak np. na mchc.pl

c radze sprawdzic kiedy to bylo pisane a kiedy byl edytowany post a co do tematu to czy autor zezwolil na rozsylanie jego pracy?

Moje Prawdziwe Konto : AsserorXxX : Dostalem bana do 08.10 Wiec Lajki Za Pomoc prosze tam:)) Jak Cos moge korzystac z tego konta!!!

Opublikowano

Bardzo fajny skrypt ( mimo że edytowałeś zapewne z 5 linijek )

To dobra robota. Bardzo fajne na serwery hardcore / survival / wojny gildii .

U mnie w plikach już jest ;)

­


logo.png


Nykeria.pl / 07.04.2016 / Metin2

Opublikowano

@Up

Edytowałem dopiero kilka linijek, bo aktualnie byłem zajęty.

Na razie nie jestem dobry z pisania skryptów, więc będę tłumaczył inne :]

 

 

zrobię lekcje i spolszczam następne, ciekawe pluginy :]

1390848731-U997276.png


Opublikowano

Nazwa tematu

 

1. skrypty - liczba mogą a tu widzeje jeden (budowa jednak na ten czas mogłeś bez "y")

2.Nick - nie jesteś autorem skrypty więc wypadało by napisac "[DL] Spolszczony/e skrypty wykonania/Spolszczenia by Nick"

 

Co do skryptu nawet nie wszystko spolszczyłeś... Skrypt by zjadał wiecej pamięci niz plugin - kazdy gracz/wchodzi a skrypt ma za zadanie przez konsole sprawdzić czy gracz posiada daną ochronę, oraz odliczać mu co do sekundy plus jeszcze wiadomości pisane przez konsole bez tagu - to wszystko musi przejść przez procesor komputera na którym stoi serwer

Pluginem dało by sie to zrobić w mniej lagujący wposób

 

 

EDYCJA: tu nic nie jest spolszczone... No moze jedna linijka...

Pomagam w tworzeniu for IPB za darmo. Trzy letnie doświadczenie.

Opublikowano
    else:
        if attacker is a player:
            set {_check} to true
    if {_check} is set:
        if world is {@Pvp-World}:
            if {_notPlayer} is not set:
                if {pvptimer.timeleft::%name of attacker%} is set:
                    if difference between {pvptimer.timeleft::%name of attacker%} and now is less than {@Pvp-Timer-Protection}:
                        cancel event
                        send "&cYou cannot attack while your PvP protection is enabled" to the attacker
                    else:
                        set {pvptimer.timeexpired::%name of attacker%} to true
                        delete {pvptimer.timeleft::%name of attacker%}
                        message "&dYour PvP protection has run out. Good Luck!" to attacker
            if {pvptimer.timeleft::%name of victim%} is set:
                if difference between {pvptimer.timeleft::%name of victim%} and now is less than {@Pvp-Timer-Protection}:
                    cancel event
                    send "&cThat player is protected" to the attacker
                else:
                    set {pvptimer.timeexpired::%name of victim%} to true
                    delete {pvptimer.timeleft::%name of victim%}
                    message "&dYour PvP protection has run out. Good Luck!" to victim
                
#PvP Timer Command (to turn it off manually) and check time remaining
command /pvptimer [<text>] [<player>]:
    description: Turn off your PvP protectection early!
    permission: pvp.timer
    usage: /pvptimer
    trigger:
        if world is {@Pvp-World}:
            if arg 1 is set:
                if arg 2 is set:
                    if player has permission "pvp.timer.admin":
                        if arg 1 is "timer" or "time":
                            if {pvptimer.TimeExpired.%name of arg 2%} is true:
                                message "&dThat player no longer has PvP Protection."
                            else:
                                set {_time} to difference between {pvptimer.TimeLeft.%name of arg 2%} and now
                                message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
                        if arg 1 is "off":
                            if {pvptimer.TimeExpired.%name of arg 2%} is true:
                                message "&aThat player's safety time has already expired"
                            else:
                                set {pvptimer.TimeExpired.%name of arg 2%} to true
                                delete {pvptimer.TimeLeft.%name of arg 2%}
                                delete {pvptimer.HasJoined.%name of arg 2%}
                                message "&aYou have manually disabled the PvP protection of &6%name of arg 2%."
                                message "&aYour PvP protection has been disabled by an Admin. Good Luck!" to arg 2
                    else:
                        message "&cYou cannot do that"
                else:
                    if arg 1 is "timer" or "time":
                        if {pvptimer.timeexpired::%name of player%} is set:
                            message "&dYour safety time has already expired"
                        else:
                            set {_time} to difference between {pvptimer.timeleft::%name of player%} and now
                            message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
                    if arg 1 is "off":
                        if {pvptimer.timeexpired::%name of player%} is set:
                            message "&dYour safety time has already expired"
                        else:
                            set {pvptimer.timeexpired::%name of player%} to true
                            delete {pvptimer.timeleft::%name of player%}
                            message "&aYou have manually disabled your PvP protection. Good Luck!"
            else:
                message "&5PvP Timer Help:"
                if player has permission "pvp.timer.admin":
                    message "&d- timer [player]"
                    message "&d- off [player]"
                else:
                    message "&d- timer"
                    message "&d- off"
        else if player has permission "pvp.timer.admin":
            if arg 1 is set:
                if arg 2 is set:
                    if arg 1 is "timer" or "time":
                        if {pvptimer.TimeExpired.%name of arg 2%} is true:
                            message "&dThat player no longer has PvP Protection."
                        else:
                            set {_time} to difference between {pvptimer.TimeLeft.%name of arg 2%} and now
                            message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
                    if arg 1 is "off":
                        if {pvptimer.TimeExpired.%name of arg 2%} is true:
                            message "&aThat player's safety time has already expired"
                        else:
                            set {pvptimer.TimeExpired.%name of arg 2%} to true
                            delete {pvptimer.TimeLeft.%name of arg 2%}
                            delete {pvptimer.HasJoined.%name of arg 2%}
                            message "&aYou have manually disabled the PvP protection of &6%name of arg 2%."
                            message "&aYour PvP protection has been disabled by an Admin. Good Luck!" to arg 2
                else:
                    if arg 1 is "timer" or "time":
                        if {pvptimer.timeexpired::%name of player%} is set:
                            message "&dYour safety time has already expired"
                        else:
                            set {_time} to difference between {pvptimer.timeleft::%name of player%} and now
                            message "&5Time Remaining: %difference between {_time} and {@Pvp-Timer-Protection}%"
                    if arg 1 is "off":
                        if {pvptimer.timeexpired::%name of player%} is set:
                            message "&dYour safety time has already expired"
                        else:
                            set {pvptimer.timeexpired::%name of player%} to true
                            delete {pvptimer.timeleft::%name of player%}
                            message "&aYou have manually disabled your PvP protection. Good Luck!"
            else:
                message "&5PvP Timer Help:"
                message "&d- timer [player]"
                message "&d- off [player]"
        else:
            send "&cThis command can only be used in Wilderness"
                        
#Timer event to check whether or not to disable the protection
every 3 minutes:
    loop {pvptimer.timeleft::*}:
        set {_t} to loop-value
        if difference between {_t} and now is more than {@Pvp-Timer-Protection}:
            set {pvptimer.timeexpired::%loop-index%} to true
            delete {pvptimer.timeleft::%loop-index%}
            loop all players:
                if loop-index is loop-player:
                    message "&aYour PvP protection has run out. Good Luck!" to loop-player


#Block picking up items while timer is active   
on pickup of anything:
    if {@Allow-Pickup} is false:
        if world is {@Pvp-World}:
            if {pvptimer.timeexpired::%name of player%} is set:
                stop
            else:
                cancel event
                if {pvptimer.Timer.Message.Cooldown::%name of player%} is set:
                    stop
                else:
                    message "&cYou may not pickup items while your PvP Protection is enabled. Use &f/pvptimer off&c to disable it" to player
                    set {pvptimer.Timer.Message.Cooldown::%name of player%} to 2
                    wait 2 seconds
                    delete {pvptimer.Timer.Message.Cooldown::%name of player%}
        
#Block placing blocks while timer is active 
on place of anything:
    if {@Allow-Placing} is false:
        if world is {@Pvp-World}:
            if {pvptimer.timeexpired::%name of player%} is set:
                stop
            else:
                cancel event
                message "&cYou may not place items while your PvP Protection is enabled. Use &f/pvptimer off&c to disable it" to player


#Block breaking blocks while timer is active    
on break of anything:
    if {@Allow-Breaking} is false:
        if world is {@Pvp-World}:
            if {pvptimer.timeexpired::%name of player%} is set:
                stop
            else:
                cancel event
                message "&cYou may not break items while your PvP Protection is enabled. Use &f/pvptimer off&c to disable it" to player 


A tego spolszczenie? Się napracowałeś... Zmieniłeś 4 linijki i wielce kozak.

29e0keg.jpg


>>CLICK<<


^


^

Opublikowano

@2xup

Czy Wy macie jakiś problem ? o.O

 

Przecież napisałem że aktualnie uczę się pisać sam skrypty, więc żeby offtopu nie robić, spolszczam inne, zagraniczne skrypty chwilowo.

Kiedy naucze się pisać sam, będę je wykonywał.

Nazwa autora skryptu jest napisana, więc nie wiem w czym problem o.O

1390848731-U997276.png


Opublikowano

Jak dla mnie to oszustwo:
Nazwa tematu: [DL] SKRYPTY D3STROY'a - Zapraszam !
W temacie: .....umieszczał swoje autorskie skrypty
Autor skryptu: midnifgtfang22
Polecam robić własne skrypty a nie spolszczenia.

Skrypt fajny lecz to co napisałem wyżej.

Opublikowano

Pośpieszyłem się, myślałem że pisanie skryptów jest prostsze, niestety muszę się jeszcze pouczyć argumentów itd.

Więc postanowiłem pospalszczać inne pluginy, autor jest napisany, więc nie widzę problemu :]

1390848731-U997276.png


Opublikowano

Przepraszam ale chodzi mi o:

 

Cześć.

Z tej strony D3STROY i w tym temacie będę umieszczał swoje autorskie skrypty.

Napisane jest, że twoje autorskie. Więc powinien temat się nazywać spolszczenia skryptów co nie ma sensu wcale, wzoruj się na skryptach i pisz a nie kopiuj i przerabiaj, autorzy Ci pozwolili na edycję?

Opublikowano

Już to usuwam, dzięki za uwage.

 

Wiadomość z zapytaniem czy mogę spolszczać ich skrypty została wysłana :]

 

Wiadomość do autorów wysłana :

cuza0i.jpg

1390848731-U997276.png


Opublikowano

Calkiem ciekawe te skrypty,ale dodaj ich wiecej:)

Moje Prawdziwe Konto : AsserorXxX : Dostalem bana do 08.10 Wiec Lajki Za Pomoc prosze tam:)) Jak Cos moge korzystac z tego konta!!!

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...