-
Posts
1,899 -
Joined
-
Last visited
-
Days Won
14 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by vampir
-
Sorry, but i don't want to add L2UI_CT1.utx from Ertheia with size of 203mb to my patch. Such answers aren't really helpful staying on the topic.
-
Project [Interlude] L2Jhellas
vampir replied to Boorinio's topic in Server Development Discussion [L2J]
This sounded like you wanted to be seen as maker of those codes and felt resentful that somebody spotted that :P -
That's what i want to do, set those properties and i made this topic to find out how.
-
Nobody knows? :( I can pay for info
-
Ye, while doing this Party Machine i was doing something like that: Not Checked: <button value="" action="bypass bypass" width=14 height=14 back="L2UI.CheckBox" fore="L2U.CheckBox"> Checked: <button value="" action="bypass bypass" width=14 height=14 back="L2UI.CheckBox_checked" fore="L2U.CheckBox_checked">
-
Look of the button doesn't matter. What i need is to find out, how to make button width and height change and not second(like on the picture) button to be created.
-
Hi I want to add Button from another Ertheia to H5. It works really nice except one problem: Does anybody know, what i need to set so button will expand in width and height correctly? L2UI_CT1.Button_DF is good example of correct button, it is normally 32x32 but i can create any size of it and it will look nice :)
-
LF Does Anyone Have The Complete Code?
vampir replied to Tristis's question in Request Server Development Help [L2J]
You want to fix whole L2JServer by asking for the completed codes? Sorry but i don't have that fixes, you could take just part of the work from acis(like those fixes you are asking for). -
Discussion Interlude Project
vampir replied to `iAndre's topic in Server Development Discussion [L2J]
Omg... So it looks like you are the only one worthy. On Topic: I would like to see a server with nice background story. I don't mean wall of texts in every quest that nobody would read, but small infos that would tell player what is mainly going on over the world. Then just connect your features with it, make everything have a bit of sense. I think players would like that feeling. -
Help How To Add ; In Html For The Buffer.
vampir replied to Styx's question in Request Server Development Help [L2J]
I think it should be something like that: @Override public void onBypassFeedback(L2PcInstance player, String command) { StringTokenizer st = new StringTokenizer(command, " "); String actualCommand = st.nextToken(); if (actualCommand.equalsIgnoreCase("getbuff")) { String[] buffsArray = command.substring(actualCommand.length).trim().split(";"); for(String buffString : buffsArray) { String[] idLevelString = buffString.split(" "); int buffid = Integer.parseInt(idLevelString[0]); int bufflevel = idLevelString.length > 1 ? Integer.parseInt(idLevelString[1]) : 1; if (buffid != 0 && !player.isDead()) { SkillTable.getInstance().getInfo(buffid, bufflevel).getEffects(this, player); broadcastPacket(new MagicSkillUse(this, player, buffid, bufflevel, 500, 0)); } } showChatWindow(player); } else if (actualCommand.equalsIgnoreCase("restore")) { if (!player.isDead()) { player.setCurrentHp(player.getMaxHp()); broadcastPacket(new MagicSkillUse(this, player, 1258, 4, 500, 0)); showChatWindow(player); } } else if (actualCommand.equalsIgnoreCase("cancel")) { if (!player.isDead()) { player.stopAllEffects(); broadcastPacket(new MagicSkillUse(this, player, 1056, 12, 500, 0)); showChatWindow(player); } } else super.onBypassFeedback(player, command); } -
Help How To Add ; In Html For The Buffer.
vampir replied to Styx's question in Request Server Development Help [L2J]
Hi Could you show me whats before the code you have pasted? I would like to see how buffid and bufflevel is taken from String, so i can find out best changes in code without guessing :) -
WTB Client Editing Professional [Offers From 700 Usd]
vampir replied to l2-scripts's topic in Marketplace [L2Packs & Files]
Can you put here screens of finished work when everything is done? :) I am glad you have found somebody who can do such things, result looks great so far -
<html> <body> Normal Text <br> <font name="CreditTextNormal">CreditTextNormal Text</font> <br> </body> </html>
-
<font name="CreditTextNormal">
-
Help Html Button Fore Back Actions
vampir replied to janiko's question in Request Server Development Help [L2J]
Easy thing. You need 2 superposed icons. Make a table with that icon(guy with a green/white colors around) as a background. Inside TD of the table, add button with completely invisible fore and almost fully invisible(except yellow borders) back. -
Help Html Image Overly How To Make?
vampir replied to janiko's question in Request Server Development Help [L2J]
This is connection of 3 things: 1. Background icon(icon.weapon_elven_long_sword_i00) 2. Black Square which area is 1/4 of icons area, also placed as background(L2UI_CT1.Windows_DF_TooltipBG) 3. Normal Text <table border=0 cellspacing=0 cellpadding=0 width=32 height=32 background="icon.weapon_elven_long_sword_i00"> <tr> <td width=32 align=right> <table border=0 width=16 height=16 background="L2UI_CT1.Windows_DF_TooltipBG"> <tr> <td width=16 align=center valign=center> <font color="FFFFFF">D</font> </td> </tr> </table> </td> </tr> </table> -
-
WTB Client Editing Professional [Offers From 700 Usd]
vampir replied to l2-scripts's topic in Marketplace [L2Packs & Files]
Really nice! I wish you good luck, for sure i would also use services of the person that can accomplish such task :) -
It's better to use some files with less bugs, i believe that's what merfis202 and Krat0S ment and i have to agree
-
WTS Community Board Integrated Social Networks
vampir replied to a topic in Marketplace [L2Packs & Files]
Players must login to facebook/twitter from l2 client and send username + password to your dedicated server in order to make it work? -
That's the only server nowadays that is worth waiting for. I didn't have much time to test it during closed beta, but for sure i am going to check everything out while server is open for everyone and write a review. Have fun finishing it. I hope you soon will write changelog including all the things you are currently working on, i like to read those kind of stuff :P
- 176 replies
-
Request Lasthero.java & Titlecolor.java From Fandc Pack
vampir replied to Karasu's question in Request Server Development Help [L2J]
I am judging the revision L2Tales had before i started to work on it, i can't see any reason to keep my opinion for myself when somebody would like to know it. I am working on FandC because server i am working on started to use that pack before i joined the team, L2-ft isn't better than your pack. -
How To Make Apply Changes To The Java Core.
vampir replied to R3spawn's question in Request Server Development Help [L2J]
To apply changes on the code, you need to make changes in java files, build again and override the files that were changed. I don't get what you are saying about changing rates through config files. -
Help Gameserver Isn't Using All Of The Ram Memory Available!
vampir replied to R3spawn's question in Request Server Development Help [L2J]
-Xms1536m - that's initial amount of ram memory while starting the gameserver, -Xmx1536m - that's max amount of memory. Start a server, let everything load and check how much memory gameserver consumed so far, put that value + something(let's say 1/3, so something will be left for few data like players) as initial memory. Don't make initial memory, be same as maximum. It will slow garbage collector and memory will expand anyway if there is lack of it. Make sure consumed memory will never reach even 75% of max memory, after that garbage collections can be more frequent. On 32bit system, you cannot put more memory to the java process than 1.5G.- 3 replies
-
- gameserver
- ram
-
(and 2 more)
Tagged with:

