Dark-Tibia
Dark-Tibia
Dark-Tibia
¿Quieres reaccionar a este mensaje? Regístrate en el foro con unos pocos clics o inicia sesión para continuar.


En este foro encontras ayuda subre tu Otserver
 
ÍndicePortalÚltimas imágenesBuscarRegistrarseConectarse
Navegación
 Portal
 Índice
 Miembros
 Perfil
 FAQ
 Buscar
Conectarse
Nombre de Usuario:
Contraseña:
Entrar automáticamente en cada visita: 
:: Recuperar mi contraseña
Últimos temas
» johnnathann
[Talkation] Comando !jail Icon_minitimeSáb Sep 15, 2012 8:48 pm por johnnathannj

»  [8.70] Real Global Map 1.8 + Imagenes + Scans
[Talkation] Comando !jail Icon_minitimeLun Jun 11, 2012 4:53 am por Lazcano

» Speedy War [8.60]
[Talkation] Comando !jail Icon_minitimeVie Mar 30, 2012 2:12 pm por GOD ALE

»  [Rpg-Pvp][8.60]Kreuus Easy
[Talkation] Comando !jail Icon_minitimeJue Mar 29, 2012 11:42 pm por GOD ALE

» [Script] Royal Crossbow!
[Talkation] Comando !jail Icon_minitimeJue Mar 29, 2012 11:22 pm por GOD ALE

» Ayuda con el ot server
[Talkation] Comando !jail Icon_minitimeJue Mar 29, 2012 10:45 pm por GOD ALE

»  Tiko ot editado 8.60
[Talkation] Comando !jail Icon_minitimeJue Mar 29, 2012 10:34 pm por GOD ALE

»  VikiRanch.'[8.60] war v.1.0
[Talkation] Comando !jail Icon_minitimeJue Mar 29, 2012 9:54 pm por GOD ALE

» Abrir Puertos De Tibia En El Router Thomson tg585 de telmex
[Talkation] Comando !jail Icon_minitimeVie Oct 28, 2011 1:21 pm por panda

Mejores posteadores
Dj Pacos
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
admin heber723
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
God Maracula
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
GoD Mexicansoul
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
God Dunckan
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
Admin Azteca
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
Slayer
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
God Damubu
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
DJ Punk
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 
Glonlova
[Talkation] Comando !jail I_vote_lcap[Talkation] Comando !jail I_voting_bar[Talkation] Comando !jail I_vote_rcap 

 

 [Talkation] Comando !jail

Ir abajo 
4 participantes
AutorMensaje
Dj Pacos
Admin
Admin
Dj Pacos


100

Mensajes : 169
Puntos : 294
Reputación : 56
Fecha de inscripción : 01/05/2011
Edad : 31

[Talkation] Comando !jail Empty
MensajeTema: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 4:45 pm

Esta talkaction se trata de que los gods y cms digan !jail NAME , cuando dicen eso lo manda a la carcel todo lo que tu quieras, para sacarlo solo di /unjail NAME

bueno, la otra cosa que puedes decir es !jail 5 name, ese 5 son los minutos que estara en la carcel

Primero crean un archivo .lua en su carpeta talkactions/scripts
Que el archivo se llame jailsystem

Luego le ponen esto dentro:

Código:

-- Default jail time in seconds --
default_jail = 1500
-- The permission you need to jail someone --
grouprequired = 3
-- StorageValue that the player gets --
jailedstoragevalue_time = 1338
jailedstoragevalue_bool = 1339
-- Set the position of the jail: --
jailpos = { x = 167, y = 37, z =7 }
-- Set the position once unjailed: --
unjailpos = { x = 163, y = 83, z =7 }
-- auto kicker, dont edit
jail_list = {}
jail_list_work = 0

function checkJailList(param)
addEvent(checkJailList, 1000, {})
for targetID,player in ipairs(jail_list) do
if isPlayer(player) == TRUE then
if getPlayerStorageValue(player, jailedstoragevalue_time) < os.time() then
doTeleportThing(player, unjailpos, TRUE)
setPlayerStorageValue(player, jailedstoragevalue_time, 0)
setPlayerStorageValue(player, jailedstoragevalue_bool, 0)
table.remove(jail_list,targetID)
doPlayerSendTextMessage(player,MESSAGE_STATUS_CONSOLE_ORANGE,'You were kicked from jail! Make sure to follow the rules from now on !')
end
else
table.remove(jail_list,targetID)
end
end
end

