-
Posts
315 -
Credits
0 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by L2J NexuS
-
Request Killed mob give all players item
L2J NexuS replied to martuxas1's question in Request Server Development Help [L2J]
player.isInsideRadius(npc, 3500, false, false); will this work? -
Request Killed mob give all players item
L2J NexuS replied to martuxas1's question in Request Server Development Help [L2J]
So if i am a bishop i won't get a reward? Edit : If you want to do it with a script. ( some validate that this works cause i am still a noob ) /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package custom.CustomMobRewardOnKill; import net.sf.l2j.gameserver.model.actor.L2Npc; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.quest.Quest; public class CustomMobRewardOnKill extends Quest { private CustomMobRewardOnKill(final int questId, final String name, final String descr) { super(-1, "custom", ""); addKillId(18342); // NPC ID } @Override public String onKill(L2Npc npc, L2PcInstance player, boolean isPet) { for(L2PcInstance activeChar : npc.getKnownList().getKnownPlayersInRadius(3500)) { activeChar.getInventory().addItem("reward", 57, 5, player, null); // Replace "57" with your ITEM ID and "5" with Quantiny of the item. } return null; } public static void main(String args[]) { new CustomMobRewardOnKill(-1, "custom", ""); } } ( Just in case you missed it , i didn't do the damage thing cause i don't know how and it is UNFAIR AF ) -
Request Killed mob give all players item
L2J NexuS replied to martuxas1's question in Request Server Development Help [L2J]
You just replace "baiumId" with your desired NPC ID. Also do not do it on L2GrandBossInstance. Actually this might need a new script ? -
Okay thank you !
-
So it's impossible to do it. ( i mean even if someone has to code it through )
-
WTS Auction market with augment
L2J NexuS replied to tazerman2's topic in Marketplace [L2Packs & Files]
@Tony360 can you link it here? I am using phone now and I can't search properly. -
Hello, i want someone to do some interface modifications for me. Client : Gracia Final Inventory -> GOD style inventory, ( Big with a button to make it small vice versa ) Screen Damage ( if possible ) 4th bar. ( or more) Exp bar down side ( big one as every "modern" interface ) MAYBE a CB modification ( layout , not scripts ) If you can't do everything and you can do only 1 thing, pm me. ( i am not looking only for all in one guy ) PM me here to talk about the interface and the price.
-
@Pulentolento still not working.
-
This is probably a private work so the only way is ripping it.
-
Okie dokie. Thanks anyway.
-
Can i send you a PM to talk more about this? I hope i am not a pain in the ass.
-
I asked a question on some other thread about registering your server as a company. So my question is how L2Tales, L2Eola etc. are registering their servers as a company since the files are illegal .
-
@Tryskell Do you mean this story ? Sorry for quoting you in a dead thread.
-
I will try it but i don't think it will work ( if i didn't try this already ). Also i don't even think this is a HTML tag.
-
Discussion G2A Integration
L2J NexuS replied to THeMaxPoweR's topic in Server Development Discussion [L2J]
I know its a dead thread but how did they register as a company? I never looked into it but isn't illegal to use files of NcSoft? Is there a way to acquire licence? -
You can set a texture ( image ) as a background at your HTM but that only work on NPC window. With this command. <html imgsrc="TEXTURE"> But this ( or any other way that exists on this forum ) won't work for the CB htm. So i wanted to ask, first of all if this is a client issue or java ( i doubt ? ) and also i wanted to ask if it's possible to "make" a way to add background texture at CB. Client : Gracia Final Thank you in advance.
-
Help How to Add Minimap Icon like Roxxy the Gatekeeper
L2J NexuS replied to arkom033's topic in [Request] Client Dev Help
What if you move the npc? You will have to edit the texture again. ( ++ If you hover the icon with your mouse it won't display anything. ) -
Help How to Add Minimap Icon like Roxxy the Gatekeeper
L2J NexuS replied to arkom033's topic in [Request] Client Dev Help
I think everything is handled from the reason on why the actual icon is there. What i mean is that if you open your minimap and you try to find a raidboss ( it will have a red flag on the spawn ). That was handled in the raiddata-e.dat I don't know if this help but that's the only thing i know. -
Help how to change the color title of an npc?
L2J NexuS replied to l2bartdev's question in Request Server Development Help [L2J]
Change it through the NpcName-e.dat. If you don't have it there because you use ServerSide name and title for it, you just copy from another npc and add it in there. ( i mean in npcname-e.dat ) Use L2Lige ( best tool for this kind of job )- 5 replies
-
- 1
-
-
- custom npc
- colro
-
(and 1 more)
Tagged with:
-
Help Need help with multisell
L2J NexuS replied to Thrusteris's question in Request Server Development Help [L2J]
I guess it can be done in java. It should take item IDs from a list with all the items that are able to level up, then display the ones that are inside your inventory. After that it is obvious how it should work. -
Help [H5] Clipping through the ground
L2J NexuS replied to Finn's topic in [Request] Client Dev Help
Okay thanks. -
Did you find how to disable fog?
-
Do you mean what triggers the splash screen or where the splash screen is stored?
-
Help Clan Player Status in Russian.
L2J NexuS replied to L2J NexuS's topic in [Request] Client Dev Help
@Rootware I have already changed ton of things in my sysstring-e.dat so i am 100% sure its not in there. My guess was that it was hardcorded too but i thought it was inside interface.xdat file, so i searched for about an hour ( everysingle tab ) and couldn't find anything. But i am not into scripts to find it inside interface.u If you can help me decompile it and give me a hit i would appreciate it. -
Help HWID checks to limit the opened clients.
L2J NexuS replied to L2J NexuS's question in Request Server Development Help [L2J]
Thank you, I will check it and let you know.