StinkyMadness Posted December 15, 2014 Posted December 15, 2014 (edited) How can i edit (Control Bar) at new players ? i mean from that : to Change like that Edited December 15, 2014 by StinkyMadness
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 Found CharacterCreate.java and found this : newChar.setTitle(Config.ADD_CHAR_TITLE); else newChar.setTitle(""); if (Config.PVP_PK_TITLE) newChar.setTitle(Config.PVP_TITLE_PREFIX + "0" + Config.PK_TITLE_PREFIX + "0 "); // Shortcuts newChar.registerShortCut(new L2ShortCut(0, 0, 3, 2, -1, 1)); // Attack newChar.registerShortCut(new L2ShortCut(3, 0, 3, 5, -1, 1)); // Take newChar.registerShortCut(new L2ShortCut(10, 0, 3, 0, -1, 1)); // Sit final ItemTable itemTable = ItemTable.getInstance(); final L2Item[] items = template.getItems();
0 StinkyMadness Posted December 15, 2014 Author Posted December 15, 2014 (0, 0, 3, 2, -1, 1)) ???? how can i do deference for fighter and mage ?
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 (edited) (0, 0, 3, 2, -1, 1)) ???? how can i do deference for fighter and mage ? I have not try to Edit control bar.. Can you upload the image from bar to see what mean the numbers? Maybe Numbers show where is skills in bar... Edited December 15, 2014 by Monkey D. Luffy
0 Tessa Posted December 15, 2014 Posted December 15, 2014 newChar.registerShortCut(new L2ShortCut(int slotId, int pageId, int shortcutType, int shortcutId, int shortcutLevel, int unknown)); slotId - the position of the item in your shortcut bar. pageId - this means the shortcut page. shortcutType - 1 for item, 2 for skill, 3 for action, 4 for macro, 5 for recipe. shortcutId - the item id in your case. shortcutLevel - set it to -1. unknown - set it to 1.
0 StinkyMadness Posted December 15, 2014 Author Posted December 15, 2014 (edited) Starting items ( L2jFrozen ) 1000 SS 25 Potion10 Soe I want fighter start like that: and mage like that: Edited December 15, 2014 by StinkyMadness
0 Tessa Posted December 15, 2014 Posted December 15, 2014 (edited) Starting items ( L2jFrozen ) 1000 SS 25 Potion 10 Soe I want fighter start like that: and mage like that: Here is the fastest way I can offer you... go to Navicat, find the table character_shortcuts, remove all the data, go back to the server, reorder the shortcut bar as you like, then go back to Navicat and you will see how to set up your bar... then use the description from my previous post and do it. :P EDIT: You should add these items on character creation, and for the different items create a check for mage. Edited December 15, 2014 by Tessa
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 newChar.addSkill(SkillTable.getInstance().getInfo(startSkill.getId(), startSkill.getLevel()), true); if (startSkill.getId() == 1001 || startSkill.getId() == 1177) newChar.registerShortCut(new L2ShortCut(1, 0, 2, startSkill.getId(), 1, 1)); Look this if the player have in skills "1001" = Soul Cry or "1177" = Wind Strike the skill auto inside in bar in that position
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 Here is the fastest way I can offer you... go to Navicat, find the table character_shortcuts, remove all the data, go back to the server, reorder the shortcut bar as you like, then go back to Navicat and you will see how to set up your bar... then use the description from my previous post and do it. :P EDIT: You should add these items on character creation, and for the different items create a check for mage. True..
0 Tessa Posted December 15, 2014 Posted December 15, 2014 newChar.addSkill(SkillTable.getInstance().getInfo(startSkill.getId(), startSkill.getLevel()), true); if (startSkill.getId() == 1001 || startSkill.getId() == 1177) newChar.registerShortCut(new L2ShortCut(1, 0, 2, startSkill.getId(), 1, 1)); Look this if the player have in skills "1001" = Soul Cry or "1177" = Wind Strike the skill auto inside in bar in that position Lol, I don't understand why you have to do this?
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 Lol, I don't understand why you have to do this? Because maybe you like to change skill position on bar
0 Tessa Posted December 15, 2014 Posted December 15, 2014 Because maybe you like to change skill position on bar This check already exists few lines below.. if (startSkill.getId() == 1001 || startSkill.getId() == 1177) newChar.registerShortCut(new L2ShortCut(1, 0, 2, startSkill.getId(), 1, 1)); if (startSkill.getId() == 1216) newChar.registerShortCut(new L2ShortCut(10, 0, 2, startSkill.getId(), 1, 1)); If he wants, he should only change their positions.
0 Monkey D. Luffy Posted December 15, 2014 Posted December 15, 2014 This check already exists few lines below.. if (startSkill.getId() == 1001 || startSkill.getId() == 1177) newChar.registerShortCut(new L2ShortCut(1, 0, 2, startSkill.getId(), 1, 1)); if (startSkill.getId() == 1216) newChar.registerShortCut(new L2ShortCut(10, 0, 2, startSkill.getId(), 1, 1)); If he wants, he should only change their positions. I report because like to show on enter..Anyway..The problem is how to change the bar when log in hehe ^-
0 Monkey D. Luffy Posted December 16, 2014 Posted December 16, 2014 noobs if (newChar.isMage()) else... Ok pro..Thnks for help
Question
StinkyMadness
How can i edit (Control Bar) at new players ?
i mean from that :
to Change like that
15 answers to this question
Recommended Posts