Introduction
Welcome to my latest eluna script release - Bounty HunterThis script allows players to place bounties on other players and for other players to earn rewards by hunting down and killing the target player. It adds an extra layer of player-vs-player (PvP) interaction to the game.
If you encounter any bugs, please let me know so I can resolve them and release an update for this script. Make sure you insert the SQL query below into your characters database.
Features
These are features for version 1, please feel free to suggest any features you might want to see in future updates to this script.- Place Bounties with Gold
- Set Max amount for bounty
- Set Minimum amount for bounty
- Players cannot place bounties on themselves
- Players cannot claim bounties on themselves or under the same IP
- Players cannot place bounties on GMs
- Check if the player is online before placing a bounty
- Check if the player has enough gold
- GMs cannot claim bounties
- Check if player exist before placing bounty
Information
It is very important that you run this query below to create the bounties table inside your characters database.
SQL:
CREATE TABLE IF NOT EXISTS `bounties` (
DROP DATABASE IF EXISTS bounties;
-- Dumping structure for table characters.bounties
CREATE TABLE IF NOT EXISTS `bounties` (
`id` int NOT NULL AUTO_INCREMENT,
`placedBy` int NOT NULL,
`placedOn` int NOT NULL,
`goldAmount` double DEFAULT NULL,
`itemAmount` float DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=latin1;
Screen shots
Liked By 10 members :