Thread: EverythingRS Voting Donate Hiscores Heatmaps Installation & More [ANY BASE]

Page 72 of 135 FirstFirst ... 2262707172737482122 ... LastLast
Results 711 to 720 of 1344
  1. #711  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Suggestions needed!
    Reply With Quote  
     

  2. #712  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    RSPS-Page has been fixed. Thank you guys for letting me know.

    Important Note: For MoparScape

    Moparscape is broken, and it's not on our end. Their servers are failing to send callbacks to any other server (including those not using EverythingRS). Someone should bring that to their attention. It is recommended to use 0 points for MoparScape if you want to support their platform, until they fix that there is nothing we can do on our end.
    Reply With Quote  
     

  3. #713  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Quote Originally Posted by apadworski View Post
    is there a way to remove admin and developers from the hiscores? I'm on a ruse source, and it doesn't use player rights it just says ADMINISTRATOR, also for some reason the hiscores stopped registering construction, is there something I can do ?
    Yes, in the code would just add an if/else statement.

    Code:
    if (playerRights != Rights.Admin) 
     //Hiscores code
    Reply With Quote  
     

  4. #714  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Need suggestions
    Reply With Quote  
     

  5. #715  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Need suggestions
    Reply With Quote  
     

  6. #716  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Need suggestions
    Reply With Quote  
     

  7. #717  
    Donator
    Skater's Avatar
    Join Date
    Nov 2011
    Posts
    545
    Thanks given
    21
    Thanks received
    23
    Rep Power
    0
    Quote Originally Posted by Genesis View Post
    Need suggestions

    It would be a really nice feature, if I could give out free membership without the cost of fees


    So anything I want priced at 0 = 0
    Reply With Quote  
     

  8. #718  
    Slow resistance wins the war...
    Altar's Avatar
    Join Date
    Jun 2014
    Age
    26
    Posts
    65
    Thanks given
    25
    Thanks received
    17
    Rep Power
    36
    I've been trying to add my server to the toplist so I could get started with this. It keeps saying it's been added but when I go back to the main control panel page it is telling me to add a server.
    Reply With Quote  
     

  9. #719  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,149
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Quote Originally Posted by Altar View Post
    I've been trying to add my server to the toplist so I could get started with this. It keeps saying it's been added but when I go back to the main control panel page it is telling me to add a server.
    Thanks for letting me know, fixed
    Reply With Quote  
     

  10. #720  
    Slow resistance wins the war...
    Altar's Avatar
    Join Date
    Jun 2014
    Age
    26
    Posts
    65
    Thanks given
    25
    Thanks received
    17
    Rep Power
    36
    For those needing help with Ruse based server:


    Go to Trading.java
    Code:
    public void giveItems() {
    Look for
    Code:
    			for (Item item : player.getTrading().offeredItems) {
    				PlayerLogs.log(player.getUsername(), "Gave item in trade to "+player2.getUsername()+". Id: "+item.getId()+", amount: "+item.getAmount());
    			}
    			for (Item item : player2.getTrading().offeredItems) {
    				PlayerLogs.log(player.getUsername(), "Receiving item from trade with "+player2.getUsername()+" Id: "+item.getId()+", amount: "+item.getAmount());
    			}
    Add this underneath it
    Code:
                com.everythingrs.marketplace.Trade trade = new com.everythingrs.marketplace.Trade();
        	trade.setUsername(player2.getUsername());
        	trade.setTradeWith(player.getUsername());
        	for (Item item : player2.getTrading().offeredItems) {
        		if (item.getId() > 0) {
        			String itemName = ItemDefinition.getDefinitions()[item.getId()].getName();
        			trade.push(new com.everythingrs.marketplace.Item(item.getId(), item.getAmount(), itemName));
        		}
        	}
        	trade.update("your_secret_key");
    Reply With Quote  
     

  11. Thankful user:


Page 72 of 135 FirstFirst ... 2262707172737482122 ... LastLast

Thread Information
Users Browsing this Thread

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


User Tag List

Similar Threads

  1. MotivoteRS Installation Tutorial [ANY BASE]
    By funkE in forum Tutorials
    Replies: 147
    Last Post: 02-19-2019, 11:40 PM
  2. Replies: 8
    Last Post: 03-05-2018, 11:06 PM
  3. Setup Ruse Vote/Donate/Hiscores
    By NoahLH in forum Buying
    Replies: 6
    Last Post: 04-07-2017, 07:47 PM
  4. Replies: 6
    Last Post: 09-15-2016, 01:24 AM
  5. Replies: 8
    Last Post: 04-01-2016, 08:49 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •