Jump to content

Question

Posted (edited)

Hello i am wondering how exacly is the best way to work the specialcamera and how to modify it 

	private void onEnterNewbie(L2PcInstance activeChar)

        {

         sendPacket(new SpecialCamera(this supposed to be the target npc->29052, 10, 0, 5, 0, 3000));

Well this didnt work at all .. any suggestion?

 

My thought is to set a target and just change the id to target? or whatever... 

 

on specialcamera.java tell me _id and this supposed to work but doesnt .. if anyone know how to modify it .. thanks

Edited by L2LostWard

5 answers to this question

Recommended Posts

  • 0
Posted

thank a lot budy also i want to tell because of frozen rev this doesnt work,for people who you like to add this on there servers use this

### Eclipse Workspace Patch 1.0
#P L2jFrozen_GameServer
Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/EnterWorld.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/clientpackets/EnterWorld.java     (revision 1097)
+++ head-src/com/l2jfrozen/gameserver/network/clientpackets/EnterWorld.java     (working copy)
@@ -49,10 +49,12 @@
 import com.l2jfrozen.gameserver.model.L2Character;
 import com.l2jfrozen.gameserver.model.L2Clan;
 import com.l2jfrozen.gameserver.model.L2Effect;
+import com.l2jfrozen.gameserver.model.L2Object;
 import com.l2jfrozen.gameserver.model.L2Skill;
 import com.l2jfrozen.gameserver.model.L2World;
 import com.l2jfrozen.gameserver.model.actor.instance.L2ClassMasterInstance;
 import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance;
+import com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance;
 import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
 import com.l2jfrozen.gameserver.model.base.ClassLevel;
 import com.l2jfrozen.gameserver.model.base.PlayerClass;
@@ -92,6 +94,7 @@
 import com.l2jfrozen.gameserver.network.serverpackets.QuestList;
 import com.l2jfrozen.gameserver.network.serverpackets.ShortCutInit;
 import com.l2jfrozen.gameserver.network.serverpackets.SignsSky;
+import com.l2jfrozen.gameserver.network.serverpackets.SpecialCamera;
 import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage;
 import com.l2jfrozen.gameserver.network.serverpackets.UserInfo;
 import com.l2jfrozen.gameserver.powerpak.PowerPakConfig;
@@ -508,6 +511,144 @@
	private void onEnterNewbie(L2PcInstance activeChar)
	{
               
+               /* ****************************** Camera MOD ****************************** */
+               // 1 actived, 0 deactived
+               int activemod = 1;
+              
+                       // 1th value: ID
+                       // 2nd value: Distance between char and camera
+                       // 3th value: Left-Right angle of camera starting position
+                       // 4th value: Up-Down angle of camera starting position
+                       // 5th value: time in which "turn" and "rise" will take effect
+                       // 6th value: total time of the camera effect
+                      
+                       activeChar.sendPacket(new ExShowScreenMessage("Welcome to Lineage II Cyber Reborn!", 6000));
+                      
+                       try
+                       {
+                               Thread.sleep(2000);
+                       }
+                       catch (InterruptedException e)
+                       {
+                               e.printStackTrace();
+                       }
+                      
+                       int NPC1 = 0;
+                       int NPC2 = 0;
+                       int NPC3 = 0;
+                       int NPC4 = 0;
+                      
+                       // Configurable
+                       // Here you can change npc name and the message
+                       String NPCname1 = "GM Shop";
+                       String MessageNPC1 = "Here you can buy equipment for free!!";
+                      
+                       String NPCname2 = "Special Shop";
+                       String MessageNPC2 = "Here you can buy special equipments to become stronger!";
+                      
+                       String NPCname3 = "Gatekeeper";
+                       String MessageNPC3 = "With Gatekeeper you can go anywhere you want!!";
+                      
+                       String NPCname4 = "Pepper";
+                       String MessageNPC4 = "Here you can add your Dyes!";
+                       // End Config
+                      
+                       for (final L2Object npc : activeChar.getKnownList().getKnownObjects().values())
+                       {
+                               if (!(npc instanceof L2NpcInstance))
+                                       continue;
+                              
+                               if (npc.getName().equals(NPCname1) && NPC1 != 1)
+                               {
+                                       activeChar.setTarget(npc);
+                                       final int gottarget = activeChar.getTarget().getObjectId();
+                                      
+                                       activeChar.sendPacket(new SpecialCamera(gottarget, 50, 120, 15, 1000, 6000));
+                                       activeChar.sendPacket(new ExShowScreenMessage(MessageNPC1, 3000));
+                                      
+                                       try
+                                       {
+                                               Thread.sleep(5000);
+                                       }
+                                       catch (InterruptedException e)
+                                       {
+                                               e.printStackTrace();
+                                       }
+                                      
+                                       NPC1 = 1;
+                                       continue;
+                               }
+                              
+                               if (npc.getName().equals(NPCname2) && NPC2 != 1)
+                               {
+                                       activeChar.setTarget(npc);
+                                       final int gottarget = activeChar.getTarget().getObjectId();
+                                      
+                                       activeChar.sendPacket(new SpecialCamera(gottarget, 50, 120, 15, 2000, 6000));
+                                       activeChar.sendPacket(new ExShowScreenMessage(MessageNPC2, 3000));
+                                      
+                                       try
+                                       {
+                                               Thread.sleep(5000);
+                                       }
+                                       catch (InterruptedException e)
+                                       {
+                                               e.printStackTrace();
+                                       }
+                                      
+                                       NPC2 = 1;
+                                       continue;
+                               }
+                              
+                               if (npc.getName().equals(NPCname3) && NPC3 != 1)
+                               {
+                                       activeChar.setTarget(npc);
+                                       final int gottarget = activeChar.getTarget().getObjectId();
+                                      
+                                       activeChar.sendPacket(new SpecialCamera(gottarget, 50, 145, 15, 3000, 6000));
+                                       activeChar.sendPacket(new ExShowScreenMessage(MessageNPC3, 3000));
+                                      
+                                       try
+                                       {
+                                               Thread.sleep(5000);
+                                       }
+                                       catch (InterruptedException e)
+                                       {
+                                               e.printStackTrace();
+                                       }
+                                      
+                                       NPC3 = 1;
+                                       continue;
+                               }
+                              
+                               if (npc.getName().equals(NPCname4) && NPC4 != 1)
+                               {
+                                       activeChar.setTarget(npc);
+                                       final int gottarget = activeChar.getTarget().getObjectId();
+                                      
+                                       activeChar.sendPacket(new SpecialCamera(gottarget, 50, 50, 15, 4000, 6000));
+                                       activeChar.sendPacket(new ExShowScreenMessage(MessageNPC4, 3000));
+                                      
+                                       try
+                                       {
+                                               Thread.sleep(5000);
+                                       }
+                                       catch (InterruptedException e)
+                                       {
+                                               e.printStackTrace();
+                                       }
+                                      
+                                       NPC4 = 1;
+                                       continue;
+                               }
+                       }
+                      
+                       activeChar.setTarget(null);
+               
+               /* ****************************** Camera MOD ****************************** */
+
		if(Config.NEW_PLAYER_EFFECT)
  • 0
Posted

The target is an object id not an npc id.

It is the id of this particular instance of npc you are targeting and not the template's.

Guest
This topic is now closed to further replies.
  • Posts

    • You should buy it then I’ll make a discount  
    • Hi everyone,   In 2014, I completely stepped away from developing L2 servers and doing L2J-related work. Since then, I’ve only opened this server about once a year and helped a few servers and individuals for free. I haven’t taken on any paid L2J work since then.   LINEAGE2.GOLD is a project that has reached about Season 6. The first season launched at the end of 2020 and was a fully rebuilt Gold-style server on the Classic client (protocol 110). It featured many custom systems and enhancements. After several seasons, I decided to abandon the Mobius-based project and move to Lucera, as my goal was to get as close as possible to Interlude PTS behavior while still staying on the L2J platform.   The current project was once again completely rebuilt, this time on the Essence client (protocol 306), and is based on Lucera. Because of that, acquiring a license from Deazer is required.   My Lucera extender includes, but is not limited to: Formulas.java Basic anti-bot detection, which proved quite effective, we caught most Adrenaline users using relatively simple server-side logic, logged them, and took staff action. Simple admin account lookup commands based on IP, HWID, and similar identifiers. In-game Captcha via https://lineage2.gold/code, protected by Cloudflare, including admin commands for blacklisting based on aggression levels and whitelisting. Additional admin tools such as Auto-Play status checks, Enchanted Hero Weapon live sync, force add/remove clans from castle sieges, item listeners for live item monitoring, and more. A fully rewritten Auto-Play system with support for ExAutoPlaySetting, while still using the Auto-Play UI wheel, featuring: Debuff Efficiency Party Leader Assist Respectful Hunting Healer AI Target Mode Range Mode Summoner buff support Dwarf mechanics Reworked EffectDispelEffects to restore buffs after Cancellation. Raid Bomb item support. Reworked CronZoneSwitcher. Prime Time Raid Respawn Service. Community Board features such as Top rankings and RB/Epic status. Custom systems for Noblesse, Subclasses, support-class rewards, and much more.   Depending on the deal, the project can include: The lineage2.gold domain The website built on the Laravel PHP framework The server’s Discord Client Interface source Server files and extender source The server database (excluding private data such as emails and passwords)   I’m primarily looking for a serious team to continue the project, as it would be a shame to see this work abandoned. This is not cheap. You can DM me with offers. If you’re wondering why I’m doing this: I’ve felt a clear lack of appreciation from the L2 community, and I’m not interested in doing charity work for people who don’t deserve it. I’m simply not someone who tolerates BS. Server Info: https://lineage2.gold/info Server for test: https://lineage2.gold/download Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock