Jump to content
Existing user? Sign In

Sign In



Sign Up
Search In
  • More options...
Find results that contain...
Find results in...

[ELVARG] SIMPLE PET M BOX


Diddy Ranqe
 Share

Recommended Posts

I know its not much, but its nice to give back to the community, and there isn't really much released on elvarg for new coders so thought I'd release.


Firstly go to your client and find

Itemdefinition.java

Search for

 switch (itemId) {

Add this under.

Quote
Quote

case 6829:
            itemDef.name = "Pet Mystery Box";
            itemDef.stackable = false;
            itemDef.actions = new String[5];
            itemDef.actions[0] ="Open";
            break;

 

Then go back to your server files and make a new package called content.

Quote

elvarg.game.content

In this package create

 PetMbox.java

Paste this to PetMbox.java

package com.elvarg.game.content;

import java.util.Random;
import com.elvarg.world.entity.impl.player.Player;

/**
 * 
 * @author Insidia X aka DR AHK
 * Discord: Diddy Ranqe#4105
 *
 */
public class PetMbox {

/**
 * The item id of the PetMbox is below.
 */
    public static final int PET_MYSTERY_BOX = 6829;
    
/**
 * If the roll is between 0 and 250 it pays out these items. {} - FILL THE BLANKS BELOW
 */
    
    public static int[] WORST_PET_PRIZE = new int[] { 272 };
/**
 * If the roll is between 251 and 399 it pays out these items. {} - FILL THE BLANKS BELOW
 */    
    
    public static int [] MED_PET_PRIZE = new int[] { 7582, 7583, 1561, 11995 };
    
/**
 *  If the roll is between 401, and 487 it pays out these items. {} - FILL THE BLANKS BELOW
 */
    
    public static int [] RARE_PET_PRIZE = new int[] { 13177, 13178 };
    
/**
 *  Generates the roll the pay out the prize.
 */
    public static int generateRandomNumber() {
            return new Random().nextInt(611 - 0) + 0;
    }
    
/**
 * Gets the random item from the item arrays at the top.
 */
    
    public static int getRandomItem(int[] array) {
        return array[new Random().nextInt(array.length)];
    }
/**
 * Opens the box and gives the player a random pet or fish food.
 */
        public static void openPetMbox(Player player) {
            int randomNumber = generateRandomNumber();
            int randomItem = 0;

            player.getInventory().delete(PET_MYSTERY_BOX, 1);
            player.getPacketSender().sendMessage("You open the box, thank you for donating. Good luck!");
            if (randomNumber > 0 && randomNumber < 250) {
                // Select low quality item to give player
                randomItem = getRandomItem(WORST_PET_PRIZE);
                player.getPacketSender().sendMessage("@red@You got fish food, unlucky.");
            }
            if (randomNumber > 251 && randomNumber < 399) {
                // Select med quality item to give player
                randomItem = getRandomItem(MED_PET_PRIZE);
                player.getPacketSender().sendMessage("@gre@You just got a PET!!!!!");
            }
            if (randomNumber > 401 && randomNumber < 487) {
                // Select high quality item to give player
                randomItem = getRandomItem(RARE_PET_PRIZE);
                player.getPacketSender().sendMessage("@blu@You just got a RARE PET!!!!!");
            }

            player.getInventory().add(randomItem, 1);
        }
    }


 


Then go into

ItemPacketListener.java

Add this import in. 
import com.elvarg.game.content.PetMbox;

Search for

public void handleOption(Player player, int option)


And under

Quote

break;

Add

case PetMbox.PET_MYSTERY_BOX:
            PetMbox.openPetMbox(player);
            break;

 

Edited by Diddy Ranqe
Link to comment
Share on other sites

  • 2 weeks later...
  • 4 weeks later...
  • 3 months later...
  • 3 weeks later...
  • 3 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

Contact

ltlimes

RSPS Partners

RedemptionRSPS

What is a RSPS?

A RSPS, also known as RuneScape private server, is an online game based on RuneScape, and controlled by independent individuals.

Popular RSPS Servers

oldschoolrsps Runewild RedemptionRSPS

Disclaimer

Runesuite is not affiliated with runescape, jagex, rune-server and runelocus in any way & exists solely for educational purposes.

×
×
  • Create New...