Jump to content

Zake

Global Moderator
  • Posts

    5,313
  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    100%

Everything posted by Zake

  1. Topic moved to request client help
  2. https://prnt.sc/11v5gq1 press the 'o' button
  3. In newer mysql versions 'rank' is meant to be a keyword, not sure about 'privs'. Although you should rename both of them, just in case
  4. Topic locked since author is inactive
  5. Mostly ar servers, not br. Although, their only playstyle is stucksub with wings and such stuff
  6. Topic locked since you have created another one
  7. Most of the times, when it comes to sql side npcs it's better to port them manually. In this occasion where custom_npc table is missing, try executing this in npc.sql instead. Although it would help a lot if you provide more information such as client/pack (consider doing this in any related topic) and a possible stacktrace.
  8. Stop creating 100 topics about the same problem. Especially when you get answers. If "you will pay" then just create a marketplace topic
  9. Post is from 2018, author haven't logged in the past year, so good luck
  10. What a great way to start your day
  11. It MAY be some of the following 1) You are putting wrong credentials 2)Your firewall blocks your host provider, 3)Mysql port is disabled 4)You didn't enable remote mysql access 5)You didn't give mysql permissions to a remote user (your host)
  12. You need to be more specific about your problem don't you think?
  13. reviveTask should be linked with players so you have to store this in L2PcInstance and not random classes. Also you don't need to check if a player is in a custom zone in doRevive() method, all you need is to cancel revive task.
  14. No, not really. At first , fields should be private in most cases. Furthermore, upon death (method onDieInside in your file) you should say something like if (reviveTask == null) reviveTask == ThreadPoolManager.getInstance().scheduleblabla() Also, as i already mentioned above. You should cancel the task inside the method doRevive(L2PcInstance.java)
  15. Store this runnable into a ScheduledFuture<?> . Let's say you call this reviveTask. Upon Player#doRevive call you should cancel this task. if (reviveTask != null) { reviveTask.cancel(false); reviveTask = null; }
  16. Locked since it's solved
  17. http://subversion.assembla.com/svn/L2jFrozenInterlude/trunk/gameserver/head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java i can see a method called increasepkkillsandkarma, there are some eye-bleeding references to town. A quick solution other than deleting this pack, is to override gludin village here just add || town.getId() == gludin_village_id_here.
  18. This is most likely a client side window. Since it gathers information correctly, you have to check your interface
  19. Problem solved, locked
  20. This was already shared by the owners i think. It's an outdated version though
×
×
  • 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