Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. contact with pack owners :)
  2. what clan managre? have u got link of it?
  3. hardest part is client, since u need to add new item, set is as recipe and set all recipe info about server part, u will need to create new item and set it's part as recipe, also there should be xml with all recipes so u will need to add it there also
  4. private boolean hasDifferentGender(L2Player activeChar, L2Player target) { // activeChar is female and target is male if (isFemale(activeChar) && isMale(target)) return true; // activeChar is male and target is female if (isMale(activeChar) && isFemale(target)) return true; return false; } == private boolean hasDifferentGender(L2Player activeChar, L2Player target) { return isMale(activeChar) != isMale(target); } thx for share :)
  5. <set> can have only syntax like this: <set name="asd">dasdas</set> but u probably have got child inside: <set><error/></set>
  6. also there is possibility that you will find set times of future sieges in configs.
  7. hmm maybe u didnt import it. ArmorType enumeration seems fine, u are using it for example like this ArmorType.HEAVY
  8. its ArmorType, not L2ArmorType
  9. for example <td width="32" valign="top"><img src="icon.weapon_great_axe_i00" width="32" height="32" align="top" /></td>
  10. this button is handled by client, i dont know what should be changed in it's files exactly but it should be in max cheaters client section
  11. whats happening when u click question mark?
  12. This message will not always be truth: activeChar.sendMessage("One Item has dissapeared! Thank you!"); since you can change item count in configs. This would be easiest solution: activeChar.sendMessage(Config.FARM_ITEM_A-beep-T+" Item"+(Config.FARM_ITEM_A-beep-T > 1 ? "s" : "")+" has dissapeared! Thank You!");
  13. 2nd topic locked. Try to find folder with library in pack, if you dont have it, look for it on page where u have downloaded the source. You can also try to get lib folder from another pack.
  14. ofc u need to have access to server machine, you cannot do it from game coz such command probably doesnt exist in your pack.
  15. _siegeZone is null :)
  16. try in txt file in lameguard folder(if u are using lameguard)
  17. the solution depends on your pack, try to also set your account access to 100. You can also make those changes with server is offline.
  18. just log in game, use /loc to get locations of the points, later create zone from them :)
  19. u have got pack that after u are getting nobless, you arent getting it's blessing? :) anyway, make new npc, in its html make new button, in it's bypass u should have something like that: npc_%objectId%_NobleSkills Now in instance of the Npc(not sure what u will use, but probably NpcInstance) find onBypassFeedback - or something like that and add there if(command.equalsIgnoreCase("NobleSkills")) { //add all skills, in my pack i would write it like this: if(isClanLeader() && getClan().getCastle() > 0) super.addSkill(SkillTable.getInstance().getInfo(Skill.SKILL_WYVERN_AEGIS, 1)); super.addSkill(SkillTable.getInstance().getInfo(Skill.SKILL_NOBLESSE_BLESSING, 1)); super.addSkill(SkillTable.getInstance().getInfo(Skill.SKILL_FORTUNE_OF_NOBLESSE, 1)); super.addSkill(SkillTable.getInstance().getInfo(Skill.SKILL_HARMONY_OF_NOBLESSE, 1)); super.addSkill(SkillTable.getInstance().getInfo(Skill.SKILL_SYMPHONY_OF_NOBLESSE, 1)); }
  20. just remove all barriers in monster's AI that doesnt allow it to hit other monster.
  21. I can give u a guide: 1. Find normal buffer in java(there are few as far as i know) 2. Create button that will open main scheme edit page 3. In main scheme edit page i think u should have: Add new scheme button(text box + button), list of existing schemes with Edit, Delete and Set Main Scheme buttons 4. Create class of scheme - vars: String name, boolean main, List<L2Skill> buffs. 5. After some1 click on create scheme button, it should check if name is correct(and if there arent any schemes with same name) and then add this scheme to player's List of schemes. 6. edit scheme button should give u list of all buffs(that scheme doesnt have) with Add button near them. Also u should add Remove Buffs button. 7. Add button should just add L2Skill to buffs list. 8. Remove buffs button should show u list of all buffs that scheme already with Remove button near it 9. Remove butto nshould remove L2Skill from buffs list. 10. Delete scheme button should remove scheme from the list of player schemes 11. In main page of the buffer there should be button which will give u buffs from the Main Scheme after getting clicked. 12. On player log out, it should save schemes to database, i suggest such table: int char_id, String scheme_name, int main_scheme(1 or 0), int skill_id, int skill_level 13. On player log in, it should read all schemes of the player and add them on the list.
  22. u mean, that u wanna code for this config?
  23. i dont like low rates :P but pvp server can also last long, dont u think? :)
  24. seems like next 2 weeks server :/
×
×
  • 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