function onSay(cid, words, param)
if jail_list_work == 0 then
jail_list_work = addEvent(checkJailList, 1000, {})
end
if param == '' and (words == '!unjail' or words == '/unjail') then
if getPlayerStorageValue(cid, jailedstoragevalue_time) > os.time() then
doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You are jailed until ' .. os.date("%H:%M:%S", getPlayerStorageValue(cid, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')
else
if getPlayerStorageValue(cid, jailedstoragevalue_bool) == 1 then
table.insert(jail_list,cid)
doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You will be kicked from jail in one second.')
else
doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You are not jailed.')
end
end
return TRUE
end
local jail_time = -1
for word in string.gmatch(tostring(param), "(%w+)") do
if tostring(tonumber(word)) == word then
jail_time = tonumber(word)
end
end
local isplayer = getPlayerByName(param)
if isPlayer(isplayer) ~= TRUE then
isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+1))
if isPlayer(isplayer) ~= TRUE then
isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+2))
if isPlayer(isplayer) ~= TRUE then
isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+3))
end
end
end
if jail_time ~= -1 then
jail_time = jail_time * 60
else
jail_time = default_jail
end
if words == '!jail' or words == '/jail' then
if getPlayerGroupId ( cid ) >= grouprequired then
if isPlayer(isplayer) == TRUE then
doTeleportThing(isplayer, jailpos, TRUE)
setPlayerStorageValue(isplayer, jailedstoragevalue_time, os.time()+jail_time)
setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 1)
table.insert(jail_list,isplayer)
doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You jailed '.. getCreatureName(isplayer) ..' until ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')
doPlayerSendTextMessage ( isplayer, MESSAGE_INFO_DESCR, 'You have been jailed by '.. getCreatureName(cid) ..' until ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (now is: ' .. os.date("%H:%M:%S", os.time()) .. ').')
doBroadcastMessage(' >>>'.. getCreatureName(cid) ..'<<< Ha encarcelado ha: '.. getCreatureName(isplayer) ..' ', MESSAGE_EVENT_ADVANCE)
return TRUE
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Player with this name doesn't exist or is offline.")
return FALSE
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have access to unjail other players.")
return FALSE
end
elseif words == '!unjail' or words == '/unjail' then
if getPlayerGroupId ( cid ) >= grouprequired then
if isPlayer(isplayer) == TRUE then
doTeleportThing(isplayer, unjailpos, TRUE)
setPlayerStorageValue(isplayer, jailedstoragevalue_time, 0)
setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 0)
table.remove(jail_list,targetID)
doPlayerSendTextMessage(isplayer,MESSAGE_STATUS_CONSOLE_ORANGE,getCreatureName(cid) .. ' let you go out from jail! See you later Smile')
doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You unjailed '.. getCreatureName(isplayer) ..'.')
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Player with this name doesn't exist or is offline.")
return FALSE
end
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have access to unjail other players.")
return FALSE
end
end
return FALSE
end

En donde dice
Código:

-- Set the position of the jail: --
jailpos = { x = 167, y = 37, z =7 } <<<<<< es donde aparecera una ves que lo encarceles
-- Set the position once unjailed: --
unjailpos = { x = 163, y = 83, z =7 }<<<<<

Ahi podemos poner el lugar donde estara encerrado y luego donde lo soltara al terminar su tiempo.

Ahora te vas a talkactions.xml y en gods pones esto:
Código:

<talkaction words="!jail" script="jailsystem.lua"/>
<talkaction words="/unjail" script="jailsystem.lua"/>

Eso seria todo!

Espero que les sirva Very Happy

Creditos :
100% God Skit
Volver arriba Ir abajo
Admin Azteca
Admin
Admin
Admin Azteca


25

Mensajes : 38
Puntos : 1063
Reputación : 1
Fecha de inscripción : 27/04/2011

[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 4:49 pm

Buena we +rep
Volver arriba Ir abajo
https://dark-tibia.foroactivo.mx
admin heber723
Admin
Admin
admin heber723


100

Mensajes : 128
Puntos : 1163
Reputación : 16
Fecha de inscripción : 27/04/2011

[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 5:03 pm

jaaja chido man +rep
Volver arriba Ir abajo
GoD Mexicansoul
Aportador
Aportador
GoD Mexicansoul


50

Mensajes : 72
Puntos : 157
Reputación : 25
Fecha de inscripción : 27/04/2011

[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 5:26 pm

Cool we 8/10

Por que 8/10
por que ponte a pensar we si pones sona anti-logout en el jail nomas le dan exit y cuando buelban a entrar aparecen en el temple
y si la pones sin zona anti-logout nomas loguean we y se conectan en un rato y te dicen q los saques :S
Volver arriba Ir abajo
GoD Mexicansoul
Aportador
Aportador
GoD Mexicansoul


50

Mensajes : 72
Puntos : 157
Reputación : 25
Fecha de inscripción : 27/04/2011

[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 5:26 pm

Pff para eso nomas les das ban por tiempo xd
Volver arriba Ir abajo
Dj Pacos
Admin
Admin
Dj Pacos


100

Mensajes : 169
Puntos : 294
Reputación : 56
Fecha de inscripción : 01/05/2011
Edad : 31

[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitimeMiér Mayo 04, 2011 5:30 pm

el jail es usado por minutos.. el ban es usado para dias (usualmente 3 dias a 1 semana..) es por eso que el jail se usa solo como advertencia.

PD: no hagas doble post. para eso esta el boton EDIT. usalo y no espamees.
Volver arriba Ir abajo
Contenido patrocinado





[Talkation] Comando !jail Empty
MensajeTema: Re: [Talkation] Comando !jail   [Talkation] Comando !jail Icon_minitime

Volver arriba Ir abajo
 
[Talkation] Comando !jail
Volver arriba 
Página 1 de 1.
 Temas similares
-
» [Talkation] Rank
»  Comando para hacer hablar a los players desde la GOD

Permisos de este foro:No puedes responder a temas en este foro.
Dark-Tibia :: Scripts-
Cambiar a: