Jump to content

hvp17

Members
  • Posts

    25
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About hvp17

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

hvp17's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. Hello, i want to buy tyrr dreadnaught on core. skype tomukaszzz1 Thank you.
  2. Trusted and helpful seller. Approached him with unusual offer but he was kind enough to make a deal. Vouch !
  3. Hello, I have 130 EUR in skins worth and I am looking to buy adena, items or char on core. Only trusted sellers. Thank you!
  4. I saved all the meshes into animation file but when I try to login I get : "SkeletalMesh stargame_su_by_volond1_wings3.MDarkElf_stargame_su_by_volond1_wings3: Serial size mismatch: Got 482142, Expected 482146"
  5. I assume you want original animations file? If so, here u go http://www.mediafire.com/download/qc9d93cyj385tw6/stargame_su_by_volond1_wings3.ukx
  6. I can't get 3Dsmax working, now im trying to use unreal engine 2 runtime. When I decrypt ukx file and try to open it on UE2 it gives me runtime error. Any ideas why? Your browser doesn't seem to support Javascript!
  7. Hello, Can someone tell me which files should I edit to change the position of wings placed on a character? Now its way off.. Version: Interlude
  8. Boorinio, What .java files have you edited from V3 to V4? Thank you.
  9. Anyone Can help me to fix this issue? Error: workspace\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\entity\event\ZodiacMain.java:93: error: cannot find symbol [javac] TextBuilder tb = new TextBuilder(""); [javac] ^ [javac] symbol: class TextBuilder [javac] location: class ZodiacMain All ZodiacMain.java Code: package com.l2jfrozen.gameserver.model.entity.event; import java.io.File; import java.util.ArrayList; import java.util.List; import com.l2jfrozen.Config; import com.l2jfrozen.gameserver.model.entity.Announcements; import com.l2jfrozen.gameserver.thread.ThreadPoolManager; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage; /** * @author Boorinio */ public class ZodiacMain { public static List<String> Ips = new ArrayList<String>(); public static boolean ZodiacRegisterActive; public static int i, max; public static int[] count = { 0, 0, 0, 0 }; public static boolean voting; public static void ZodiacIn() { ThreadPoolManager.getInstance().scheduleGeneral(new Runnable() { @Override public void run() { startVoting(); } }, 60 * 1000 * Config.INITIAL_START); } public static void startVoting() { voting = true; for (L2PcInstance players : L2World.getInstance().getAllPlayers()) { showHtmlWindow(players); } Announcements.getInstance().announceToAll("You have 2 minutes to vote for the event you like!"); waitSecs(60); Announcements.getInstance().announceToAll("You have 1 minute to vote for the event you like!"); waitSecs(60); voting = false; endit(); } public static void showHtmlWindow(L2PcInstance activeChar) { NpcHtmlMessage nhm = new NpcHtmlMessage(5); TextBuilder tb = new TextBuilder(""); tb.append("<html><head><title>Zodiac Event Voting</title></head><body>"); tb.append("<center>"); tb.append("<td valign=\"top\"><font color=\"FF6600\">Vote for the event you want to play!</font>"); tb.append("<br>"); tb.append("<img src=\"SSQ_dungeon_T.SSQ_fire1_e013\" width=256 height=64>"); tb.append("<br1>"); tb.append("<img src=\"L2UI.SquareWhite\" width=194 height=1>"); tb.append("<table bgcolor=333333 width=204>"); tb.append("<tr>"); tb.append("<td><center><button value=\"CaptureThem\" action=\"bypass -h CaptureThem\" width=75 height=21 back=\"L2UI_ch3.Btn1_normalOn\" fore=\"L2UI_ch3.Btn1_normal\"></center></td>"); tb.append("</tr>"); tb.append(" <tr>"); tb.append("<td><center><button value=\"Peloponnesian\" action=\"bypass -h PeloponnesianWar\" width=75 height=21 back=\"L2UI_ch3.Btn1_normalOn\" fore=\"L2UI_ch3.Btn1_normal\"></center></td>"); tb.append("</tr>"); tb.append("<tr>"); tb.append("<td><center><button value=\"CastleWars\" action=\"bypass -h CastleWars\" width=75 height=21 back=\"L2UI_ch3.Btn1_normalOn\" fore=\"L2UI_ch3.Btn1_normal\"></center></td>"); tb.append("</tr>"); tb.append("<tr>"); tb.append("<td><center><button value=\"ProtectTheLdr\" action=\"bypass -h ProtectTheLdr\" width=75 height=21 back=\"L2UI_ch3.Btn1_normalOn\" fore=\"L2UI_ch3.Btn1_normal\"></center></td>"); tb.append("</tr>"); tb.append("</table>"); tb.append("<font color=\"FF6600\">By Boorinio!</font>"); tb.append("</center>"); tb.append("</body></html>"); nhm.setHtml(tb.toString()); activeChar.sendPacket(nhm); } public static void showFinalWindow(L2PcInstance player) { NpcHtmlMessage nhm = new NpcHtmlMessage(5); TextBuilder tb = new TextBuilder(""); tb.append("<html><title>Zodiac Event Engine</title><body>Current Votes:<br>"); tb.append("Current Votes:<br><br>"); tb.append("Peloponnesian War: "+count[0]+"<br>"); tb.append("Capture Them: "+count[1]+"<br>"); tb.append("Castle Wars: "+count[2]+"<br>"); tb.append("Protect The Leader: "+count[3]+"<br><br>"); tb.append("</body></html>"); nhm.setHtml(tb.toString()); player.sendPacket(nhm); } public static void endit() { max = 0; for (i = 0; i < 4; i++) { if (count[i] > max) max = i; } if (max == 0) { Announcements.getInstance().announceToAll("Peloponnesian Event has the most votes!"); Announcements.getInstance().announceToAll("In 10 seconds the registration will open!"); waitSecs(10); PeloponnesianWar.startevent(); } else if (max == 1) { Announcements.getInstance().announceToAll("CaptureThem Event has the most votes!"); Announcements.getInstance().announceToAll("In 10 seconds the registration will open!"); waitSecs(10); CaptureThem.openRegistration(); } else if (max == 2) { Announcements.getInstance().announceToAll("CastleWars Event has the most votes!"); Announcements.getInstance().announceToAll("In 10 seconds the registration will open!"); waitSecs(10); CastleWars.openRegi(); } else if (max == 3) { Announcements.getInstance().announceToAll("ProtectTheLeader Event has the most votes!"); Announcements.getInstance().announceToAll("In 10 seconds the registration will open!"); waitSecs(10); ProtectTheLdr.startevent(); } else { Announcements.getInstance().announceToAll("No votes event canceled!"); } max = 0; for (i = 0; i < 4; i++) { count[i] = 0; } waitSecs(Config.BETWEEN_EVENTS * 60); startVoting(); } public static boolean isEligible(L2PcInstance player, String ip) { if (player.isinZodiac) { player.sendMessage("You are Already in Zodiac"); return false; } if (!ZodiacRegisterActive) { player.sendMessage("Zodiac's Registrations are offline!"); return false; } if (player.getLevel() < 76) { player.sendMessage("You are lower than 76 lvl"); return false; } if (player.isInJail()) { player.sendMessage("You are in jail...daah"); return false; } if (player.isInOlympiadMode()) { player.sendMessage("You are in olympiad mode"); return false; } if (hasbots(ip) && Config.SAME_IP_ZODIAC) { player.sendMessage("You have already joinned with that ip"); return false; } return true; } public static void waitSecs(int i) { try { Thread.sleep(i * 1000); } catch (InterruptedException ie) { ie.printStackTrace(); } } public static boolean hasbots(String ip) { if (Ips.contains(ip)) { return true; } else return false; } }
  10. Any other events will be added to this engine? P.S. In V4 should be a config to set up how much time to give to register for event. ;)
  11. Boorinio, What .java files have you edited from V2 to V3? Thank you.
  12. Almost addapted to frozen. Anyone can help me to fix these errors? [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1681: error: cannot find symbol [javac] ZODIAC_ENABLE = Boolean.parseBoolean(EventSettings.getProperty("Zodiace", "true")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1682: error: cannot find symbol [javac] ZODIAC_REWARD = Integer.parseInt(EventSettings.getProperty("ZodiadReward", "3470")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1683: error: cannot find symbol [javac] ZODIAC_REWARD_COUN = Integer.parseInt(EventSettings.getProperty("ZodiadRewardc", "1")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1684: error: cannot find symbol [javac] SAME_IP_ZODIAC= Boolean.parseBoolean(EventSettings.getProperty("SameIpProtection", "true")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1685: error: cannot find symbol [javac] INITIAL_START= Integer.parseInt(EventSettings.getProperty("MinutesInitial", "10")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] D:\Programos_Servui\workspace\trunk\gameserver\head-src\com\l2jfrozen\Config.java:1686: error: cannot find symbol [javac] BETWEEN_EVENTS =Integer.parseInt(EventSettings.getProperty("MinutesAfterEvent", "60")); [javac] ^ [javac] symbol: variable EventSettings [javac] location: class Config [javac] 6 errors [javac] 1 warning Thank You!
×
×
  • Create New...