Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
- #CRIADOR: RafaaDivulgador# #
- #VERSÃO TESTADAS: 1.5.2/1.8# #
- #Addons Necessarios: Nenhum Nessa Versão!# #
- #Quer algum skript? Contatos abaixo!# #
- #Skype: rafaadivulgador1 / Discord: rafaadivulgador#9921# #
- #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=#
- #Configuraçoes
- #-----------------------------#
- #rWarps.%arg 1% seria o nome da warp!#
- #-----------------------------#
- options:
- #Mensagem De Setar Warp
- SetMensagem: &a%arg 1% foi setada!
- SetMensagemExistente: &a%arg 1% ja existe!
- #Mensagem De Ir Para A Warp
- TeleportMsg: &cTeleportando para %arg 1%...
- TeleportMsgInexistente: &cVocê não pode se teleportar pra algo que não existe!
- #Mensagem De Deletar Warps
- DelWarpMsg: &c%arg 1% Foi deletada com sucesso!
- DelWarpMsgInexistente: &c%arg 1% Não existe!
- #=#Fim Da Configuração#=#
- #== Codigo Fonte ==#
- command /rCmds:
- permission: warp.admin
- trigger:
- send "&0 =========================== "
- send "&8» &7/rSet (Para setar warps)"
- send "&8» &7/rWarp (Para Se Teleportar Para Algum Warp)"
- send "&8» &7/rDel (Para Deletar Algum Warp)"
- send "&8» &7/rWarps (Para Ver Todos Os Warps)"
- send "&0 =========================== "
- command /rWarps:
- trigger:
- if {rWarps::*} is set:
- send ""
- send "&a[rWarps] &7WARPS » &8%{rWarps::*}%"
- send ""
- else:
- send "&a[rWarps] &7Não há nenhum warp setado!"
- command /rSet <text>:
- trigger:
- if arg-1 is set:
- if {rWarps.%arg 1%} is not set:
- set {rWarps.%arg 1%} to player's location
- add arg 1 to {rWarps::*}
- send "{@SetMensagem}"
- stop
- if arg-1 is not set:
- send "&cUse /rSet <warp>"
- if {rWarps.%arg 1%} is set:
- send "{@SetMensagemExistente}"
- stop
- command /rWarp <text>:
- trigger:
- if arg-1 is set:
- if {rWarps.%arg 1%} is set:
- teleport player to {rWarps.%arg 1%}
- send "{@TeleportMsg}"
- stop
- if {rWarps.%arg 1%} is not set:
- send "{@TeleportMsgInexistente}"
- stop
- if arg-1 is not set:
- send "&cUse /rWarp <warp>"
- command /rDel <text>:
- trigger:
- if arg-1 is set:
- if {rWarps.%arg 1%} is set:
- delete {rWarps.%arg 1%}
- remove arg 1 from {rWarps::*}
- send "{@DelWarpMsg}"
- stop
- if {rWarps.%arg 1%} is not set:
- send "{@DelWarpMsgInexistente}"
- stop
- if arg-1 is not set:
- send "&cUse /rWarp <warp>"
- #== Codigo Fonte ==#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement