Jump to content

SweeTs

Legendary Member
  • Posts

    8,941
  • Credits

  • Joined

  • Last visited

  • Days Won

    25
  • Feedback

    0%

Everything posted by SweeTs

  1. Your geodata won't handle the island above giran. Long time ago I was walking in there with and w/o geodata, and I just simply fall down from time to time.. :P So, you must rework the geo or so, somehow, I guess :P
  2. Go to your main AntibotSystem file, find sendFarmBotSignal method and paste the check there.
  3. Make a check inside the method L2Object target = player.getTarget(); if (target instanceof L2RaidBossInstance || target instanceof L2GrandBossInstance || target instanceof L2PcInstance || target instanceof L2Summon) return false;
  4. data/xml and edit the skill effects (copy from other file the effect and paste to your custom one).
  5. Select the font from psd, you will get a msg that you miss "blabla" font. You got the name of font, download it. Da yum ;) @author It's nice, but dat dark elf chick doesn't rly fit, from my pov :P
  6. http://www.maxcheaters.com/topic/174760-share-l2-website-php/
  7. Looks like you already have installed MySQL or you had and reinstalled it, but the "property" file wans't deleted. So, when you uninstall MySQL make sure you deleted it's folder from Program Files as well. Or simply select other name from the list "MySQL" :P
  8. Anywhere in this class :P Before if(CustomServer
  9. L2PcInstance @ doDie( method
  10. You can't "create old timeline". And the video 7:40 is showing how to upload the sources into workspace.
  11. http://www.youtube.com/watch?v=3gQ2yYH-F1Q Watch from 7:40 Download TortoiseSVN and upload the folder using it. Right click on the folder and there you have some options :P
  12. I'd like to know the password, if it's still available. Pm'ed a week ago, da yum.. :P
  13. http://www.maxcheaters.com/topic/172408-help-about-arenas/?do=findComment&comment=2298740 Here you go :P
  14. Hah :D Well, he already did that. Also, he pm'ed me about the problem. Ofc, dunno if he added it successfully / correct. Since, when he try to add +80 m atk nothing happens. Also funny is that, he even use +12412 weapon and he has 80 m atk in total. Enjoy broken pack (frozen) :D
  15. CharacterCreate.java
  16. It's from the script. Monastery I guess :P check the folder and search over Eclipse and delete the sentence :)
  17. Send them the systextures folder (the custom file) as well.
  18. Looks like.. Your OS and all programs probably use most of your ram.. Open tasks manager and see how ram is in use, I wonder :P
  19. Just create new zone and set its type Multifunction. How to create arena? Take a look here http://www.maxcheaters.com/topic/172408-help-about-arenas/?p=2298720
  20. Search @ google for l2j esios pack and take needed code :D
  21. Surely l2j broken pack, there is a stupid config about saving the spawn.. So, check your configs and change it to true :happyforever:
  22. http://www.maxcheaters.com/topic/174387-l2j-panp-now-pack-high-five/ bumping like crazy.
  23. Ye, I'm not. But I can't stand such a sh1t-talk.. You use someone's work and you blame, flame the guy because it's not working perfectly, lol..
  24. Look here https://www.assembla.com/code/L2jFrozenInterlude/subversion/nodes/1003/trunk/gameserver/head-src/com/l2jfrozen/gameserver/handler/usercommandhandlers/OfflineShop.java Because, offline shop is also using usercommand and its ID is 114, so you call the offline shop :D So, just change the ID of menu to 115 or higher and you are done :)
  25. Well, this new screen is from offline shop, not related to menu system or I miss something? :alone: Also, the msg from 1st screen is not in the patch as well.. So, use Search option @ Eclipse and search for that sentence and track it :D Edit: I found it. The 1st msg is from offline shop voiced command if ((!player.isInStoreMode() && (!player.isInCraftMode())) || !player.isSitting()) { player.sendMessage("You are not running a private store or private work shop."); player.sendPacket(ActionFailed.STATIC_PACKET); return false; } So, it's correct msg. and the 2nd one if ((player.isInStoreMode() && Config.OFFLINE_TRADE_ENABLE) || (player.isInCraftMode() && Config.OFFLINE_CRAFT_ENABLE)) { // Sleep effect, not official feature but however L2OFF features (like offline trade) player.startAbnormalEffect(L2Character.ABNORMAL_EFFECT_SLEEP); player.sendMessage("Your private store has succesfully been flagged as an offline shop and will remain active for ever."); player.setStored(true); return true; } So, what's the problem in here? :D
×
×
  • Create New...