• TibiaFace

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

    .
    demo menumenu

    Afiliados



    Votar:

    [CreatureEvents] first item Tfs/ Otx

    Compartir:

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

    1[CreatureEvents] first item Tfs/ Otx Empty [CreatureEvents] first item Tfs/ Otx Vie Jul 17, 2015 10:35 pm

    [Admin] God Maya

    [Admin] God Maya
    Administrador
    Administrador
    Hola usuarios de tibiaface


    bueno aqui les traigo el first item o item iniciales

    instalacion:

    nos vamos a:

    data\creaturescripts\scripts

    copiamos cualquier archivo y renombramos por firstitem.lua y pegamos dentro esto.

    Código:
      local commonItems = {
      -- ITEMS ALL VOCS RECEIVE
      {itemid=2480, count=1}, -- legion helmet
      {itemid=2464, count=1}, -- chain armor
      {itemid=2468, count=1}, -- studded legs
      {itemid=2643, count=1}, -- leather boots
      {itemid=2120, count=1}, -- rope
      {itemid=5710, count=1} -- shovel
    }

    local firstItems = {
      { -- SORC ITEMS
        {itemid=2190, count=1}, -- wand of vortex
        {itemid=2175, count=1} -- spellbook
      },
      { -- DRUID ITEMS
        {itemid=2182, count=1}, -- snakebite rod
        {itemid=2175, count=1} -- spellbook
      },
      { -- PALADIN ITEMS
        {itemid=2456, count=1}, -- bow
        {itemid=2544, count=100} -- 100 arrows
      },
      { -- KNIGHT ITEMS
        {itemid=2412, count=1}, -- katana
        {itemid=2530, count=1} -- copper shield
      }
    }

    for _, items in ipairs(firstItems) do
      for _, item in ipairs(commonItems) do
        table.insert(items, item)
      end
    end

    local storage = 35353
    function onLogin(cid)
            if getPlayerGroupId(cid) < 3 then
            local receivedItems = getPlayerStorageValue(cid, storage)
                    if receivedItems == -1 then
                    --[[local backpack = ]]doPlayerAddItem(cid, 1988, 1)
                    local giveItems = firstItems[getPlayerVocation(cid)]
                            if giveItems ~= nil then
                            for _, v in ipairs(giveItems) do
                                    --doAddContainerItem(backpack, v.itemid, v.count or 1)
                                    doPlayerAddItem(cid, v.itemid, v.count or 1)
                            end
                            doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have recieved your first items!")
                    end
                    setPlayerStorageValue(cid, storage, 1)
            end
            return true
    end

    luego añaden esta tag en:

    data\creaturescripts\creaturescripts.xml

    Código:
    <event type="login" name="FirstItems" script="firstitems.lua"/



    y listo ya tienen los first item



    [CreatureEvents] first item Tfs/ Otx 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).