-
Posts
2,656 -
Joined
-
Last visited
-
Days Won
26 -
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by An4rchy
-
Beta was fun, most of the players liked the server :) I am helping Devlin to complete the (huge) list of changes that need to be done after beta for more tests and faster fixes and tomorrow see ya in-game ^^ :)
- 51 replies
-
- l2elcardia
- elcardia
-
(and 6 more)
Tagged with:
-
Exactly what i would reply. Also, you are jealous of how much money Stalone has made from L2Tales, that's why you keep cursing him (btw, i was playing L2Tales for a while and everything seemed fine, stable gameplay, so there is no other reason than jealousy that flamers of L2Tales exist).
-
Help What Does It Take To Create A Custom Chat For Pvpers
An4rchy replied to mikemaster's question in Request Server Development Help [L2J]
if (Config.ENABLE_PVP_CHAT && _text.startsWith("-")) { if (activeChar.getPvpKills() < Config.PVP_CHAT_COUNT) { activeChar.sendMessage("You don't have enough pvps in order to talk to this chat"); return; } for (L2PcInstance p:L2World.getInstance().getAllPlayers().values()) { if (p.getPvpKills() < Config.PVP_CHAT_COUNT) continue; p.sendPacket(new CreatureSay(0,16,activeChar.getName(),_text)); } return; } -
So you suggest players not to play because you are stupid (?).
-
I really don't see valid point here. You think there are no internet connections that can handle the packets of 15k clients? Please think again.. Also, did you ever hear vampire ddosing someone (I mean in a topic or something)? I think not.. For real guys, if you have problems with Stalone (problems which basically consist of jealousy), don't dirt every topic you see in Private Servers section, because you need to understand something: He will keep ignoring you and you will achieve sh1t. This server will last, because it is finely developed and every detail is taken care of (from what I've seen in-game). Good luck from me guys.
-
I almost died laughing at this :D
-
Devlin has done a great job with the server you should definitely try it guys. Gl mate.
- 51 replies
-
- l2elcardia
- elcardia
-
(and 6 more)
Tagged with:
-
I have logged in this server (when vampire was searching for some testers) and all i can say is this: The server is amazing, unique features, unique gameplay and highly skilled developer. I totally recommend this server even for those that don't usually play high rates, since experience means nothing compared to the other tasks you have to do in order to get to the top. +1 from me and i will of course be there at the opening.
-
So you put H5 to Interlude? It could work, if you make bring more interesting features too except items/npcs, like attributes for example, or instances etc. GL.
-
True, you should buy a protection(there are several out there, smart crypt, lameguard). I didn't have any trouble using an old l2net version. Not that i play, i was just curious whether it works or not. GL.
- 156 replies
-
- DeathWhisper
- Interlude PvP Server
- (and 6 more)
-
Server is nice, good balance(except a bit of easy to land debuffs, eg. silence/doom/anchor) and fun(pvps, events). The only thing i'm a little bit concerned of is the donation list... I have already seen at least 3-4 players crying to open donations at shout chat.. I hope it's all balanced.
- 156 replies
-
- DeathWhisper
- Interlude PvP Server
- (and 6 more)
-
Code L2Jxtend **customs Made Simple**
An4rchy replied to Elfosass's topic in Server Shares & Files [L2J]
You just need to add the jar, l2jxtend.jar, the configs(you configure them the way you want) and the small patch. -
So i guess it's GMT +2 not +3..
- 156 replies
-
- DeathWhisper
- Interlude PvP Server
- (and 6 more)
-
Code [Share]Fastaugment :) :d
An4rchy replied to AbsolutePower's topic in Server Shares & Files [L2J]
I am 18, you are 21 like you said, yet you are incapable of answering to the point I made. You are just clueless and you're avoiding any discussions by saying bullshit about things you can't even read. Ok, feel free to leave this conversation, but please, tell me why did you use a string tokenizer to split the command based on space character while you don't use space in htmls. Oh and please tell me about my 'click teleportation' after you read the following: auto pilot gatekeeper, icon parser, ping system. Keep embarrassing yourself, you know you suck but you just won't admit it :) By the way, what is a 'client html'? (Or should I ask, do you even know what a server and what a client is, besides l2?) -
I hope it's not an April's Fool :D
- 156 replies
-
- DeathWhisper
- Interlude PvP Server
- (and 6 more)
-
Code L2Jxtend **customs Made Simple**
An4rchy replied to Elfosass's topic in Server Shares & Files [L2J]
You're welcome :) Coming up (perhaps tonight or tomorrow): - //l2jxtend command which opens our admin panel. - Admin panel that handles several functions: reload configurations, edit configurations from in-game(saving them in json files too), re-starting tasks so that they are updated based on the new/changed configurations(for example vote reward). -
Code [Share]Fastaugment :) :d
An4rchy replied to AbsolutePower's topic in Server Shares & Files [L2J]
Perhaps your knowledge base limits you from understanding my point. Java-sided htmls are not bad, but when it comes to having a single button (augment), it is not wise to make them hard coded(and pointless). Also, let's not talk about performance and speed of your codes(check icon parser). Regarding this stupid pointless example you spitted out, i just re-written your 8 lines of code in one, using even less variables. final StringTokenizer st = new StringTokenizer(command, " "); final String currentcommand = st.nextToken(); These 2 lines were not even necessary to be added, since you don't use space (" ") character in your bypass, you use "-". So the tokenization of the string based on the space character was useless(which proves me one more time that you have no clue of what you're doing while c/ping ready l2j ways/methods). -
These are skill reworks mostly. I'm talking about features that players will blink out of curiosity when reading them. (For example, a good feature i was amazed to see, even if nowadays it's an old one, was new skills to unplayed classes like bd or sws.)
-
Code [Share]Fastaugment :) :d
An4rchy replied to AbsolutePower's topic in Server Shares & Files [L2J]
About your retardness, i will comment at the end of my reply. So: Shit variables: final StringTokenizer st = new StringTokenizer(command, " "); final String currentcommand = st.nextToken(); final String letsSliptIt = currentcommand; final String[] nowTheId = letsSliptIt.split("-"); final String OurSplititCommand = nowTheId[0]; final String FinallyWeHaveObjectId = nowTheId[1]; Compare the above with that: final int oid = Integer.parseInt(command.split("-")[1]); Hard-coded htmls: tb.append("<html><head><title>By AbsolutePower</title></head><body>"); tb.append("<center>"); tb.append("<table width=\"250\" cellpadding=\"5\" bgcolor=\"000000\">"); tb.append("<tr>"); tb.append("<td width=\"45\" valign=\"top\" align=\"center\"><img src=\"L2ui_ch3.menubutton4\" width=\"38\" height=\"38\"></td>"); tb.append("<td valign=\"top\"><font color=\"FF6600\">AugmentHelper</font>"); tb.append("<br1><font color=\"00FF00ju\">" + player.getName() + "</font>, use this menu for fast augment :)<br1></td>"); tb.append("</tr>"); tb.append("</table>"); tb.append("</center>"); tb.append("<center>"); tb.append("<br>"); for (L2ItemInstance item : player.getInventory().getItems()) { if(!item.isAugmented() && item.getItemType() instanceof L2WeaponType && item.isEquipable() && !item.isQuestItem()) { if(item!=null) tb.append("<button value=\""+item.getItemName()+"\" action=\"bypass -h npc_" + getObjectId() + "_tryaug-"+item.getObjectId()+"\" width=204 height=20 back=\"sek.cbui75\" fore=\"sek.cbui75\"><br>"); //tb.append("<table border=0 width=\"100%\">"); // tb.append("<tr><td><img src=\""+IconJava.getIcon(item.getItemId())+"\"width=\"32\"height=\"32\"></td>" //+"<td>"+"<button value=\""+item.getItemName()+"\" action=\"bypass -h npc_"+getObjectId()+"_tryaug-"+item.getObjectId()+"\"width=204 height=21 back=\"sek.cbui75\" fore=\"sek.cbui75\"><br>"+"</td>"+"<td>+"+item.getEnchantLevel()+"</td></tr></table>"); } } tb.append("<br>"); tb.append("<button value=\""+Rem+"\" action=\"bypass -h npc_" + getObjectId() + "_showremlist-1"+"\" width=204 height=20 back=\"sek.cbui75\" fore=\"sek.cbui75\"><br>"); tb.append("</center>"); tb.append("</body></html>"); Compare the above with that (plus a small method that returns the weapon list): <html> <title> Augmenter </title> <body> <center> <img src="l2ui_ch3.herotower_deco" width=256 height=32 align=center> <br> Choose weapon:<br> %weplist% <br1> <img src="l2ui_ch3.herotower_deco" width=256 height=32 align=center> </center> </body> </html> Also, who told you that anything that works is a 'good code'? Regarding you being retarded, feel free to ask anyone if i pmed him to reply here, it's just your immature brain pulling out stupid ideas of what you would do in my position. Go share some shitty icon parsers and delete your topics, for real. I think people(-Hellas members) can easily understand what i'm talking about here, so i won't bother commenting anymore. And please don't cry again at skype after my commenting(specially if you're planning on rage-quiting after we start a conversation). -
Ayami, did you ever consider the fact that fans could be behind this?
- 156 replies
-
- DeathWhisper
- Interlude PvP Server
- (and 6 more)
-
You found his explanation satisfying... I really don't want to comment on that, but i have to. Let's pretend it's the truth (which is NOT), what could he gain through that? First of all, people would realize the inexistent maturity of the guy they were going to buy a pack from. Moving on, if someone who wouldn't really care for the reason behind the comments on his topic, they would just ignore him and his pack, so -money for him. Lastly (but kinda lame if we're speaking for mxc, no offense staff team :) ), making a topic for such a reason(the fake one he 'explained') is kinda like spamming, since there is no point and the share is of no use for the members, which could possibly be punishable. Also me, you and anyone who has something to say about seller is allowed to comment here. If this wasn't allowed all those writing 'trusted gl', 'gl with your sales skilled' bla bla would have been punished.
-
Tryskell learnt from l2j, but Tryskell did not bother selling pvp packs or sharing icon shits parsers, instead he did the best for him, he made real challenges for himself and he understood in depth java structure and oop. Also, Tryskell spent some time from what i can remember reading online about programming, such as various methods of java library etc.
-
Yes, yes, that's DEFINATELY it haha :) Keep going gj. You keep embarrassing yourself and then you'll be crying at skype (i guess that's why you added me when this begun).
-
Dude, i got dragged into programming by l2j too, but please watch his last share (icon parser). It's his newest share and it is worth less than fcking shit. This guy has no clue of programming. Making features in l2 that work doesn't mean nothing, and i'm not the only one supporting this opinion.
-
You should not act fast first of all. How did you even bother creating over 50 fake pcs lol. Close the server, rename it, put it in previews and advertise it as much as you can. Also, in order to get a decent online amount of players, you need to think of something unique that will affect the gameplay in a nice way. Doing actions such as fake pcs will destroy you even more.


