-
Posts
78 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Everything posted by Thalion
-
LF I Want To Buy L2Off Gracia Final Files
Thalion posted a question in Request Server Development Help [L2OFF]
Hello! Im looking for Gracia Final OFF Files. Where can I buy it? Thanks. -
Cheap Banners! [Static - Animated - Cinematic - Flash]
Thalion replied to Thalion's topic in Web Development/Designing
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. -
Cheap Banners! [Static - Animated - Cinematic - Flash]
Thalion replied to Thalion's topic in Web Development/Designing
Thank you! I'm starting on this. Do You think it's too expensive? -
Cheap Banners! [Static - Animated - Cinematic - Flash]
Thalion replied to Thalion's topic in Web Development/Designing
Bump! -
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
-
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
Now it works! Thank you very much, you are amazing! P.D.: Is working with "p = (L2PcInstance) activeChar.getTarget();" -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
Thank you again! Well I changed it and now I got this error: -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
It did not work. Thanks anyway! -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
Thanks for help! It returned an error: Thanks! -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
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. -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
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. -
Yes I used L2lige some times to edit ini files. I will reinstall my system folder without L2lige using.
-
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.
-
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
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."); } } -
How can I edit an Admin Command?
Thalion replied to Thalion's question in Request Server Development Help [L2J]
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. -
Hello averyone! I want to edit an Admin command (//create_item). The problem is that only create items to me. I need that this commando be able to create the items to the target too. Thank you!
-
Someone can help me please?
-
Thanks for reply! I will try to find the option in these files. I can't change my system folder because I have only 1 system with protocol 83. I didn't find another!
-
Hi everyone! I'm working on a Lineage 2 Gracia Final project. I'm using an old Server Datapack that I found. I'm modifying and fixing all the problems (trying XD). I have a little problem with the skill bar. When I log in the game I put the skill bar in my favourite place but when I close the client and relog, the skill bar is in another place. Always it move to the same place. Do you know what is the problem? Thank you! Sorry for my bad english. Before: After: http://imageshack.us/a/img442/8780/1ezx.png[/img]
-
Well I was testing the BETA server and these are my conclusions: - Primarily, staff members are very active. - Found errors or bugs, but all that is reported in the forum is quickly solved. - Good server configuration with interesting features. - 0 Lags. I saw in the forum that some say have lags, but it's definitely their problem. They have a good dedicated server. - Excellent protection for bots and attacks. I tried many things and nothing worked. For now that's what I saw. I found no negative characteristics but that is something more personal. I just hope they fix the bugs that still put on the forum and the server will be 10 points for LIVE. Greetings and good staff work.
-
Bump!
-
[WTS] Full L2Webpage - Full Codec & Modules
Thalion replied to Thalion's topic in Marketplace [Webdesign & Webdevelop]
Bump!