<script>
//Created for InvisionFree by Webworldx - v2.5
//Credit to Webworldx, Lans Tartare and Overlord - PB -
http://ssdesigns.proboards17.com
//This code may NOT be posted on any other forum without express permission from Webworldx
//Modded for InvisionFree by Beldin - v1.1
//This StarWars mod is property of Beldin, Administrator of AlternateUniverz-
http://alternateuniverz.co.nr
//This header must be kept intact at all times
RPGHigh="1000"
NextLevel="15"
MoneySign="$"
NextWeapon="8"
NextItem="8"
AddMoney="15"
MoneyOn="Y"
ItemWeapOn="Y"
//Directory of all uploaded pics
var BaseURL="http://www.angelfire.com/magic/rpgmod/sw"
var StatsURL="http://www.angelfire.com/magic/rpgmod/sw"
var statsImage=new Array();
statsImage[0]=new Array("HP","/exp.gif")
statsImage[1]=new Array("SKL","/str.gif")
statsImage[2]=new Array("FRC","/mag.gif")
statsImage[3]=new Array("DEF","/def.gif")
var theEXP = new Array("EXP","/exp.gif")
function getStats() {
TheStats=new Array();
stats=new Array();
TheStats[0]=new Array()
TheStats[0][1]=PostCount
TheStats[0][2]=PostCount
TheStats[0][3]=PostCount
TheStats[0][4]=PostCount
TheStats[0][5]=PostCount
TheStats[0][6]=PostCount
TheStats[0][7]=PostCount
TheStats[1]=new Array()
TheStats[1][1]=parseInt(TheStats[0][1]) - 5
TheStats[1][2]=parseInt(TheStats[0][2]) -10
TheStats[1][3]=parseInt(TheStats[0][3]) + 10
TheStats[1][4]=parseInt(TheStats[0][4]) - 5
TheStats[1][5]=parseInt(TheStats[0][5]) - 5
TheStats[1][6]=parseInt(TheStats[0][6]) + 20
TheStats[1][7]=parseInt(TheStats[0][7]) + 20
TheStats[2]=new Array()
TheStats[2][1]=parseInt(TheStats[0][1] /(2/3))
TheStats[2][2]=parseInt(TheStats[0][2] * 2)
TheStats[2][3]=parseInt(TheStats[0][3] * 0)
TheStats[2][4]=parseInt(TheStats[0][4] * 0)
TheStats[2][5]=parseInt(TheStats[0][5] * 0)
TheStats[2][6]=parseInt(TheStats[0][6] * 10)
TheStats[2][7]=parseInt(TheStats[0][7] * 10)
TheStats[3]=new Array()
TheStats[3][1]=parseInt(TheStats[0][1] * (5/3))
TheStats[3][2]=parseInt(TheStats[0][2] * (4/3))
TheStats[3][3]=parseInt(TheStats[0][3] * (5/3))
TheStats[3][4]=parseInt(TheStats[0][4] * (6/3))
TheStats[3][5]=parseInt((2/3) *(TheStats[0][5] - 10))
TheStats[3][6]=parseInt(TheStats[0][6] * (8/3))
TheStats[3][7]=parseInt(TheStats[0][7] * (8/3))
for (i=0;i<TheStats.length;i++){
if (ChosenRace==""){
stats
=TheStats[1]
} else {
stats=TheStats[ChosenRace]
}}
for (i=0;i<stats.length;i++){
if (parseInt(stats) >= parseInt(RPGHigh)) { stats=RPGHigh; }
if (parseInt(stats) < 0 ) { stats=0 }
}
return stats
}
var Race=new Array();
Race[1]=new Array("Jedi","/")
Race[2]=new Array("Sith","/")
Race[3]=new Array("BountyHunter","/")
Race[4]=new Array("Wookie","/")
Race[5]=new Array("Noghri","/")
Race[6]=new Array("JediMaster","/")
Race[7]=new Array("SithLord","/")
var WPName=new Array();
WPName[1]=new Array("Lightsaber","Hooded Cloak","Force Heal","Blaster")
WPName[2]=new Array("Dual Lightsaber","Hooded Cloak","Force Crush")
WPName[3]=new Array("Blaster","Mandalorian Armor","Blaster")
WPName[4]=new Array("Blaster Rifle","Bandoleer","Blaster")
WPName[5]=new Array("Blaster Rifle","Cloak","Blaster")
WPName[6]=new Array("Blue Lightsaber","Hooded Cloak","Force Heal","Force Throw","Force Crush")
WPName[7]=new Array("Red Lightsaber","Hooded Cloak","Force Lightning","Force Crush","Force Throw")
var WPName2=new Array();
WPName2[1]=new Array("Lightsaber","Hooded Cloak","Force Heal","Force Throw")
WPName2[2]=new Array("Dual Lightsaber","Hooded Cloak","Force Crush","Force Throw")
WPName2[3]=new Array("Blaster Rifle","Mandalorian Armor","Blaster","Thermal Detonator")
WPName2[4]=new Array("Bowcaster","Bandoleer","Blaster Rifle")
WPName2[5]=new Array("Assassin Knife","Cloak","Blaster","Thermal Detonator")
WPName2[6]=new Array("Blue Lightsaber","Hooded Cloak","Force Heal","Force Throw","Force Crush")
WPName2[7]=new Array("Red Lightsaber","Hooded Cloak","Force Lightning","Force Crush","Force Throw")
var WPURL=new Array();
WPURL[1]=new Array("lightsaber","cloak","forceheal","blaster")
WPURL[2]=new Array("dual","cloak","forcegrip")
WPURL[3]=new Array("blaster","boba","blaster")
WPURL[4]=new Array("blasterrifle","bandoleer","blaster")
WPURL[5]=new Array("blasterrifle","cloak","blaster")
WPURL[6]=new Array("bluesaber","cloak","forceheal","forcethrow","forcegrip")
WPURL[7]=new Array("redsaber","cloak","forcelightning","forcegrip","forcethrow")
var WPURL2=new Array();
WPURL2[1]=new Array("lightsaber","cloak","forceheal","forcethrow")
WPURL2[2]=new Array("dual","cloak","forcegrip","forcethrow")
WPURL2[3]=new Array("blasterrifle","boba","blaster","thermaldet")
WPURL2[4]=new Array("bowcaster","bandoleer","blasterrifle")
WPURL2[5]=new Array("knife","cloak","blaster","thermaldet")
WPURL2[6]=new Array("bluesaber","cloak","forceheal","forcethrow","forcegrip")
WPURL2[7]=new Array("redsaber","cloak","forcelightning","forcegrip","forcethrow")
var Items=new Array("Bacta Canister","Electrobinoculars","Battery Pack","Shield")
var ItemsURL=new Array("bacta","binoculars","battery","shield")
var Extension=".gif"
</script><script src="http://www.angelfire.com/magic/rpgmod/sw/invisionRPGv25.js"></script>
<script>
if(location.href.indexOf("act=UserCP") != -1) {
var tTD= document.getElementsByTagName('TD');
for (i=0;i<tTD.length;i++){
if (tTD.className=="pformleft" && tTD.innerText=="Your website url"){
tTD.innerHTML="<B>RPG Race:</b>"
document.theForm.WebSite.outerHTML = document.theForm.WebSite.outerHTML.replace("<INPUT","<select")
document.theForm.WebSite.outerHTML = document.theForm.WebSite.outerHTML.replace("size=40","size=0")
for (i=1;i<Race.length;i++){
document.theForm.WebSite.outerHTML+='<option value="http://invisionfree.com/RPG/' + Race[0] + '">' + Race[0] + '</option>'
}
document.theForm.WebSite.outerHTML+='</select>'
}}}
</script>