• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    Items teleport

    Compartir:

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

    1Items teleport Empty Items teleport Mar Sep 21, 2021 4:15 pm

    ioke

    ioke
    Miembro
    Miembro
    Hola uso TFS 0.4 me gustaría si podéis ayudarme un script que tengas que darle clic a 5 estatuas y que la última te teletransporte no hace falta que tengan un orden , me imagino usara storage si es así que se borre al ser teletransportado, gracias.

    2 participantes
    http://baiakciteron.sytes.net

    2Items teleport Empty Re: Items teleport Mar Sep 21, 2021 9:18 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    podrias usar algo como esto como base

    Código:

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

    local pos = {x=10, y=11, z=7}
    local inFight = getCreatureCondition(cid, CONDITION_INFIGHT)

        if inFight == FALSE then
            doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
            doTeleportThing(cid, pos)
            doSendMagicEffect(pos, CONST_ME_TELEPORT)
        else
            doPlayerSendCancel(cid,"You cannot use this when you\'re in fight!.")
        end
        return TRUE
    en



    Items teleport YNU5B25
    2 participantes
    http://www.tibiaface.com

    3Items teleport Empty Re: Items teleport Miér Sep 22, 2021 3:24 am

    ioke

    ioke
    Miembro
    Miembro
    Yo esque no sé mucho de scripts :S

    2 participantes
    http://baiakciteron.sytes.net

    4Items teleport Empty Re: Items teleport Miér Sep 22, 2021 2:29 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    aqui tienes

    Código:


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


       local pos = {x=10, y=11, z=7}
    local inFight = getCreatureCondition(cid, CONDITION_INFIGHT)

    local storage = 15031

    if (getPlayerStorageValue(cid, storage) == -1) then

        if inFight == FALSE then
            doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
            doTeleportThing(cid, pos)
        setPlayerStorageValue(cid, storage, 1)
       doSendMagicEffect(toPosition, CONST_ME_MAGIC_RED)
        else
            doPlayerSendCancel(cid,"You cannot use this when you\'re in fight!.")
        end



       
    else
       doPlayerSendTextMessage(cid,25,"usted ya se teleport necesita resetear su storage.")
    end
    return TRUE
    end



    Items teleport YNU5B25
    2 participantes
    http://www.tibiaface.com

    5Items teleport Empty Re: Items teleport Miér Sep 22, 2021 4:54 pm

    ioke

    ioke
    Miembro
    Miembro
    si maya el script es mas o menos asi pero lo que necesito es que tengs que clicar 4 estatuas para poder transportarme que al darle a 1 me diga te faltan 3 al ciclicar a otra me diga te faltan 2... y la ultima me transporte me explico?



    encontré este que es perfecto solo que cuando de doi a la estatua se pone encima es posible corregirlo para que no se mueva el jugador?
    Código:
    local pos = {x=33622, y=32600, z=6}                  ---    where you go when enter teleport
    local storages = {10274,10275,10276,10277,10278,10279}              ------ storages
    local Message  = "You have not absorbed the energy of all the statues."    --  here Message if not teleport


    function onUse(cid, item, itemEx, position, fromPosition)
    for i = 1,#storages do
        if getPlayerStorageValue(cid, storages[i]) >= 1 then
             doTeleportThing(cid,pos)
             doSendMagicEffect(pos,10)
        else
             doTeleportThing(cid, fromPosition, false)
             doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, Message)
             doSendMagicEffect(fromPosition,10)
        end
    end
    return true
    end

    2 participantes
    http://baiakciteron.sytes.net

    6Items teleport Empty Re: Items teleport Miér Sep 29, 2021 9:08 am

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    como se pone encima a ver explicame con una imagen eso lo hace cuando se teleporta



    Items teleport YNU5B25
    2 participantes
    http://www.tibiaface.com

    Contenido patrocinado


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