Jump to content

StarChild

Members
  • Posts

    134
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by StarChild

  1. So maybe you gonna tell us on what server do you play? Or share that server patch... Thank you.
  2. Don't really understood what do you mean... Please give more info.
  3. And also, when you open a file in FileEdit, at the bottom (Where log is) you can see in which rev file is atm. So like if you open Armorgrp, it's 413, but some files like Env.int are in different rev, for example Env.int is in 111 rev. So by the logics, you must save files in same rev like those were when you have opened em. I wish I helped you ^^
  4. Save those files in 413... Try it and tell me
  5. Hmm, You have Gracia PT2 Client? If so, tell me in which rev you save files, 414? Tell me asap
  6. Well, there can be 2 options: 1st: You have dynamic IP, then you need to try out www.no-ip.org service. 2nd: You need to open ports which are being used by your server. Good Luck
  7. Well, compiling if for ppl who's keeping their server updated all the time (Less bugs, more fixes). Also compiling is for server owners who editing Java sources to add functionality (Linea new commands, edited enchanting, etc (Those are just simple examples!)). Hope this info helped you ^^
  8. I respect your talent, but I don't think that any server will be popular if it uses ripped/cloned template as some allready famous server... This is my opinion!
  9. Ohh, sorry, forgot about it... Password is: www.la2base.ru
  10. You can also use DEX, WIT, STR, etc values and also if you need to change PDef/MDef, you must edit Armorgrp file too. Without editing it you'll have stats in game, but you won't be able to see em on item!
  11. Yes, you are able to do that with FileEdit, but also you can download Notepad++ and easy open Dycripted files (You can't oped encrypted!) Good Luck
  12. Yes, buttons are the same. Let me upload it... I'll edit this post with the link in 3-5 minutes. EDIT: Here you go: http://rapidshare.com/files/201641968/File_Edit_CT2_Rus.rar I hope you'll find a way to use it in Russian... Good Luck
  13. This is English section... I don't think that Mods gonna like that you used another language.
  14. You can do it via multisell... Search for MultiSell on this forum, read some guide and you'll be able to sell things for FA Good Luck
  15. Still in need of help with creating custom +100 Enchant Scroll! Here's description: Name for ex: Epic Weapon Enchant Scroll Sold in custom shop... When you use it, it makes your weapon +100 instantly with one use and with 100% chance. Same needed with Epic Armor Enchant Scroll... I hope someone will help me ^^
  16. Well, I don't see any word about Armor sharing here! Here are weapons, so next time look on topic name before posting...
  17. Well, those files are just client files... On server you can Put Light armor set! :)
  18. Thank you :P Keep up
  19. I have FileEdit CT2 P2, but it's in Russian... If you still need it, answer in this topic.
  20. Madboy, maybe you can share those cloaks forst? So people can try and tell you how to make those normal!? It's kinda hard to fix without having files to test...
  21. What do you mean? Armor? Well, there is Light set for Kamael lol :)
  22. Still can't compile... Here's my code: package com.l2jfree.gameserver.handler.voicedcommandhandlers; import com.l2jfree.gameserver.handler.IVoicedCommandHandler; import com.l2jfree.gameserver.model.actor.instance.L2PcInstance; import com.l2jfree.gameserver.network.serverpackets.SocialAction; /** * * */ public class Res implements IVoicedCommandHandler { private static final String[] VOICED_COMMANDS = { "res" }; public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target) { if (command.equalsIgnoreCase("res")) { if (!activeChar.isAlikeDead()) { activeChar.sendMessage("You cannot be ressurected while alive."); return false; } if(activeChar.isInOlympiadMode()) { activeChar.sendMessage("You cannot use this feature during olympiad."); return false; } if(activeChar.getInventory().getItemByItemId(3470).getCount() < 100) { activeChar.sendMessage("You need 100 Gold Bars to use the ressurection system."); return false; } activeChar.sendMessage("You have been ressurected!"); activeChar.getInventory().destroyItemByItemId("RessSystem", 3470, 100, activeChar, activeChar.getTarget()); activeChar.doRevive(); activeChar.broadcastUserInfo(); activeChar.sendMessage("100 Gold Bars has dissapeared! Thank you!"); broadcastPacket(new SocialAction(activeChar.getObjectId(), 15)); } return true; } public String[] getVoicedCommandList() { return VOICED_COMMANDS; } } And here's pic of compilation failture: http://img100.imageshack.us/my.php?image=51345477.jpg Thank you in advice.
  23. Thank you a lot again Vago for help, but I can't compile now... Can you tell me how to write it right?
  24. Tried to search over the iNet, but failed to find something relevant... Still no idea how to put LvLup effect when you .res :(
  25. My files? I didn't shared em lol :) I just saw that Final files are released and I just hoped that client modder with good skill will fix the problem of Fists and Duals lol.
×
×
  • Create New...