Jump to content
  • 0

Specialcamera


SQL Developer

Question

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
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

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)
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • Join our Discord server, create your own invite link and invite your friends. The three Discord members with the most invited friends, will earn an amazing gift!     Hello everybody, we'd love to invite all of you to try our new server which is going to open its gates on 14th of April at 20:00 GMT +2. Our OBT will start on 31st and will last two weeks so players can try and learn everything about our world before the grand day.   For those who never heard about us, we're a Classic Remastered x6 server based on Classic [Antharas Patch] Our server is based in the client Crusader, our interface is totally unique and our game files can be found only in our world. We implemented multiple features, zones and skills from every chronicle of the game such as Interlude, High Five, Essence... Our server can be played in in English, Russian and Korean languages.   We designed a totally new chronicle and it's perfect for every kind of players (PvE, PvP, solo, group, clan...) We will be having tournaments and weekly sieges with amazing in-game and real money rewards.     Website: https://talkingisland.net/en/features Discord: https://discord.gg/NWcA2Xspqw   Learn more about some of our features and systems:   Introduced: Daily Epic Instances       Introduced: Kamaloka / Labrynth     Reworked: Dragon Valley (High Five Style)     Reworked: Lair of Antharas (High Five Style)     Reworked and Introduced: Seed of Anhilation     Reworked and Introduced: Hellbound   Own and Unique: DKP System     Reworked: Fishing System  
    • https://github.com/binance/binance-futures-connector-java   Use their API, And then you can convert it to be used on your Multisell.
    • WTB 414 interface source (4game), compiler, xdat editor.  
    • Edit ItemsAutoDestroy#addItem method, simply enforce whatever timer you want. L2J already handles your case, eg. herbs naturally dissapear after a while.
    • https://www.youtube.com/watch?v=VjJ2uLlRGOc LF something similar to this. ability to do transactions/verify/withdraw/add and history. Do NOT need new window, can be done in html as long as the function works   Serious people only, paying well
  • Topics

×
×
  • Create New...

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