Jump to content
  • 0

Λιγο Βοηθεια Μαγκες


mikemaster

Question

Γεια σας παιδια θα ηθελα λιγη βοηθεια.. Προσθεσα στον σερβερ μου κατι και μου δινει αυτα τα ερρορς πως μπορω να το φτιαξω ωστε να δουλευει για l2jacis.....

Ευχαριστω εκ των προτερων

 

image.png

Edited by mikemaster
Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

prosthesa kt, den mas les ti, den mas dineis kapio patch kai thes voithia...pane se ena giatro kai pestou oti ponas alla mi t les pou, na doume an tha katafereis kt...

Link to comment
Share on other sites

  • 0

νταξει αδερφε με εσβησες με την απαντηση σου σορρυ λαθος μου σου δινω τωρα τον κωδικα... :/

/*
 * This program is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation, either version 3 of the License, or (at your option) any later
 * version.
 * 
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU General Public License along with
 * this program. If not, see <http://www.gnu.org/licenses/>.
 */
package custom.BossRespawn;


import javolution.text.TextBuilder;

import net.sf.l2j.gameserver.datatables.NpcTable;
import net.sf.l2j.gameserver.instancemanager.GrandBossManager;
import net.sf.l2j.gameserver.model.actor.L2Npc;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.model.quest.Quest;
import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;

public class BossRespawn extends Quest
{
	private static final int NPC_ID = 7000;
	private static final int[] BOSSES = {25512, 29001, 29006, 29014, 29019, 29020, 29028, 29065};

	public BossRespawn(int questid, String name, String descr)
	{
		super(questid, name, descr);
		addFirstTalkId(NPC_ID);
	}
	
	@Override
	public String onFirstTalk(L2Npc npc, L2PcInstance pc)
	{
		if(npc == null || pc == null)
			return null;

		if(npc.getNpcId() == NPC_ID)
		{
			sendInfo(pc);
		}
			return null;
	}

	private static void sendInfo(L2PcInstance activeChar)
	{
		TextBuilder tb = new TextBuilder();
		tb.append("<html><title>L2Versuvio.com</title><body><img src=\"Sek.cbui371\" width=280 height=1><img src=\"town_map.town_map_darkelf_t00\" width=280 height=35/><img src=\"Sek.cbui371\" width=280 height=1><table width=290></table><table width=288 bgcolor=\"000000\"><tr><td align=\"center\"><table width=280><tr><td align=\"center\"><font color=\"LEVEL\">[ Epic Raidbosses Live Status ]</font></td><tr></table></td></tr><tr></tr></table><img src=\"Sek.cbui371\" width=280 height=1><br><br><br><br><br><br><br><br><table width=255>");

		for(int boss : BOSSES)
		{
			String name = NpcTable.getInstance().getTemplate(boss).getName();
			long delay = GrandBossManager.getStatsSet(boss).getLong("respawn_time");
			if (delay <= System.currentTimeMillis())
			{      
				tb.append("<tr><td align=\"center\"><font color=\"00C3FF\">" + name + "</color>: " + "<font color=\"9CC300\">Is Alive</color></td></tr>");
			}
			else
			{      
				int hours = (int) ((delay - System.currentTimeMillis()) / 1000 / 60 / 60);
				int mins = (int) (((delay - (hours * 60 * 60 * 1000)) - System.currentTimeMillis()) / 1000 / 60);
				tb.append("<tr><td align=\"center\"><font color=\"00C3FF\">" + name + "</color>" + "<font color=\"FFFFFF\">" +" " + "respawns in </color>" + " " + " <font color=\"32C332\">" + " " + hours + " hours : " + mins + " minutes"+"</color></td></tr>");
			}
		}

		tb.append("</table><br><br><br><br><br><br><br><br><br><br><img src=\"Sek.cbui371\" width=280 height=1><table width=286 height=26 bgcolor=000000><tr><td align=\"center\"><font color=\"363636\">L2Versuvio.com x500 PvP Server</font></td></tr></table><img src=\"Sek.cbui371\" width=280 height=1></body></html>");
		
		NpcHtmlMessage msg = new NpcHtmlMessage(NPC_ID);
		msg.setHtml(tb.toString());
		activeChar.sendPacket(msg);
	}

	public static void main(String[] args)
	{
		new BossRespawn(-1, "BossRespawn", "custom");
	}
}

Τα ερρορς που μου εμφανιζει τα βλεπεις και στην παραπανω εικονα..

Link to comment
Share on other sites

  • 0

αδερφεε συγνωμη για την ενοχληση παλι εε.. αλλα μου βγαζει ερρορ σε αυτο: import javolution.string.StringBuilder;
πως πρεπει να το αλλαξω;;

Link to comment
Share on other sites

  • 0

Όπου έχει JavaBuilder άλλαξε το σε StringBuilder και μετά πάτα CTRL+SHIFT+O.

 

αυτο το εκανα δες το προηγουμενο μου reply και αν μπορεις να μ πεις τι να κανω <3

Link to comment
Share on other sites

  • 0

τωρα να γελασω δεν θα μπορω γιατι αν δεν το ειχε γραψει το παιδι πιο πανω μπορει να εψαχνα ακομα για javabuilder χαχαχαχαχα

Link to comment
Share on other sites

  • 0

delete auto:

import javolution.text.TextBuilder;

 

kane euresi antikatastasi TextBuilder se StringBuilder

 

 

kane import to StringBuilder

 

eisai gg

Edited by Nightw0lf
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.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   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.



×
×
  • 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