Jump to content

[Hot Share] Conquerable Location Engine for L2jFrozen!


Tortex

Recommended Posts

Hello all,

 

another great share for you java devs :D This engine is still in BETA mode. Need to add many implants for perfection.

credits: Matim, Taco, Tortex

vesion: 2.2(BETA)

Write your ideas and complains about it if you want updates from me :) njoy.

 

 

If you watched the video you could see that there's Warning Count and Defence Count in the Crystal Manager.

Warning Count - the number of warnings your clan will receive if the crystal will be attacked by another clan.

Defence Count - If you buy 20 Counts for example and other clan attacks your conquered crystal the cystal will spawn 5 monsters 1 time and then youll have 19 defence count left...

 

CREATE A NEW INSTANCE IN -->> com.l2jfrozen.gameserver.model.actor.instance called L2CrystalInstance and paste there this source code:

Source Code: http://pastebin.com/eWuphfLU

NPC and sql data must be installed in your db:

 

-- ----------------------------

-- Table structure for `crystal_list`

-- ----------------------------

DROP TABLE IF EXISTS `crystal_list`;

CREATE TABLE `crystal_list` (

  `locationName` varchar(256) DEFAULT NULL,

  `mapId` bigint(20) DEFAULT NULL,

  `defenceCount` bigint(20) DEFAULT NULL,

  `warningCount` bigint(20) DEFAULT NULL,

  `statsEnabled` varchar(5) DEFAULT NULL,

  `warningEnabled` varchar(5) DEFAULT NULL,

  `defenceEnabled` varchar(5) DEFAULT NULL,

  `clanId` bigint(20) DEFAULT NULL

) ENGINE=MyISAM DEFAULT CHARSET=latin1;

 

-- ----------------------------

-- Records of crystal_list

-- ----------------------------

INSERT INTO `crystal_list` VALUES ('BETA', '1', '0', '0', 'false', 'false', 'false', '268442077');

INSERT INTO `custom_npc` VALUES ('70016', '20639', 'Crystal', '1', 'Conquerable Location', '1', 'NPC.a_smith_MDwarf', '26', '52', '70', 'male', 'L2Crystal', '40', '3862', '1493', '11.85', '2.78', '40', '43', '30', '21', '20', '10', '0', '0', '1314', '470', '780', '382', '278', '0', '333', '0', '0', '0', '55', '132', '', '0', '1', '0', 'LAST_HIT');

 

Link to comment
Share on other sites

LOL really good!!

 

well this is like flag clans fight for this and that clan get this flag can get any extra buff or any othe price?>

 

Yes it is possible to have buffs or whatever you like. This engine is still in beta and in the future ill make it configurable because now im working on another nice mod for l2jfrozen and i need more experience in java. But dont worry ill try to keep this engine updated little by little... Thank you for your post :)

Link to comment
Share on other sites

give credits to matim...

+1

 

Nce job man, i will try to adapt this to l2jhellas :D, thanks for sharing.

http://pastebin.com/BNxKr9LF

here you go

Link to comment
Share on other sites

Good work man. But... have wrongs:

compile:
    [javac] Compiling 845 source files to C:\workspace\L2JFrozen\gameserver\build\classes
    [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.6
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:38: error: package com.l2jfrozen.absolute.Configs does not exist
    [javac] import com.l2jfrozen.absolute.Configs.Configs;
    [javac]                                      ^
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:115: error: cannot find symbol
    [javac]                                 ThreadPoolManager.getInstance().scheduleGeneral(new ScheduleRewardTask(_ownerClanId), Configs.Crystal_Reward_Rate);
    [javac]                                                                                                                       ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:494: error: cannot find symbol
    [javac]                 tb.append("You need <font color=\"LEVEL\">"+Configs.Crystal_Ability_Price+"</font> Clan Repotation Points to buy one.<br>");
    [javac]                                                             ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:582: error: cannot find symbol
    [javac]                         int minutes = ((Configs.Crystal_Reward_Rate / (1000*60)) % 60);
    [javac]                                         ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:710: error: cannot find symbol
    [javac]                 int price = count * Configs.Crystal_Ability_Price;
    [javac]                                     ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:755: error: cannot find symbol
    [javac]                                                 ThreadPoolManager.getInstance().scheduleGeneral(new ScheduleWarningTask(), Configs.Crystal_Warn_Rate);
    [javac]                                                                                                                            ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:878: error: cannot find symbol
    [javac]                                              int minutes = ((Configs.Crystal_Reward_Rate / (1000*60)) % 60);
    [javac]                                                              ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance.ScheduleRewardTask
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:883: error: cannot find symbol
    [javac]                             Announcements.getInstance().gameAnnounceToAll("Clan "+clanName+" got "+ Configs.Crystal_Owned_Item_Count+" event glittering medals for occupaying "+getLocationName()+" crystal");
    [javac]                                                                                                     ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance.ScheduleRewardTask
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:884: error: cannot find symbol
    [javac]                                         warehouse.addItem("Crystal", Configs.Crystal_Owned_Item_Id, Configs.Crystal_Owned_Item_Count , null, null);
    [javac]                                                                      ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance.ScheduleRewardTask
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:884: error: cannot find symbol
    [javac]                                         warehouse.addItem("Crystal", Configs.Crystal_Owned_Item_Id, Configs.Crystal_Owned_Item_Count , null, null);
    [javac]                                                                                                     ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance.ScheduleRewardTask
    [javac] C:\workspace\L2JFrozen\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CrystalInstance.java:885: error: cannot find symbol
    [javac]                                         ThreadPoolManager.getInstance().scheduleGeneral(new ScheduleRewardTask(clan.getClanId()), Configs.Crystal_Reward_Rate);
    [javac]                                                                                                                                   ^
    [javac]   symbol:   variable Configs
    [javac]   location: class L2CrystalInstance.ScheduleRewardTask
    [javac] 11 errors
    [javac] 1 warning

BUILD FAILED

Help to fix plis

Link to comment
Share on other sites

 

Awesome it fits good.

Btw i have 2 problems:

1st I don't understand how this Works "Crystal_Reward_Rate", i already tried with different values from 30 to 60030 (guessed it was 1'000,000 control)

