Jump to content

Thalion

Members
  • Posts

    78
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About Thalion

Profile Information

  • Gender
    Male

Thalion's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. Hello! Im looking for Gracia Final OFF Files. Where can I buy it? Thanks.
  2. I think you're devaluing my work. I've seen your banners and with tutorials can be made too. And I don't think that you know Flash banners. Also most of your banners have a single image and change only the text. That way you can do the banners with more quality because it weighs less. Anyway thanks for your opinion.
  3. Thank you! I'm starting on this. Do You think it's too expensive?
  4. Hi everyone! I make banners to order with unique designs and everything as you request. I'm working in different sizes and the prices vary dependending on what you want on your banner. I should clarify that I am not a professional designer. I only offer my service to those who need a cheap solution. - My services: Description: Static Banners: the static banners are images without animations. Formats: JPEG, GIF, PNG. Animated Banners: the animated banners have basic frame-based animations. Format: GIF. Cinematic Banners: the cinematic banners have video-based animations. Format: GIF. (These banners have a min. weight of 800 Kb) Flash Banners: the flash banners have high quality animations made ??with Adobe Flash. Format: SWF, GIF. (in GIF format have low quality and high weight) Sizes: If you need other size banners we will arrange a fair price. Examples: Static Banners: Animated Banners: Cinematic Banners: Flash Banners: GIF Format SWF Format: I can't upload the swf files here. I will show you the image quality of the Flash Banners. Payment Methods: I accept Paypal only. Payment must be made ​​before I can start working on the banner. If you are interested contact me by MP
  5. Now it works! Thank you very much, you are amazing! P.D.: Is working with "p = (L2PcInstance) activeChar.getTarget();"
  6. Thank you again! Well I changed it and now I got this error:
  7. Thanks for help! It returned an error: Thanks!
  8. Well I think nobody can help me. I want it only for a fast test. When my server will be live it will not necessary. Thank you anyway.
  9. What do you mean? This is the code of "AdminCreateItem.java" of my datapack. I don't understand much of java. I want the items be able created to target player.
  10. Yes I used L2lige some times to edit ini files. I will reinstall my system folder without L2lige using.
  11. Thanks for reply. I was checking in my system folder and I found a folder called: "backup 00.22.20.386". This folder is Read-Only and inside are 2 files: L2.ini and user.ini I don't know what is the function of this folder.
  12. Thank for reply! I found my java code: package handlers.admincommandhandlers; import java.util.StringTokenizer; import net.sf.l2j.gameserver.datatables.ItemTable; import net.sf.l2j.gameserver.handler.IAdminCommandHandler; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.network.serverpackets.ItemList; import net.sf.l2j.gameserver.templates.item.L2Item; /** * This class handles following admin commands: * - itemcreate = show menu * - create_item <id> [num] = creates num items with respective id, if num is not specified, assumes 1. * * @version $Revision: 1.2.2.2.2.3 $ $Date: 2005/04/11 10:06:06 $ */ public class AdminCreateItem implements IAdminCommandHandler { private static final String[] ADMIN_COMMANDS = { "admin_itemcreate", "admin_create_item" }; public boolean useAdminCommand(String command, L2PcInstance activeChar) { if (command.equals("admin_itemcreate")) { AdminHelpPage.showHelpPage(activeChar, "itemcreation.htm"); } else if (command.startsWith("admin_create_item")) { try { String val = command.substring(17); StringTokenizer st = new StringTokenizer(val); if (st.countTokens() == 2) { String id = st.nextToken(); int idval = Integer.parseInt(id); String num = st.nextToken(); long numval = Long.parseLong(num); createItem(activeChar, idval, numval); } else if (st.countTokens() == 1) { String id = st.nextToken(); int idval = Integer.parseInt(id); createItem(activeChar, idval, 1); } } catch (StringIndexOutOfBoundsException e) { activeChar.sendMessage("Usage: //itemcreate <itemId> [amount]"); } catch (NumberFormatException nfe) { activeChar.sendMessage("Specify a valid number."); } AdminHelpPage.showHelpPage(activeChar, "itemcreation.htm"); } return true; } public String[] getAdminCommandList() { return ADMIN_COMMANDS; } private void createItem(L2PcInstance activeChar, int id, long num) { L2Item template = ItemTable.getInstance().getTemplate(id); if (template == null) { activeChar.sendMessage("This item doesn't exist."); return; } if (num > 20) { if (!template.isStackable()) { activeChar.sendMessage("This item does not stack - Creation aborted."); return; } } activeChar.getInventory().addItem("Admin", id, num, activeChar, null); ItemList il = new ItemList(activeChar, true); activeChar.sendPacket(il); activeChar.sendMessage("You have spawned " + num + " item(s) number " + id + " in your inventory."); } }
  13. Thank you! I will try in the scripts. I know, but in this datapack don't work. All the items created are for myself. Thanks.
×
×
  • Create New...