Resource icon

Lua [Eluna] Bounty Hunter 2

Bounty Hunter

Introduction​

Welcome to my latest eluna script release - Bounty Hunter

This 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
Checks Currently Offered

  • 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​

Register & Get access to index
Author PrivateDonut
banned

Posts

533

Likes

444

Resources

12

Version 2
Downloads 45
Views 1,012
Last Update
5.00 star(s) 2 ratings
None

Latest updates

  1. Version 2

    I'm super excited to announce version 2 of my bounty hunter script. I decided to rewrite the...

Latest reviews

Works great! Although, I had an SQL error when I copied the full SQL in your post, i removed the first three lines and it worked fine! I don't know if this is an issue for everyone but I figured I would post it here before anyone thought it wasn't working! Cheers brother good work!
Amazing work as always, Donut! I'll add this to my collection aswell, been looking for a good bounty hunter script!

3,382

1,252

9,525

410

Top