• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    Algun scripter me puede ayudar?

    Compartir:

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

    1Algun scripter me puede ayudar? Empty Algun scripter me puede ayudar? Dom Jul 04, 2021 6:04 am

    ioke

    ioke
    Miembro
    Miembro
    Descripcion escribió:hola necesito que este script elimine mas de un item para poder teletrasportar, quiero agregar 6088,6089 y 6090

    Código:
    local config = {
        needItem = { id = 6087, count = 1, remove = true },
        nextPos = { x = 32403, y = 32794, z = 9 }
    }

    function onUse(player, item, position, fromPos)
    if isPlayer(player) then
        local it = getPlayerItemCount(player, config.needItem.id)
        if it >= config.needItem.count then
            if config.needItem.remove then
                doPlayerRemoveItem(player, config.needItem.id, config.needItem.count)
            end
            doTeleportThing(player, config.nextPos, false)
            doSendMagicEffect(config.nextPos, CONST_ME_TELEPORT)
        else
            doTeleportThing(player, fromPos, true)
            doSendMagicEffect(fromPos, CONST_ME_TELEPORT)
            doPlayerSendTextMessage(player, MESSAGE_INFO_DESCR, 'You don\'t have all parts of music sheets.')
        end
    end
    return true
    end
    Imagen Explicativa escribió:Imagen Explicativa: Algun scripter me puede ayudar? Tibiaf10
    Version del Scripts: TFs 0.4.0

    3 participantes
    http://baiakciteron.sytes.net

    2Algun scripter me puede ayudar? Empty Re: Algun scripter me puede ayudar? Dom Jul 04, 2021 8:07 am

    lsenturion

    lsenturion
    Miembro
    Miembro
    Código:

    function onUse(cid, item, fromPosition, itemEx, toPosition)

    if (getPlayerItemCount(cid, 6087) >= 1) and (getPlayerItemCount(cid, 6088) >= 1) and (getPlayerItemCount(cid, 6089) >= 1) and (getPlayerItemCount(cid, 6090) >= 1) then
    doPlayerRemoveItem(cid, 6087, 1)
    doPlayerRemoveItem(cid, 6088, 1)
    doPlayerRemoveItem(cid, 6089, 1)
    doPlayerRemoveItem(cid, 6090, 1)
      doSendMagicEffect(getPlayerPosition(cid),30)
      doTeleportThing(cid, {x=32369, y=32241, z=7})
      doPlayerSendTextMessage(cid,MESSAGE_INFO_DESCR, "Congratulations!.")
    else
        doPlayerPopupFYI(cid, "You need all the items to pass.")
    end
    return true
    end

    3 participantes
    http://krudaserver.com

    3Algun scripter me puede ayudar? Empty Re: Algun scripter me puede ayudar? Dom Jul 04, 2021 9:48 am

    ioke

    ioke
    Miembro
    Miembro
    genial muchas gracias

    3 participantes
    http://baiakciteron.sytes.net

    4Algun scripter me puede ayudar? Empty Re: Algun scripter me puede ayudar? Lun Jul 05, 2021 2:24 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Tema Solucionado



    Algun scripter me puede ayudar? YNU5B25
    3 participantes
    http://www.tibiaface.com

    Contenido patrocinado


    3 participantes

    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).