Thanks Jotox1, I've been looking for something like this. I'm hoping to tie it in will a kill streak script. (actually one that is very similar to the one used on CC AV realm... you know the dual AQ buffs etc :P) 
+rep x2
[EDIT] update.... There is a bug that is easily fixable.
Code:
//------------------------------
//Configs.
//------------------------------
//Level required to participate.
#define REQUIRED_LEVEL 80
//Base amount of points awarded
#define NUM_POINTS 40
//Number of points lost on death
#define POINTS_DEATH 10
//Allow parties to PvP (0 for no)
#define PARTY_ALLOWED 1
//Allow Raids to PvP (0 for no) Default: no (It results in 30 vs 1)
#define RAIDS_ALLOWED 0
//---------------------------
//End Config.
//---------------------------
Needs to be placed under the includes:
Code:
#include "StdAfx.h"
#include "Setup.h"
End result:
Code:
//Arena PvP Script
//Made By Jotox/Classic
#include "StdAfx.h"
#include "Setup.h"
//------------------------------
//Configs.
//------------------------------
//Level required to participate.
#define REQUIRED_LEVEL 80
//Base amount of points awarded
#define NUM_POINTS 40
//Number of points lost on death
#define POINTS_DEATH 10
//Allow parties to PvP (0 for no)
#define PARTY_ALLOWED 1
//Allow Raids to PvP (0 for no) Default: no (It results in 30 vs 1)
#define RAIDS_ALLOWED 0
//---------------------------
//End Config.
//---------------------------
void GivePoin...