Thread: First person drops

Results 1 to 6 of 6
  1. #1 First person drops 
    runepvp
    Guest
    I am using bulby's source.

    Heres the issue:
    The first person to connect to my server gets all the drops from every monster everywhere no matter what. I could be all the way in my training area and my friend could be at godwars and if he kills the bosses, ill get the drop (if i was the first person to connect). Now if we would both logout and he would connect first, then he would get every single drop.

    Theres got to be a way to fix this, ive searched through all of my files that might lead to a clue but couldnt find anything. If someone could give me a detailed help, not just "go to combat.java and place this and that wherever" because i always get errors. I guess whatever helps.
    thanks for checking this out!
    Reply With Quote  
     

  2. #2  
    Hi.

    'Mystic Flow's Avatar
    Join Date
    Nov 2007
    Posts
    7,146
    Thanks given
    256
    Thanks received
    1,252
    Rep Power
    3714
    Easy to fix want me to really help u?



    Reply With Quote  
     

  3. #3  
    runepvp
    Guest
    i'd prefer it yes, as i like to continue with that problem out of my way.
    Reply With Quote  
     

  4. #4  
    Hi.

    'Mystic Flow's Avatar
    Join Date
    Nov 2007
    Posts
    7,146
    Thanks given
    256
    Thanks received
    1,252
    Rep Power
    3714
    Change

    Code:
                          } else if (n.deadEmoteDone && !n.hiddenNPC && n.combatDelay <= 0) {
    							n.npccanloot = true;
    							n.npcDied(Engine.players[1], n.npcType, n.absX, n.absY);
                                n.hiddenNPC = true;
    						 } else if (n.deadEmoteDone && !n.hiddenNPC
                                    && n.combatDelay <= 0) {
                                n.hiddenNPC = true;
    to:

    Code:
    } else if (n.deadEmoteDone && !n.hiddenNPC && n.combatDelay <= 0) {
    n.npccanloot = true;
    n.npcDied(Engine.players[n.attackPlayer], n.npcType, n.absX, n.absY);
    n.hiddenNPC = true;



    Reply With Quote  
     

  5. #5  
    runepvp
    Guest
    thank you
    Reply With Quote  
     

  6. #6  
    Hi.

    'Mystic Flow's Avatar
    Join Date
    Nov 2007
    Posts
    7,146
    Thanks given
    256
    Thanks received
    1,252
    Rep Power
    3714
    No problem, rep would be appreciated



    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •