Jump to content

Sуѕтємƒяєαк

Members
  • Posts

    523
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by Sуѕтємƒяєαк

  1. Today we are "celebrating" 40 years from first successful landing on the moon. True or false and why?

     

    Some info:

     

    Forty years ago, men from Earth began for the first time to leave our home planet and journey to the moon.

     

    From 1968 to 1972, NASA's Apollo astronauts tested out new spacecraft and journeyed to uncharted destinations.

     

    It all started on May 25, 1961, when President John F. Kennedy announced the goal of sending astronauts to the moon before the end of the decade. Coming just three weeks after Mercury astronaut Alan Shepard became the first American in space, Kennedy's bold challenge set the nation on a journey unlike any before in human history.

     

    Eight years of hard work by thousands of Americans came to fruition on July 20, 1969, when Apollo 11 commander Neil Armstrong stepped out of the lunar module and took "one small step" in the Sea of Tranquility, calling it "a giant leap for mankind."

     

    Six of the missions -- Apollos 11, 12, 14, 15, 16 and 17 -- went on to land on the moon, studying soil mechanics, meteoroids, seismic, heat flow, lunar ranging, magnetic fields and solar wind. Apollos 7 and 9 tested spacecraft in Earth orbit; Apollo 10 orbited the moon as the dress rehearsal for the first landing. An oxygen tank explosion forced Apollo 13 to scrub its landing, but the "can-do" problem solving of the crew and mission control turned the mission into a "successful failure."

     

    Btw I believe this happened on a studio for some reasons I've read.

     

    Check these as well, mythbusters put the conspiracies under test.

     

  2. So I tried to create an item that when you click it, it gives you an armor part and then it disappears.

    It doesn't give me any compile errors and it is clear at the gameserver window as well.

    It still doesn't seem to work though,when i press it nothing happens.(although i have registered it)

    I'm using the latest rev of l2j.Any help?

     

    /*
    * This program is free software; you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation; either version 2, or (at your option)
    * any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
    * 02111-1307, USA.
    *
    * http://www.gnu.org/copyleft/gpl.html
    */
    package handlers.itemhandlers;
    
    import net.sf.l2j.gameserver.handler.IItemHandler;
    import net.sf.l2j.gameserver.model.L2ItemInstance;
    import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
    import net.sf.l2j.gameserver.model.actor.L2Playable;
    
    public class Equipment implements IItemHandler
    {
    private static final int[] ITEM_IDS = { 3472 };
    
    public void useItem(L2Playable playable, L2ItemInstance item)
        {
          if (!(playable instanceof L2PcInstance))
             return;
          L2PcInstance activeChar = (L2PcInstance)playable;
           int itemId = item.getItemId();
          
       if (itemId == 3472)
           {
       		    playable.destroyItem("Consume", item.getObjectId(), 1, null, false);
    			activeChar.sendMessage("(1) No-grade equipment item disappeared. You have received your no-grade equipment.");
                    activeChar.getInventory().addItem("Wooden Helmet", 43, 1, activeChar, null);
           }
        }
    
    
    
        public int[] getItemIds()
        {
        	return ITEM_IDS;
        }
    }   

  3. sth I checked on the connect page.

     

    "In order to connect you'll need to download a Lineage 2 Interlude Client.

    Do it from Downloading section.

    After that you'll need to get our system patch so you can connect. Downloadings

    When you install the client,

    unrar our patch and start L2.exe in the system folder.

    Register and game account (here),create character and enjoy your time!

    Enjoy the game!"

     

    Change this ;)

    Btw I'm gonna join in a bit.

     

×
×
  • Create New...