• TibiaFace

    Tibiaface | Una comunidad Open Tibia donde encontras : mapas, scripts, Otserver, npc y amigos etc ...

    .
    demo menumenu

    Afiliados



    Votar:

    [Talkaction] Muted

    Compartir:

    Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje (Página 1 de 1.)

    1[Talkaction] Muted Empty [Talkaction] Muted Miér Sep 11, 2013 12:37 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Es un un talkaction que silencia al player.

    como se utiliza simpleten con este comando:

    /mute Nombre del player, Duracion -- (Duracion son los minutos)

    Crea un Archivo Llamado Muted.lua En Talkaction
    ponen esto:

    Código:
       local conditions = {}
        for i = 1, 100 do
         table.insert(conditions, createConditionObject(CONDITION_MUTED))
         setConditionParam(conditions[i], CONDITION_PARAM_TICKS, i * 60 * 1000)
        end
        
        function onSay(cid, words, param, channel)
         local t = string.explode(param, ',')
         local target = getPlayerByNameWildcard(t[1])
        
        if(param == '') then
         doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Command requires a players name and number.')
        return true
         end
         if(getPlayerGroupId(target) > 1) then
         doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'You cannot Mute another Staff member.')
         return true
         end
         if(not target) then
         target = getCreatureByName(param)
         if(not target) then
         doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'Player is not online.')
         return true
         end
         end
        
        doAddCondition(target, conditions[tonumber(t[2])])
         doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, 'You have muted '..getCreatureName(target)..' for '..t[2]..' minutes.')
         doSendMagicEffect(getCreaturePosition(cid), CONST_ME_SLEEP)
        return true
        end
    Guarda y Vete A TalkAction.XML
    Pegas esto:

    Código:
       <talkaction log="yes" access="5" words="/mute" event="script" value="muted.lua"/>
    Creditos:Leteba.



    [Talkaction] Muted YNU5B25
    http://www.tibiaface.com

    Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje (Página 1 de 1.)

    Permisos de este foro:
    No puedes responder a temas en este foro.

     

    BienvenidosTibiaFace es una comunidad de Open Tibia. Para participar debes estar registrado (click para Regístrate).