2nd When i restart the game, all the bases are deleted, it could be nice to save them in the db so people doesn't bother getting new locations everytime the server gets rr.

 

Also, one suggestion, a command to tp to the conquer npc when it's under attack (or not) would be cool, i will try :D

Link to comment
Share on other sites

about the deletion part maybe the author of this topic has answers i had the very first share about 1y ago and was working like charm.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • I've been on the hunt for an affordable SMM panel that covers all the major platforms, and boy, did I strike gold with this one. Their services are top-notch, and what I appreciate the most is the genuine engagement they provide. Do you know how some panels offer bots or fake comments? Well, that's not the case here.
    • Good luck with your project. free games
    • It’s now not exceptional to giggle at someone else’s misfortune,” the jester chastised, clambering to his feet OSRS gold as a 2d determine stepped into the red mild. Uttering a small cry, the wizard swung the glowing tip of the body of workers in the course of the newcomer.   It changed into a goblin. He carried a damaged-tipped spear and sported unwell-becoming chain mail that became too massive for his small body. As he moved, the dented bronze helmet he wore slipped down over his eyes. The creature gave a strangled gurgle in his confusion, and righted the helmet.   “Do now not fear him,” the jester stated. “He lives by the roadside, and begs off strangers.” “I do no longer worry him,” the wizard spoke back, his composure regained. “From the appearance of him, he’s without a doubt now not a fighter. However he ought to be careful now not to make a nuisance of himself, for if he does, most likely he shall be slain.”   “He knows,” the jester answered, his expression severe. “however that is neither here nor there, my friend. Guests of your order are rare indeed in recent times.” He paused, and his expression lightened. “might you possibly be part of us for a past due supper? I’ve roasted a bird over a fireplace.”   He’s in reality a friendly fellow, the wizard mused. Then he glanced within the direction of the partitions, which the darkness had reduced to buy OSRS GP little greater than a black outline.
    • Particularly, it's been stated that the Rogue intended to mimic the gameplay of Diablo 2's murderer and Diablo 3's Demon Hunter, growing a perfect union of the two in one individual. Rogues can use crossbows, imbue arrows with unique homes, and lots extra that all scream Demon Hunter, making it the top generation of the class. At the same time as the Rogue may not be a Demon Hunter in name, it stands to purpose that most of the tendencies discovered in the latter will draw fans to buy cheap Diablo IV Gold the former. As such, even though little is thought and its launch is far away, Demon Hunter enthusiasts probably can't cross incorrect for the Rogue in terms of gameplay.   Diablo 4 lessons: New vs. Acquainted Diablo 4 Barbarian Sorceress Druid Rogue 5th elegance query Mark Of route, the high Dex-primarily based gameplay was only one motive lovers were drawn to the Demon Hunter. The alternative came from the sheer "rule of cool" aspect that the Demon Hunter inherently has; because the "wildcard" magnificence of Diablo 3, it drew eyes as a much less conventional Diablo or RPG class. Combined with the lore built around it, and it turned into a win-win scenario. SMMOexpificantly, snowfall should and should cross for the same marvel attraction in its final Diablo 4 class display.   Right now, each elegance in Diablo 4 has been taken from others: the mainstay Barbarian, the mystical Druids and Sorceresses, and the generation of the Rogue. But if it were to introduce a wildcard magnificence, although it's unlikely to be Dex-based, it could catch the "new" that drew many lovers to the Demon Hunter in the first place. A heavy tank-based elegance makes experience, so possibly in preference to going with a Holy Warrior like Paladin or Crusader, it would be interesting if cheap Diablo 4 Gold brought a Blackguard/Fallen Paladin (however, of course, this is just speculation).
    • So , that's the people I'm sharing my experiences with. However, don't go by yourself. It will make getting in five minutes WoTLK Gold quicker. You'll be working with people who have I recommend joining a guild. Like my best advice, join a huge Guild and create a name for yourself, make friends in the guild and play with the people.   Mental state and, ultimately, it'll end up being a lot more fun than being surrounded by sweaty, hardcore players dressed in the top raid gear, threatening to kick you out because you're only 10 DPS less than what your simulation told you to be doing. Now. I'm aware that this is an odd video. I feel like that's not happening at all.   Like that's not like as long as you're going into the raid, I believe that in the event that you go through the process, it's confident you're not like wasting time. This is true, dude. I never had this shit happen. I've never even had this should happen What do you mean? Oh, man, it's always the same. That's nuts. You're a streamer. I wasn't . I wasn't in the wrath of. I have never been kicked out in any of my groups in the past. Oh, my bro, when did I ever do anything wrong? didn't do that? I'm dead. In 2022, I'm not sure if the year is really that different. I'm beginning to feel that people are overplaying this. I believe they are massively and wildly playing this do not need to shout right man. You're right, these classic Andy's widely used. No, bro. For instance, if I'm in the area and I look at the raids, like I see people all around. They're pissing garbage.   They're just so terrible. Like most of the gamers, they have a terrible time playing it. It's as simple as looking buy WoTLK Classic Gold your character's name and then. It's easy GDK and p. Also, we are going to be doing GD K p knacks raids shortly after McConnell and I have lost everything we begin using for GD K P raids.  
  • 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