Jump to content

Recommended Posts

Posted (edited)

gia se olous. opos idate sto help ego epsaxna vote manager npc vrika ena ala den litourgouse!!!!!  http://www.maxcheaters.com/topic/184973-individual-vote-manager/

 

tespa ego pira tous kodikous ke to fiksara ke ipa na to postaro......

 

dino tous fakelous pou 8a einai poli efkola na valete sto eclipse

 

http://www.4shared.com/archive/MyDMNgHzce/vote_manager.html    edo einai fakeli

 

ke merika code gia simpliroma

 

ksekiname:

head-src\com\l2jfrozen\gameserver\model\actor\instance\L2PcInstance.java

 

psaxnoume

private static final String RESTORE_CHARACTER = 

ke sto telos tou code vriskoume (  aio,aio_end, )

 ke vazoume

lastVoteHopzone, lastVoteTopzone, hasVotedHop, hasVotedTop, monthVotes, totalVotes, tries

meta psaxnoume

private long _lastTeleportAction = 0;

ke akrivos apo kato vazoume 

	private boolean _isVoting = false;
	
	public final boolean isVoting()
	{
		return _isVoting;
	}
	
	public final void setIsVoting(boolean value)
	{
		_isVoting = value;
	}
 private boolean hasVotedTop,hasVotedHop;


public boolean hasVotedBoth()

   {
       return hasVotedHop && hasVotedTop;
   }
   public void setHop(boolean target)
   {
       hasVotedHop=target;
   }
   public void setTop(boolean target)
   {
       hasVotedTop=target;
   }

private void loadVotes()
   {
       int flag=0;
       try (Connection con = L2DatabaseFactory.getInstance().getConnection())
       {
           PreparedStatement statement = con.prepareStatement("SELECT hasVotedTop FROM characters WHERE obj_Id=?");
           statement.setInt(1, getObjectId());
           ResultSet rset = statement.executeQuery();
           while (rset.next())
           {
               flag = rset.getInt("hasVotedTop");
           }
           if (flag == 1)
           {
               setTop(true);
           }
           else
           {
               setTop(false);
           }
       }
       catch (Exception e)
       {
          
           if (Config.DEVELOPER)
           {
               e.printStackTrace();
           }
       }
       flag=0;
       try (Connection con = L2DatabaseFactory.getInstance().getConnection())
       {
           PreparedStatement statement = con.prepareStatement("SELECT hasVotedHop FROM characters WHERE obj_Id=?");
           statement.setInt(1, getObjectId());
           ResultSet rset = statement.executeQuery();
           while (rset.next())
           {
               flag = rset.getInt("hasVotedHop");
           }
           if (flag == 1)
           {
               setHop(true);
           }
           else
           {
               setHop(false);
           }
       }
       catch (Exception e)
       {
          
           if (Config.DEVELOPER)
           {
               e.printStackTrace();
           }
       }
   }

meta vriskoume

startWarnUserTakeBreak();

apo kato vazoume

loadVotes();

tora pame head-src\com\l2jfrozen\Config.java

ke psaxnoume

public static int HERO_CUSTOM_DAY;

vazoume akrivos apo kato

	public static String VOTE_LINK_HOPZONE;
	public static String VOTE_LINK_TOPZONE;
	public static int VOTE_REWARD_ID1;
	public static int VOTE_REWARD_ID2;
	public static int VOTE_REWARD_ID3;
	public static int VOTE_REWARD_ID4;
	public static int VOTE_REWARD_AMOUNT1;
	public static int VOTE_REWARD_AMOUNT2;
	public static int VOTE_REWARD_AMOUNT3;
	public static int VOTE_REWARD_AMOUNT4;
	public static int SECS_TO_VOTE;
	public static int EXTRA_REW_VOTE_AM;

vriskoume meta

HERO_CUSTOM_DAY = Integer.parseInt(L2JFrozenSettings.getProperty("HeroCustomDay", "0"));

ke vazoume

