Jump to content

adenaman

Members
  • Posts

    369
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by adenaman

  1. i dont rly love python, so im not sure that this will work, but try: elif count >= 1 : htmltext = "30868-"+str(raid)+"b.htm" st.takeItems(item,count) clan.setReputationScore(clan.getReputationScore()+(CLAN_POINTS_REWARD*count),True) player.sendPacket(SystemMessage(1777).addNumber((CLAN_POINTS_REWARD*count))) clan.broadcastToOnlineMembers(PledgeShowInfoUpdate(clan))
  2. npc that register ppl for ctf event
  3. http://www.maxcheaters.com/forum/index.php?topic=21768.0 http://www.maxcheaters.com/forum/index.php?topic=33477.0 http://www.maxcheaters.com/forum/index.php?topic=39966.0 http://www.maxcheaters.com/forum/index.php?topic=65286.0 http://www.maxcheaters.com/forum/index.php?topic=50065.0
  4. thats true wasnt there some way to copy the table to a file, so you could edit the file and use it in another sql command?
  5. if some1 have the basics he will not try to do private staticl int boolean anyway, im in love with this one: long: A very large integer. thx for your time and at least say in your main post what reserved words are
  6. the rb have the same title "Raid Boss"
  7. just copy it in the workspace, where it should be, i mean with windows explorer
  8. just to be sure: you downloaded the mmocore sources compiled them inserted the mmocore.jar in the lib/ path and tried to compile the gameserver?
  9. .isHeroItem() L2Multisell.getInstance().separateAndSend(Integer.parseInt(command.substring(9).trim()), player,32076, false, getCastle().getTaxRate()); L2ItemInstance[] unequiped = player.getInventory().unEquipItemInSlotAndRecord(_item.getLocationSlot());
  10. they dont have the mmocore in the svn... try with this mmocore http://my-svn.assembla.com/svn/l2open-free/branches/CT%202.3/L2J-MMOCore/
  11. did you have imported L2ItemInstance.java and L2Multisell.java ?
  12. try this else if (Config.COLOR_COMMUNITY_BOARD) { if (player.getClan() != null && player.isClanLeader()&& player.getClan().getLevel() >= Config.CLAN_LEVEL) { StringUtil.append(htmlCode, "<font color=\"00FF00\">", player.getName(), "</font>"); } else { StringUtil.append(htmlCode, "<font color=\"F0F8FF\">", player.getName(), "</font>"); } } edit: change the color if you dont like it
  13. you must reinstall your OS 152 times or use search
  14. add the missing library ...
  15. just do bypass -h menu_buff superhasteid 4
  16. what error shows you when you changed the imports? Edit: phyton is not my favorite language, and i dont control it very well, but isnt it strange this: blue: the else if will never be executed red: never used and its adding all the clan lvls?
  17. this? http://www.l2jdp.com/svn/trunk/datapack_development/sql/enchant_skill_groups.sql
  18. last idea, b4 it close: Remake the faction system using the dawn vs dusk, so, the ppl will use s7, and it will have more meaning in siegues and in normal play
  19. you're welcome :)
  20. couldnt finde any topic oldest?
  21. maybe it could be this sysstring-e.dat 1277 a,PC Bang Points\0 but i dont rly know what will change that anyway, if its not, ask client mods better
  22. private void sendInfo(L2PcInstance activeChar) { TextBuilder tb = new TextBuilder(); tb.append("<html><title>Grand Boss Info By Dleogr</title><body><br><center>"); tb.append("<img src=\"L2UI_CH3.herotower_deco\" width=256 height=32><br><br>"); for (string s : RaidBossSpawnMananger.getAllRaidBossStatus() ){ tb.append( s + "<br>"); } tb.append("<br><img src=\"L2UI_CH3.herotower_deco\" width=256 height=32><br>"); tb.append("</center></body></html>"); NpcHtmlMessage msg = new NpcHtmlMessage(NPC_ID); msg.setHtml(tb.toString()); activeChar.sendPacket(msg); } include the instancemanager.RaidBossSpawnMananger and try this this should show you their status (alive, dead, undefined) try this
  23. change + private static final String ACUMULATE_SKILLS_FOR_CHAR_SUB = "SELECT skill_id,skill_level FROM character_skills WHERE charId=? ORDER BY skill_id , skill_level ASC"; to + private static final String ACUMULATE_SKILLS_FOR_CHAR_SUB = "SELECT skill_id,skill_level,class_index FROM character_skills WHERE charId=? ORDER BY class_index ,skill_id , skill_level ASC"; and while (rset.next()) { int id = rset.getInt("skill_id"); int level = rset.getInt("skill_level"); if (id > 9000 && id < 9007) continue; // fake skills for base stats // Create a L2Skill object for each record L2Skill skill = SkillTable.getInstance().getInfo(id, level); // Add the L2Skill object to the L2Character _skills and its Func objects to the calculator set of the L2Character super.addSkill(skill); } to while (rset.next()) { int id = rset.getInt("skill_id"); int level = rset.getInt("skill_level"); int classindex = rset.getInt("class_index"); if (id > 9000 && id < 9007) continue; // fake skills for base stats // Create a L2Skill object for each record L2Skill skill = SkillTable.getInstance().getInfo(id, level); //check if it is passive and now of our class if (skill.isPassive() && classindex != getClassIndex() ) continue; // Add the L2Skill object to the L2Character _skills and its Func objects to the calculator set of the L2Character super.addSkill(skill); } im not completely sure of this (ACUMULATE_SKILLS_FOR_CHAR_SUB most of all) but maybe it will work :)
  24. systemmsg-e.dat 1705 1 a,PC Bang Points acquisition period. Points acquisition period left $s1 hour.\0 0 79 9B B0 FF a, a, 0 0 0 0 0 a, a,none\0
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..