Jump to content

StarChild

Members
  • Posts

    134
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by StarChild

  1. I already found fix for knuckles, from a server I play in. I will share it soon

    http://i69.servimg.com/u/f69/11/39/87/02/shot0014.jpg

    http://i69.servimg.com/u/f69/11/39/87/02/shot0015.jpg

     

    dam microsoft: I left downloads on while doin microsoft update. Update done: 'would you like to reboot now? 57 seconds remaining' ><

     

     

    So maybe you gonna tell us on what server do you play? Or share that server patch...

     

    Thank you.

  2. And also, when you open a file in FileEdit, at the bottom (Where log is) you can see in which rev file is atm.

    So like if you open Armorgrp, it's 413, but some files like Env.int are in different rev, for example Env.int is in 111 rev. So by the logics, you must save files in same rev like those were when you have opened em.

     

    I wish I helped you ^^

  3. Still in need of help with creating custom +100 Enchant Scroll!

     

    Here's description:

    Name for ex: Epic Weapon Enchant Scroll

    Sold in custom shop...

    When you use it, it makes your weapon +100 instantly with one use and with 100% chance.

    Same needed with Epic Armor Enchant Scroll...

     

    I hope someone will help me ^^

  4. Still can't compile... Here's my code:

    package com.l2jfree.gameserver.handler.voicedcommandhandlers;
    
    import com.l2jfree.gameserver.handler.IVoicedCommandHandler;
    import com.l2jfree.gameserver.model.actor.instance.L2PcInstance;
    import com.l2jfree.gameserver.network.serverpackets.SocialAction;
    
    
    /**
    *
    *
    */
    public class Res implements IVoicedCommandHandler
    {
        private static final String[] VOICED_COMMANDS = { "res" };
    
        public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
        {   
            if (command.equalsIgnoreCase("res"))
            {
                  if (!activeChar.isAlikeDead())
                  {
                     activeChar.sendMessage("You cannot be ressurected while alive.");
                     return false;
                  }
               if(activeChar.isInOlympiadMode())
               {
                  activeChar.sendMessage("You cannot use this feature during olympiad.");
                 return false;
               }
    	   if(activeChar.getInventory().getItemByItemId(3470).getCount() < 100)
               {
                  activeChar.sendMessage("You need 100 Gold Bars to use the ressurection system.");
                 return false;
               }       
                  activeChar.sendMessage("You have been ressurected!");
                activeChar.getInventory().destroyItemByItemId("RessSystem", 3470, 100, activeChar, activeChar.getTarget());
                  activeChar.doRevive();
                  activeChar.broadcastUserInfo();
                  activeChar.sendMessage("100 Gold Bars has dissapeared! Thank you!");
    		  broadcastPacket(new SocialAction(activeChar.getObjectId(), 15));
            }
           return true;
        }
        public String[] getVoicedCommandList()
        {
            return VOICED_COMMANDS;
        }
    
    }
    
           

     

    And here's pic of compilation failture:

    http://img100.imageshack.us/my.php?image=51345477.jpg

     

    Thank you in advice.

×
×
  • Create New...