Jump to content

AbsolutePower

Legendary Member
  • Posts

    748
  • Credits

  • Joined

  • Last visited

  • Days Won

    3
  • Feedback

    0%

Posts posted by AbsolutePower

  1. 2 hours ago, LinIeIage said:

    Hi everyone, I can't find where the movement controller in my source for WASD keys. Can someone help me with this? I need to turn off moves when players press that keys.

     

    go to:

     

    gameserver/network/clientpackets/MoveBackwardToLocation.java

     

    _moveMovement = readD(); // is 0 if cursor keys are used 1 if mouse is used
    
    find		if (activeChar == null)
    			  return;
    
    and add:
    
    		if (_moveMovement == 0)
    			return;

     

    • Like 1
  2. 47 minutes ago, Vince* said:

     

    If i am not mistaken you're not the only one who faced up that client side issue, many interlude servers that was trying to activate same feature had difficulties, so the only option you will have is to make restart whenever you're changing Genre.... It's the only way to work correctly..

     

    indeed, and i remember that in a server i joined last time i saw the same issue, so owner said that you should do restart whenever you were requested to change genre or even by donating for it...

     

    • Thanks 1
  3. 50 minutes ago, zemaitis said:

     

    My point was that this topic was dead in 2017 and suddenly 5 years later it's being resurrected by profiles with big gaps in activity. Maybe better to create a new topic?  I see you think you are a hotshot but maybe take down that arrogance a notch? Your'e just another codemonkey with fragile ego, so know your place.

      

     

    This lithuanian boy is probably older than you (correct me if I'm wrong) greek boy. Yeah I checked your activity. 2 years silent and then only topic where you communicate is this topic. 

    oh that's new ,i didn't knew that there is a time expiration. sorry mate.

     

  4. On 4/30/2022 at 11:49 PM, zemaitis said:

    Say what you want but last 2 comments look like from dead/fake accounts. Why even this topic was resurrected from 2017? Maybe make a new topic...

    2017 ? i created this topic (July 17, 2012 ) .  you insult me by saying that i am using fake accounts....i don't understand the reason of your brainless post. i can provide proofs. think before you talk.

    • Like 1
  5. 18 hours ago, Amenadiel said:

    Watch out with who you do trades/work

     

    Rank and feedbacks are fake it seems!

     

    I am out of this forum , 2 months waiting for a work to be finished and guys vanishing , welcome to maxscammers not maxcheaters

     

     

    if you guys also dont like my post you can also ban me i am done! Lost lot of money here, because people promote wrong persons! 

    probably you did not find the proper guy for the job,i can offer my services and i can guarantee in public that you won't get disappointed .

  6. καλησπέρα , το hellas έχει γίνει free-private εδώ και δυο χρόνια, υπάρχει και free compiled χωρίς source revision 571 , πλέον,  για να αποκτήσεις πρόσβαση στο source η πληρώνεις ή βοηθάς. για περισσότερες πληροφορίες για αυτό το σύστημα  έχω κάνει topic στο forum του hellas. εδώ

    • Haha 1
  7. 1 hour ago, haskovo said:

    it doesnt give anything now

    make sure that you have create your custom zone in xml , if you dont know how you can check this : 

      

    if  you want you can add this code  for easier creation :       

     

     

                                                                      

     

    otherwise use the first guide and create your zone by hand.

     

     

    also make sure that you have create your customzone.java in zone type to read your new zone properly. the path in java may be gameserver.model.zone.type.   depends your pack.

     

    if you dont know how to do this, you can take example by :  

     

    to see how you can add a zone in java + datapack.

     

     

     

    • Like 1
  8. @Ehoq  the best solution for animation-effects is to edit client. you may find something here:   https://maxcheaters.com/forum/41-client-development-discussion/

     

    if you want to experiment with magicskilluse  :      

     

     _effected.broadcastPacket(new MagicSkillUse(_effected, skillId,  skillLevel, hitTime, reuseDelay));

     

    vars for magicskillUse are diffirent and depends on pack , you can check the magicskillUse.java to see exactly the vars.

     

    Social Action :

            _effected.broadcastPacket(new SocialAction(here it could be _effected or _effected.getObjectId() , here actionId));

     

    • Thanks 1
  9. 1 hour ago, Equi93 said:
    
    
    
    can you help me fix this?

    New Bitmap Image.jpg

    its bad coded , update the sql connection and at least replace the player loop with : L2World.getInstance().getPlayer(playerName)

     

    instead of a whole loop inside another loop.  it can be done like :

    L2PcInstance player =  L2World.getInstance().getPlayer(playerName);

     

    if(player != null && player.isOnline() == 1)

    {

        add item etc.

    }

     

    final code 

     

    if(id > 0 && count > 0 && !playername.isEmpty())

    {

        L2PcInstance player =  L2World.getInstance().getPlayer(playerName);

         if(player != null && player.isOnline() == 1)

         {

            your code to add item here.

         }

    }

     

×
×
  • Create New...