Jump to content

Vote Manager Npc


Recommended Posts

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

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

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

Link to comment
Share on other sites

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

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

me liges vasikes gnwseis mia xara to kaneis adapt lol

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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

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

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

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • ¿Dónde puedo probar?  Where can I try?
    • be very careful... he likes to ask for money in advance in crypto... he doesn't seem like an honest person to me
    • chrome and ISP doesn't let me due to ssl errors in your website
    • Attention, attention, the heroes of Elmoraden are wanted! Get ready for new adventures, because our gates are open for you! We switch to the Interlude chronicles on Lionna x5 server, where exciting battles, exciting quests and incredible adventures await you! But that's not all! For beginners, we have a special offer – shadow equipment that will help you develop faster and more efficiently in the world of Elmoraden. With these powerful items, you can easily reach new heights! Join us on May 17th and become a part of the great saga! An unforgettable adventure awaits you on the Lionna X5 server with the Interlude chronicles. Don't miss your chance to become a real hero!     More info: - Characters created from 17.05 09:00 server time, when created will receive gifts in the form of chests with coupons for temporary weapons \ armor No Grade - A grade; - Characters created from 15.05 00:00 server time to 17.05 09:00 will receive gifts in the form of chests with coupons for temporary weapons \ armor No Grade - A grade; - Gifts are divided by grades (No Grade - A Grade) and gifts can be opened at levels corresponding to the grade of the gift. (A gift of D Grade can be opened at the 20th level, B Grade at 52, etc.), but the character's level when opening the gift should not exceed the 75th; - The duration of the equipment \ weapon is 10 hours; - Chaotic characters (characters whose PK counter is higher than 0) cannot use shadow equipment; - On 17.05 at 09:00 server time (10:00 Moscow time), you can meet Looney the Cat in the cities, who will exchange coupons for temporary weapons and equipment; Coupon amount in the gift chests: No Grade: 1 D Grade: 2 C Grade: 2 B Grade: 1 A Grade: 1   On 17.06 at 00:00 server time, the cats will disappear, and with them the chests and coupons. Items received for coupons are not deleted.
  • Topics

×
×
  • Create New...