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

    • Hundreds of players have already jumped into the world of L2Elixir x3, and the server grows bigger every day! A truly international community is forming — EU, NA, LATAM, Asia — all gathering for the same purpose: To relive the L2Elixir era the right way. Join now and be part of the early wave!   Website: https://l2elixir.org/ Discord: https://discord.gg/5ydPHvhbxs   🎄 Christmas Event Activated! 🎄 Craft your Ordinary or Special Christmas Tree, place it outside of a peace zone, and enjoy festive outfits, boosted EXP/SP, Adena, and Drop Rates, plus the Holiday Festival buff  (more HP/MP/CP, higher P.Def/P.Atk/M.Atk, faster movement, reduced MP cost!) every 12-hours! 🎁 Santa’s Hourly Gifts While you’re actively farming, Santa appears worldwide to drop special rewards such as: Special Christmas Tree Christmas Red Sock Santa’s Weapon Exchange Ticket (12h) Gift from Santa Santa Hats & Rudolph accessories Agathion: Rudolph Chest of Experience Shadow Hats Scrolls Event b.soe / b.rez Loot Crates 🔥 Santa’s Weapon Ticket Gives you a D/C/B-grade weapon based on your level, randomly enchanted +4 to +10!  4-hour expiration time. Celebrate, fight, farm — and let Santa upgrade your holidays! 🎅✨
    • what do u mean i want to change the normal weapons some weapons are working perftect some not getting th effect and the arcana has the effect above the weapons as u see ... i dont what is the probkenm
    • Stop paying for files that are already public and free. Here you can download a fully working Interlude server with C4-like gameplay, including source code so you can compile it yourself and verify everything. People will try to convince you that free releases are “broken”, “full of backdoors”, etc. That’s exactly why I’m also providing the SVN with the full source – so you can: Review the code yourself Remove / modify whatever you don’t like Compile your own binaries What’s included GX-EXT Interlude server (C4-style gameplay) – L2Off Client Interlude tweaked for C4 gameplay Public SVN with source code Downloads: Server GX-EXT: https://www.mediafire.com/file/q5ipkjd36tnhfxv/L2OFF_C4_C4_ACU_GXEXT.rar/file Client Interlude C4 Gameplay: https://www.mediafire.com/file/rdkfc8wwau042oh/Cliente_Interlude_Jugabilidad_C4.rar/file SVN (source code, delayed a couple of months to avoid reselling fresh work): https://svn.l2servers.com.ar/!/#GX-EXT_INTERLUDE User: gx Pass: gx How to compile To compile the source you will need: Visual Studio 2005 (x64 toolset) (Classic L2Off toolchain – yes, it’s old, but that’s what the original server uses.) Use this as you want: learn, test, open your own server, or just audit the code. But please, stop buying the same leaked/resold files over and over when you can get them here for free, with source, and actually know what you’re running.  
    • @GX-Ext Please reupload the pack+web+client because all the links inside that post or in the https://l2servers.com.ar/ are dead
    • Weapon dat is not the same for all, since you have custom things for sure no. You can contact @NevesOma
  • 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