VOTE_LINK_HOPZONE = L2JFrozenSettings.getProperty("HopzoneUrl", "null");
VOTE_LINK_TOPZONE = L2JFrozenSettings.getProperty("TopzoneUrl", "null");
VOTE_REWARD_ID1 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardId1", "300"));
VOTE_REWARD_ID2 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardId2", "300"));
VOTE_REWARD_ID3 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardId3", "300"));
VOTE_REWARD_ID4 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardId4", "300"));
VOTE_REWARD_AMOUNT1 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardAmount1", "300"));
VOTE_REWARD_AMOUNT2 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardAmount2", "300"));
VOTE_REWARD_AMOUNT3 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardAmount3", "300"));
VOTE_REWARD_AMOUNT4 = Integer.parseInt(L2JFrozenSettings.getProperty("VoteRewardAmount4", "300"));
SECS_TO_VOTE = Integer.parseInt(L2JFrozenSettings.getProperty("SecondsToVote", "20"));
EXTRA_REW_VOTE_AM = Integer.parseInt(L2JFrozenSettings.getProperty("ExtraRewVoteAm", "20"));

pame sto   head-src\com\l2jfrozen\gameserver\GameServer.java

 

ke vriskoume

 // Load GameServer Configs
        Config.load();

apo kato vazoume

VoteManager.load();

tora pame sto gameserver\config\functions\l2jfrozen.properties

ke vazoume eki pou mas volevi

# ------------------------------
# Vote System Ingame  -
# ------------------------------
HopzoneUrl = 
TopzoneUrl = 

# The characters will have a choice between 3 rewards.Set id for them
VoteRewardId1 = 6392
VoteRewardId2 = 6393
VoteRewardId3 = 4357

# Set the amount of each reward.
VoteRewardAmount1 = 1
VoteRewardAmount2 = 1
VoteRewardAmount3 = 30

# Set the seconds that the character has
# until he votes in the site's banners
SecondsToVote = 45

# Amount of votes a character must collect
# in order to get the 4th vote reward
ExtraRewVoteAm = 20

# Info of the extra reward item
VoteRewardId4 = 6673
VoteRewardAmount4 = 1

pame sto navicat ke patame me aristero klik sto Characters epilegoume Design table

ke vazoume

lastVoteHopzone	bigint	20	0

lastVoteTopzone	bigint	20	0

hasVotedHop	int	10	0

hasVotedTop	int	10	0

monthVotes	int	10	0

totalVotes	int	10	0

tries	int	10	0


tora emine na ftiaksoume ena npc me (type)       L2VoteManager

afta

 

спасибо за внимание

Edited by L2KingWorld
  • Upvote 1
Posted

Λειτουργεί κανονικά? Όντως δεν υπήρχε κάτι στο maxcheaters που να λειτουργεί πλέον.

Αν μπορείς ανέβασε μία φώτο με το NPC να λειτουργεί..

Posted (edited)

merika foto

 

http://postimg.org/image/8oyoc7p11/

 

http://postimg.org/image/5ypcf0sc5/

 

http://postimg.org/image/z2dkb9gfp/

 

http://postimg.org/image/kbisdccc5/

 

to telefteo foto einai gia na dite oti ontos einai sto l2jfrozen

Edited by L2KingWorld
Posted

Είναι όμως για interlude όπως είδα, δεν μπορεί να γίνει addapted στο H5??

me liges vasikes gnwseis mia xara to kaneis adapt lol

Posted

merika foto

 

http://postimg.org/image/8oyoc7p11/

 

http://postimg.org/image/5ypcf0sc5/

 

http://postimg.org/image/z2dkb9gfp/

 

http://postimg.org/image/kbisdccc5/

 

to telefteo foto einai gia na dite oti ontos einai sto l2jfrozen

Επειδή είσαι ωραίος και το μοιράστηκες, +1 ρεπ. ;)

Ωραία δουλειά...

 

Είναι όμως για interlude όπως είδα, δεν μπορεί να γίνει addapted στο H5??

Επειδή είμαι για σαββατοκύριακο σε ένα χωριό, αν δεν βιάζεσαι, την δευτέρα θα προσπαθήσω να στο κάνω για high five.

Posted (edited)

Uparxei error :S

 

package Extensions.Vote.VoteManager.java

========================================

