Thread: Enabling PvP Drops in SoulSplit Source

Results 1 to 4 of 4
  1. #1 Enabling PvP Drops in SoulSplit Source 
    ZRPS
    Guest
    Go to PlayerAssistant.java, and search for
    c.getItems().dropAllItems(); // drop all items
    c.getItems().deleteAllItems(); // delete all items
    Replace it with:
    if(c.isInArd() || c.isInFala()) { //
    c.getItems().dropAllItemsPVP(); // drop all items and adds possible pvp drop
    c.getItems().deleteAllItems(); // delete all items
    }else{
    c.getItems().dropAllItems(); // drop all items
    c.getItems().deleteAllItems(); // delete all items
    }
    The method is already in the source, i just removed disabled it because my players didn't like it
    Reply With Quote  
     

  2. #2  
    Registered Member
    Division's Avatar
    Join Date
    Dec 2009
    Age
    29
    Posts
    2,208
    Thanks given
    41
    Thanks received
    78
    Rep Power
    97
    Thanks for sharing
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Oct 2009
    Age
    28
    Posts
    1,579
    Thanks given
    4
    Thanks received
    23
    Rep Power
    0
    Nice nice.
    Reply With Quote  
     

  4. #4  
    Officially Retired


    Join Date
    Oct 2007
    Age
    30
    Posts
    5,454
    Thanks given
    558
    Thanks received
    122
    Rep Power
    1364
    how do i make c.getItems().dropAllItems drop all my item.cfg?
    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
  •