| CODE |
| <div id="slayer_rpg"> <% BOARD %> </div> |
| CODE |
| <script type="text/javascript"> /**************************************** Divinity RPG - By slayer766 From thecodingzone.com phantom-designs.net Cannot be edited/rehosted without permission! ****************************************/ //Show RPG Info in posts? var post_RPGInfo = true; //Set to false to turn off, true to turn on //Show RPG Info in profile? var profile_RPGInfo = true; //Set to false to turn off, true to turn on //Default amount of Gold var default_amount = 50000; //Name of currency var cur_name = "Gold"; //Price to stay at Inn var Inn_price = 35; //How many stats points given during level up? var Stat_Amount = 5; //How much should each stat increase during level up? var Up_HP = 10; var Up_MP = 5; var Up_ATK = 1; var Up_DEF = 1; //Set Max Level for free healing at the Inn var Max_Levelh = 4; //Give User Money Rewards for completed quests var Quest_Rewards = new Array(); //Quest 1, 3, 4 Quest_Rewards[0] = [100,300,400] //Give Stats reward for last quest //HP,MP,ATK,DEF var Final_Quest = new Array(); Final_Quest[0] = [100,100,100,100] var Guilds = new Array(); //Guilds[x] = ["GUILD_NAME","GUILD_LEADER"] Guilds[0] = ["Knights of the Round Table","slayer766"] Guilds[1] = ["Barbaric Rage","test"] var B_Weapons = new Array(); //B_Weapons[x] = ["URL_OF_IMAGE","WEAPON_NAME",PRICE,"DESCRIPTION",ATTACK] B_Weapons[0] = ["http://209.85.12.227/11838/143/upload/p455843.gif","Blood Axe",100,"An Axe crafted from the blood of warriors",4] B_Weapons[1] = ["http://209.85.12.227/11838/143/upload/p455863.gif","Chaos Bow",250,"A bow bent on the soul infliction of pain",9] B_Weapons[2] = ["http://209.85.12.227/11838/143/upload/p455874.gif","Dark Hammer",500,"A cursed Hammer made out of pure darkness",13] B_Weapons[3] = ["http://209.85.12.227/11838/143/upload/p455911.gif","Evil Spear",800,"A spear made of complete evil",17] B_Weapons[4] = ["http://209.85.12.227/11838/143/upload/p455926.gif","Fire Bow",800,"A full Fire Bow with magic attacks",17] B_Weapons[5] = ["http://209.85.12.227/11838/143/upload/p455928.gif","Fire Sword",1000,"A sword enchanted with Fire",22] B_Weapons[6] = ["http://209.85.12.227/11838/143/upload/p455946.gif","Great Bow",1000,"A mighty bow fit for a warrior",26] B_Weapons[7] = ["http://209.85.12.227/11838/143/upload/p455955.gif","Heavy Axe",1300,"A heavy axe made with solid steel",33] B_Weapons[8] = ["http://209.85.12.227/11838/143/upload/p455962.gif","Hero Spear",1500,"A very strong and durable spear",39] B_Weapons[9] = ["http://209.85.12.227/11838/143/upload/p455980.gif","Holy Spear",1750,"The spear made with Holy magic",43] B_Weapons[10] = ["http://209.85.12.227/11838/143/upload/p455991.gif","Ice Bow",2090,"Ice Bow used with magic",50] B_Weapons[11] = ["http://209.85.12.227/11838/143/upload/p455993.gif","Ice Sword",2090,"Ice Sword used with magic",50] B_Weapons[12] = ["http://209.85.12.227/11838/143/upload/p456063.gif","Ogre Sword",2300,"A grand sword",55] B_Weapons[13] = ["http://209.85.12.227/11838/143/upload/p456087.gif","Oricon Sword",3000,"A sword fit for a king",59] B_Weapons[14] = ["http://209.85.12.227/11838/143/upload/p455903.gif","Dragon Sword",4000,"The strongest sword you will hold",70] var A_Armor = new Array(); //A_Armor[x] = ["URL_OF_IMAGE","ARMOR_NAME",PRICE,"DESCRIPTION",DEFENSE] A_Armor[0] = ["http://209.85.12.227/11838/143/upload/p456007.gif","Leather Armor",55,"Basic Leather Armor",2] A_Armor[1] = ["http://209.85.12.227/11838/143/upload/p456196.gif","Wing Armor",300,"Enhanced Basic Armor",4] A_Armor[2] = ["http://209.85.12.227/11838/143/upload/p456170.gif","Warrior Armor",550,"Armor fit for a Warrior",7] A_Armor[3] = ["http://209.85.12.227/11838/143/upload/p456130.gif","Phoenix Armor",785,"Enchanted Armor",11] A_Armor[4] = ["http://209.85.12.227/11838/143/upload/p455935.gif","Granite Armor",910,"Lightweight yet durable",15] A_Armor[5] = ["http://209.85.12.227/11838/143/upload/p455847.gif","Chain Armor",1100,"Rock solid defensive Armor",22] A_Armor[6] = ["http://209.85.12.227/11838/143/upload/p455888.gif","Dragon Armor",2500,"Armor created from a dragon's scale!",35] //You may only have two Items var Items = new Array(); //Items[x] = ["URL_OF_IMAGE","ITEM_NAME",PRICE,"DESCRIPTION",HP+,MP+] Items[0] = ["http://209.85.12.227/11838/143/upload/p455951.gif","Healing Potion",40,"Used to refill a small portion of HP",35,0] Items[1] = ["http://209.85.12.227/11838/143/upload/p456032.gif","Magic Potion",40,"Used to refill a small portion of MP",0,35] var Stat_Items = new Array(); //Stat_Items[0] = ["STAT_IMAGE","STAT_ITEM_NAME",PRICE,"DESCRIPTION",HP+,MP+,ATK+,DEF+] Stat_Items[0] = ["http://209.85.12.227/11838/143/upload/p456116.gif","Vitality Card",800,"Increase your HP",20,0,0,0] Stat_Items[1] = ["http://209.85.12.227/11838/143/upload/p456123.gif","Magic Card",800,"Increase your MP",0,20,0,0] Stat_Items[2] = ["http://209.85.12.227/11838/143/upload/p456102.gif","Strength Card",800,"Increase your ATK",0,0,20,0] Stat_Items[3] = ["http://209.85.12.227/11838/143/upload/p456109.gif","Dexterity Card",800,"Increase your DEF",0,0,0,20] Stat_Items[4] = ["http://209.85.12.227/11838/143/upload/p669303.gif","Life Seal",3000,"Increase all of your stats!",20,20,20,20] var Monsters = new Array(); //Monsters[x]= ["URL_OF_IMAGE","MONSTER_NAME",HP,MP,ATTACK,DEFENSE,LEVEL,EXP_FOR_KILL,GOLD_FOR_KILL] Monsters[0] = ["http://209.85.12.227/11838/143/upload/p456391.gif","Larva",10,0,2,2,1,8,5] Monsters[1] = ["http://209.85.12.227/11838/143/upload/p456383.gif","Jelly",35,0,4,3,1,15,10] Monsters[2] = ["http://209.85.12.227/11838/143/upload/p456379.gif","Imp",50,0,9,7,2,20,20] Monsters[3]= ["http://209.85.12.227/11838/143/upload/p456419.gif","Soldier",85,0,14,10,2,25,20] Monsters[4]= ["http://209.85.12.227/11838/143/upload/p456401.gif","Sandman",110,0,20,10,3,30,40] Monsters[5]= ["http://209.85.12.227/11838/143/upload/p456424.gif","Swordrat",185,0,34,17,4,40,50] Monsters[6]= ["http://209.85.12.227/11838/143/upload/p456414.gif","Sandpede",225,0,45,22,5,50,75] Monsters[7]= ["http://209.85.12.227/11838/143/upload/p456323.gif","Basilisk",400,0,50,29,7,100,100] Monsters[8]= ["http://209.85.12.227/11838/143/upload/p456356.gif","Gargoyle",690,0,62,35,8,155,110] Monsters[9]= ["http://209.85.12.227/11838/143/upload/p456435.gif","Terapin",800,0,50,50,10,165,120] Monsters[10]= ["http://209.85.12.227/11838/143/upload/p456393.gif","Necroman",1200,40,100,70,13,300,300] var Classes = new Array(); //Classes[x] = ["CLASS",HP,MP,ATK,DEF,"CHARACTER_IMAGE"] Classes[0] = ["Barbarian",30,2,5,3,"http://209.85.12.227/11838/143/upload/p649042.gif"] Classes[1] = ["Warrior",25,3,5,4,"http://209.85.12.227/11838/143/upload/p649045.gif"] Classes[2] = ["Assassin",25,8,5,4,"http://209.85.12.227/11838/143/upload/p649050.gif"] Classes[3] = ["Ranger",30,5,11,3,"http://209.85.12.227/11838/143/upload/p649056.gif"] Classes[4] = ["Necromancer",30,15,4,4,"http://209.85.12.227/11838/143/upload/p649063.gif"] Classes[5] = ["Dwarf",40,3,6,6,"http://209.85.12.227/11838/143/upload/p649069.gif"] var Quest_Bosses = new Array(); //var Quest_Bosses[x] = ["URL_OF_IMAGE","BOSS_NAME",HP,MP,ATTACK,DEFENSE,LEVEL,EXP_FOR_KILL,GOLD_FOR_KILL] Quest_Bosses[0] = ["http://209.85.12.227/11838/143/upload/p456315.gif","Alligator",500,0,50,25,6,80,400] Quest_Bosses[1] = ["http://209.85.12.227/11838/143/upload/p456419.gif","Bandits Trio",800,0,85,40,10,125,800] Quest_Bosses[2] = ["http://209.85.12.227/11838/143/upload/p456318.gif","Barubary",1300,40,95,40,14,250,1000] Quest_Bosses[3] = ["http://209.85.12.227/11838/143/upload/p456372.gif","Grand Dragon",2000,0,100,55,18,250,1000] Quest_Bosses[4] = ["http://209.85.12.227/11838/143/upload/p456330.gif","Deathven",4000,0,140,70,25,1000,10000] //End Quest Bosses //Do not mess with hosted code document.write("<script language='javascript' src='http://h1.ripway.com/slayer766/DivinityRPGV1TCZ2.js'><\/script>"); </script> |
| QUOTE (Enzan @ Dec 18 2007, 05:34 PM) |
| NcN>mmbno BIG time , also this place is for suggestions not for WTF is this place, I would say we need a new contest maybe, coz I'm getting the creeps outta those OLD members contests |
| QUOTE (Enzan @ Dec 19 2007, 12:59 AM) |
| umm Kayle makes perfect sense BTW, 1st time that I agree with him on something, we dun need any thing |
| QUOTE (MegaBassFalzar @ Dec 19 2007, 01:10 AM) | ||
Well, seeing as MMBNO isn't headed by a half-retarded 14-year old and doesn't have your problem with codes, that statement is 100% false. |
| QUOTE (Kingofkingz750 @ Dec 19 2007, 01:25 AM) | ||||
WTF is that for. NcN is doing better then your fruity dark site one hundredfold. STFU cause I nvr did anything to you . Get a phucing life. |
| QUOTE (MegaBassFalzar) |
| Anyway, yes. This site needs nothing except maybe a mod or two who isn't Nemo, KoK, or Enzan. |
| QUOTE (Nemomon @ Dec 19 2007, 01:22 PM) | ||
Well, this is more complicated. Personally i was always on "Kayle side" but we must grow up or we will die. But we have another problem - even if we will have a RPG board, who will play that RPG? In Spam Board only few members are posting. At the beginning, Bunny Wars was a RPG but leter most members give up (if someone don't know - Bunny Wars have 8 threads in whole Offtopic Ramble).
We have enough Mods there. But if you have something against me - post that. Still, this thread is not for TTD, NcN, MMBNO or other sites. Is for TREZ. Next, KoK seems you really want a warn because of discrimination and some other things. This is not only for you but for other members too. |
| QUOTE (Zero) |
| 1)an RPG section can be kinda discarded as an idea because of 1 problem there . GOD MODE . as seen in bunny wars mostly or sometimes who posted there was mostly god mode ( i never was becuase i kinda took all the hits and never evaded impossible attacks like putuk and other members) and mostly because of that we could argue and begin a flame war of a reason like that . I hope you agree with what im saying here |
| QUOTE (Zero) |
| 2) this is thanks to nemo that quoted megabassfalzer's post. IT DOESN'T MATTER IF YOU HAVE ALOT OF POSTS YOU CAN BECOME ONE LIKE THAT DAMMIT !! ( sry for that but its kinda true right nemo) that's becuase : 2.1)Once i had the highest post rate here and i asked to be one and rejected so high post count doesnt count to become a mod ! 2.2)KoK or Enzan kinda have low chances to be mods ( no offense ok ) im not telling why because you know yourselfs 2.3) if they want any new mods. you don't need to ASK REPEATEDLY to be one because you are kinda shouting at them so it can be an that your asking for a warn ( Nemo is ready to do that i think if he knows <_<) 3)like nemo said its not about any other Forum . this topic is about any suggestions that trez needs not about mmbno and other Stupid forum like that ( like i said no offense) so lets thinks some really good ideas that with that we can continue enjoying this place ^_^ |
| QUOTE (Nemomon @ Dec 19 2007, 11:22 AM) | ||
We have enough Mods there. But if you have something against me - post that. |
| QUOTE (Silvermane) |
| I didn't do anything all I did was suggest(just suggest) having a RPG section so don't include me in the flaming mad.gif |
| QUOTE (DroKoKieo @ Dec 20 2007, 11:33 AM) |
| This RPG Section is v1 guys. It doesn't have the player vs. player feature WORKING right now. Divinty RPG v2 will have that. |