int tries = -1;
Connection con = null;
try
{
con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("SELECT tries FROM characters WHERE obj_Id=?");
statement.setInt(1, player.getObjectId());
for (ResultSet rset = statement.executeQuery(); rset.next() //edo
{
tries = rset.getInt("tries"); //edo
}
}

//Edit

To idio error se 5 simia

Edited by iSparky
Posted (edited)

Uparxei error :S

 

 

package Extensions.Vote.VoteManager.java

========================================

int tries = -1;
Connection con = null;
try
{
con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement statement = con.prepareStatement("SELECT tries FROM characters WHERE obj_Id=?");
statement.setInt(1, player.getObjectId());
for (ResultSet rset = statement.executeQuery(); rset.next() //edo
{
tries = rset.getInt("tries"); //edo
}
}

//Edit

To idio error se 5 simia

katevase afto ke peraseto pes mas meta ti ginete http://www.4shared.com/archive/MyDMNgHzce/vote_manager.html

Edited by L2KingWorld
Posted
URLConnection con = new URL(Hopzonelink).openConnection();
con.addRequestProperty("User-Agent", "Mozilla/4.76");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);

vres ta errors egw ena komati tha s dikso :P 

magkes den to sinisto hopzone dont work

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

    • never met a programmer that doesnt know english xD and as he said his knowledge and skills are beyond our imagination xD
    • nice work, welcome back to world of lineage development @melron 😄
    • He's likely baiting you to download his source full of backdoors indeed
    • Yeah inside router i had to enable udnp services 
    • Hello cheaters, As a team of avid developers and enthusiasts of Lineage 2, we are excited to present the L2 Control Hub, a groundbreaking plugin designed by myself and my collaborator, StinkyMadness. This innovative tool equips server administrators with powerful automation capabilities directly within the game's community board. L2 Control Hub simplifies the creation and management of automations, enabling you to customize your server operations without the need to modify the source code.   Key Features of L2 Control Hub: Robust Automation Triggers: Select from a plethora of triggers currently available, with continuous additions in the works to enhance your control options. Dynamic Conditions and Actions: Tailor your server operations with an extensive range of conditions and actions, ensuring flexible and precise control over game events and player interactions. Customizable Variables: Easily integrate server-specific variables from your database to further personalize and streamline your automations. Utilize these variables across various automation scenarios to cater to your specific server requirements. JavaScript Integration: Execute custom JavaScript codes that interact seamlessly with Java classes, bringing advanced functionalities to your server's ecosystem.   Explore L2 Control Hub in Action: We've prepared a series of video tutorials to demonstrate the capabilities of L2 Control Hub: Control Hub - Create a Simple Flow with 1 Condition and 1 Action: Get started with basic automations. Control Hub - Multiple Conditions with Multiple Actions: Explore more complex automations for detailed server management. Control Hub - Using Variables: Discover how to implement and use custom variables for tailored automations. Control Hub - Using JavaScript: Experience the power of custom scripts in enhancing your server functionality.   L2 Control Hub is currently about 70% complete, and we are actively developing and refining features. We invite you to join our ➡️ Discord community ⬅️ to engage with the development process, provide feedback, and be the first to test new features. Additionally, any updates or changes to the plugin are seamlessly delivered to all customers directly from our web server, ensuring your system is always up-to-date without the need for manual downloads.   Your game, your rules, automated. Join us in redefining server management in Lineage 2 and elevate your gaming community with unmatched automation capabilities. For more details, contact us directly to get started with L2 Control Hub.   Currently, the plugin is developed using aCis sources. We will continue with these sources until we finalize all the necessary details before proceeding to integrate with the more prominent sources available.       The L2 Control Hub is designed to extend beyond mere functional additions to your server. We are in the process of implementing a suite of advanced mechanisms, such as a vote manager capable of interfacing with any Lineage 2 voting site without requiring configuration, live statistics to provide admins with real-time insights, and an event engine that can generate any desired event within seconds. All these features will be seamlessly integrated into the module, enhancing your server management experience significantly.     Please note that L2 Control Hub will be a premium tool, reflecting the extensive features and benefits it offers. While we are finalizing the pricing structure, rest assured that we aim to deliver great value for your investment. We will announce the cost details soon on our platforms to ensure everyone is well-informed and can plan accordingly. Join us to take your server management to the next level with L2 Control Hub.     
  • Topics

×
×
  • Create New...