-
Posts
5,365 -
Joined
-
Last visited
-
Days Won
68 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Tryskell
-
Please, Help me with some Java in my server.
Tryskell replied to fleq6's question in Request Server Development Help [L2J]
Just a hint, stop to even think to admin a server if you got no clue about java dev (general state of matter). You don't need to be a god, myself I "dev" and I'm far to know all basic java stuff. 90% of what you ask is already shared, and if not, you can leech on others packs. So grow up, remove your hands from your ass and begin to code. No one will do it (for free) for you. You don't want help, you want already made server, 2 clicks to launch and go. That simply doesn't exist. It sounds aggressive, but post sounds dumb (not being irrespectful). It's not supermarket, "I want that, that, that and that, kkthxbb". As American Dream doesn't exist, "that" doesn't exist. Or you have to work for it. Mama Tryskell. -
[HELP]Lelouche anti target fix
Tryskell replied to Azumaril$'s question in Request Server Development Help [L2J]
Interlude spotted :>. Compare freya and IL projects. You will get it. -
[Help]Anti Captcha System
Tryskell replied to `NeverMore's question in Request Server Development Help [L2J]
If you used integrated images from client, such as numbers 1 to 9, basically the system would be easily bypassed, as phx could sniff the name of images, then doing a script you enter it automatically. The only possible way is to get the full image to be generated randomly, such as catpcha. So external to the client. After the protection comes only about the captcha system itself. Use another system. ----- General discussion : What the point about capcha, it's good only to spot a "bot", so in a pvp server, it's totally useless. You stay out of your computer to go shit, you're banned because you weren't at time xx to enter a popup ? Clearly, stupid system. -
Source aCis - another CRAPPY interlude server
Tryskell replied to Tryskell's topic in Server Shares & Files [L2J]
Rev 93 is out. -
[help] how to add this in my file without error ?
Tryskell replied to l2redkiller's question in Request Server Development Help [L2J]
This (the second) code itself is not enough, it calls another package named com.protect -
[Guide]Decompile Preconf Packs
Tryskell replied to 1nf0's topic in Server Development Discussion [L2J]
That. It's only good to "steal" "locked" content, or features. Don't hope you have nothing to do except a decompile and recompile action, lol. -
Source aCis - another CRAPPY interlude server
Tryskell replied to Tryskell's topic in Server Shares & Files [L2J]
Where where you MxC :(, I'm at rev 91 right now. -
dapatack side, it's in stats.armor. There is not anymore tables for armor/weapon/etcitems since some months now.
-
// Create and Init the L2ItemInstance corresponding to the Item Identifier L2ItemInstance item = new L2ItemInstance(IdFactory.getInstance().getNextId(), itemId, itemId); if (process.equalsIgnoreCase("loot") && ((!Config.AUTO_LOOT && itemId != 57 && itemId != 5575 && itemId < 6360 && itemId > 6362) || (!Config.AUTO_LOOT_ADENA && (itemId == 57 || itemId == 5575 || itemId >= 6360 && itemId <= 6362)))) { ScheduledFuture<?> itemLootShedule; long delay = 0; // if in CommandChannel and was killing a World/RaidBoss if (reference instanceof L2BossInstance) { if (((L2Attackable) reference).getFirstCommandChannelAttacked() != null && ((L2Attackable) reference).getFirstCommandChannelAttacked().meetRaidWarCondition(reference)) { item.setOwnerId(((L2Attackable) reference).getFirstCommandChannelAttacked().getChannelLeader().getObjectId()); delay = 300000; } else { delay = 15000; item.setOwnerId(actor.getObjectId()); } } else { item.setOwnerId(actor.getObjectId()); delay = 15000; } itemLootShedule = ThreadPoolManager.getInstance().scheduleGeneral(new ResetOwner(item), delay); item.setItemLootShedule(itemLootShedule); } if (Config.DEBUG) _log.warning("ItemTable: Item created oid:" + item.getObjectId() + " itemid:" + itemId); Should correct 3 errors (L2Boss => L2BossInstance, and the debug message). For the 2 last, one is simple : you forget to add a internal class named ResetOwner. The ItemInstance bad constructor is surely simple, but I let you search else it's not funny. Open L2ItemInstance and see how the constructor is made. The number/types of arguments you ask (3 integers) don't fit with L2J. So perhaps there are 2 arguements only, perhaps it's not 3 integers but 2 integers and one strong, blablabla :).
-
[HELP] IL Olympiad Buffer
Tryskell replied to Scion's question in Request Server Development Help [L2J]
The only thing you have to do is to create a normal buffer with buffs you want, and to popup/depopup it once a match occurs. Such popup system already exists for 7signs, the blacksmiths of mammon and cabals buffers act the same. Remember you have to popup them in the good stadium (as there are many stadiums). ---- About an already-made code, that doesn't exist. Some people sell their coding services, so if you're lazy you know what to do. -
[Help]Servidor Gracia Epilogue
Tryskell replied to mxteu's question in Request Server Development Help [L2J]
You can bump (aka post if no one posted in your topic) your topic only each day, so stop to bump it every 5min or you will be banned. I send you link on my 4shared L2Jmods with Laikeriz mod (as, from what I rem, the link is dead), you can find more infos about features using search button over MxC. About applying it, no one can "teach you". If you got a problem applying it, like a compilation error, just post your problem, but else, I invite you to stop L2J dev, and learn a little by your own first BEFORE all things. Try to dev crescendo : - first learn how to checkout, - then to compile, - then to apply a little mod (over MxC, 5 lines codes are usual), - and finally, how to install your server. Before all those others actions, installing a faction server is like thinking you can survive jumping from a 128th stage window building. (Now you can answer). -
This is a pretty basic mod, in network.clientpackets.EnterWorld.java, search for showClanNotice. Check on a last Freya revision. Those commands, such as .divorce and .engage for wedding mod, can be found on datapack side, search for handlers.voicedcommandhandlers. If you want to use /command, you have to touch to client in order to add your own command and related button ID (found in commandname-e.dat, client side). The commands themselves can be found in handlers.usercommandhandlers
-
Learning Java for lineage2.
Tryskell replied to brett16's question in Request Server Development Help [L2J]
Open a new topic, it's another question :P. Quests are datapack side, but the difference comes with chronicle (there are 2 quests engine, IL and postIL). -
Enjoy Google first answer : http://stackoverflow.com/questions/2263765/non-existent-jar-resources-in-java-eclipse
-
[Share]Religion System + Religion Wars. - UPDATED
Tryskell replied to An4rchy's topic in Server Shares & Files [L2J]
Reward has to be benefical to the whole side. This is an important battle, so both "factions" have to be behind the leader, hoping he succeeds. After all, he is elected/voted by players themselves. So I guess it can decreases/increases the total amount of points of a faction. Reward has to be global in any way. ---- Add more religions, like matriarcat types (only females can be voted), race-based religions, "pray a creature" religions,... It's look like Black & White ! Haha. -
Source aCis - another CRAPPY interlude server
Tryskell replied to Tryskell's topic in Server Shares & Files [L2J]
Rev 85 is out, 86 already on fire Part of rev 86 -
[Share] L2jPortugal High Five Project
Tryskell replied to monaliza's topic in Server Development Discussion [L2J]
1 - agree 2 - recommended 3 - from first link : L2jPortugal trabalha com Cliente Lineage 2 Freya (so based on L2J Freya). ---- Personal point of view : change of mascot, this one is scary, it looks like he wants to eat me (like clowns, you think they're funny but instead they got big teeths and eat little children). And basically give more infos aswell. What goals you aim, etc. -
Try with Synchronize. I invite you to keep first a copy of your work in security. http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/tasks-115.htm
-
Source aCis - another CRAPPY interlude server
Tryskell replied to Tryskell's topic in Server Shares & Files [L2J]
Rev 84 is out -
[Share]Take Clan Skills Without Restart
Tryskell replied to ĐarkSlayer's topic in Server Shares & Files [L2J]
The next goal is to ressurect a post of 2006 with 1/2 line code. Go go. -
[Share]Religion System + Religion Wars. - UPDATED
Tryskell replied to An4rchy's topic in Server Shares & Files [L2J]
Add 2 massive creatures which would be sort of NPC gods, and you will have to protect them. You can call them "avatars" if you prefer. Gain "fervour" (ferveur in french) praying your gods (skill to use everyday). Once going to some states, you can unleash the power of your God. The NPC/god/avatar could act from itself. Need IA rework, + L2NPCWalker stuff. You can change of religion, but you become heretic during a short time, and can be hunt by anyone. But in another hand, you can hunt anyone aswell. Hunt others religions launching crusades. Crusades have to been approved by the majority of clans (voting system). During crusades, a counter is launched, and you can steal chests (recycled treasures boxes) stored in enemy town. I got a lot like that :D. If you need help aswell, you can contact me by msn :). -
{Guide}Walker Routes Interlude L2j
Tryskell replied to ZeRo*'s topic in Server Development Discussion [L2J]
« on: 10 May 2009, 13:25:45 » Necromancer ! -
[Question] Respawn Points
Tryskell replied to [DEV]DjSt3rios's question in Request Server Development Help [L2J]
It's cool for you. But wait... Where is the question ? ::) And second point, what chronicle are you using. Answer changes according to chronicle (IL / postIL). -
Giving a number would be... "stupid", for me this type of dev never ends. Even in 1 year, and if I still work on the pack, there would have things to correct. That would be rev... 500 ? Lol. Frozen would be around rev 4000.
-
[Request]java code to become hero 4 ever
Tryskell replied to TsIpIzTiK®'s question in Request Server Development Help [L2J]
And me when I type //interlude, I want it compiles a full interlude pack with all retail stuff and values.
