Welcome to Dark eFfectX !

Enter the digital revolution. Design technology, coding & gaming. The curating & exchange of Digital Knowledge while Anime, Manga Art, Music and Technology collide in a Alchemy of Thought and Illusion.

Learn the magic of today from the science of tomorrow. Web site modifications, custom style sheets (CSS) and coding support + more.

Guests, please register or log in to view the entire forum.

Join the forum, it's quick and easy

Welcome to Dark eFfectX !

Enter the digital revolution. Design technology, coding & gaming. The curating & exchange of Digital Knowledge while Anime, Manga Art, Music and Technology collide in a Alchemy of Thought and Illusion.

Learn the magic of today from the science of tomorrow. Web site modifications, custom style sheets (CSS) and coding support + more.

Guests, please register or log in to view the entire forum.
Would you like to react to this message? Create an account in a few clicks or log in to continue.

[Code] RPG Inferno v3.0 (original)

2 posters

Go down

[Code] RPG Inferno v3.0 (original) Empty [Code] RPG Inferno v3.0 (original)

Post by Bad Wolf Sat 26 May 2007, 22:52

The original RPG Inferno v3.0 for Invisionfree
created by Zero Tolerence, rehosted by Now Playing X
Preview: Here

Place in your boards footers | wrappers

<script>
/* ------------------------------------------------------------------------------- *\
| RPG Inferno v3.0 - Leave Copyright Intact Wherever Used |
| Created For Invision Free |
| An Inferno Productions Product |
| Author: Zero Tolerance © Game Zone | Evolution 2004 [http://gzevolution.net] |
| This Copyright May Not Be Edited Or Additional Copyright Added Without Permission |
\* ------------------------------------------------------------------------------- */


MoneyName = "Gil"
MoneyPerThread = 10
MoneyPerPoll = 10
MoneyPerReply = 5
MoneyPerQuote = 5
CardPackCost = 200 // How much does it cost for a TT Card Pack?
CardPackContain = 7 // How many cards does a TT card pack get you?

// Skill Point System
SkillPointAward = 20 // Amount of skill points awarded to player upon leveling up
SkillToHP = 6 // 6 HP Points Given For 1 Skill Point
SkillToMP = 6 // 6 HP Points Given For 1 Skill Point
SkillToSTR = 3 // 3 STR Points Given For 1 Skill Point
SkillToDEF = 3 // 3 DEF Points Given For 1 Skill Point

NavImage = "http://209.85.48.8/1183/88/upload/p6158806.gif" // Navigation Image For RPG Inferno

Class = []
Class[Class.length] = ["Warrior"]
Class[Class.length] = ["Rogue"]
Class[Class.length] = ["Mage"]

Items = []

// CLASS - URL - NAME - COST - DESC - LVL REQUIREMENT - [HP - MP - STR - DEF]

// Warrior Items
Items[Items.length] = [0,"http://209.85.48.8/1183/88/upload/p4096211.gif","Dagger",100,"Basic Weapon For Combat",0,[0,0,3,0]]

// Rogue Items
Items[Items.length] = [1,"http://209.85.48.8/1183/88/upload/p4096216.gif","Short Bow",80,"Old Worn Bow",0,[0,0,2,1]]

// Mage Items
Items[Items.length] = [2,"http://209.85.48.8/1183/88/upload/p4096220.gif","Staff",80,"Basic Combat Staff",0,[0,1,1,0]]

Spells = []

/*
Available Spell Types Are:
FireBall - Damage Spell
Drain - Takes Life From Opponent And Gives To Your Character
MoonLight - Heal During Battle
ATBBoost - Increases Your ATB By 30% Of Current ATB
ATBKnockDown - Decreases Opponents ATB By 30% Of Current ATB
Quake - Shake your opponents knocking down there DEF by 2%
ManaLeech - Drain 20% Of Your Opponents MP
Haste - Speed up your character knocing up your DEF by 2%
DeathDimension - Cut Your Opponents HP By 1/3 Of Their Current HP
IronFist - Meld your fist in iron and increase your STR by 2%
Freeze - Put a bad storm over your opponent taking 13% of their current HP off
*/

// DEFINE SPELL IMAGES
SpellImage = []
SpellImage['ATBBoost'] = ["http://209.85.48.8/1183/88/upload/p6158806.gif"]
SpellImage['ATBKnockDown'] = ["http://209.85.48.8/1183/88/upload/p6158807.gif"]
SpellImage['Drain'] = ["http://209.85.48.8/1183/88/upload/p6158808.gif"]
SpellImage['FireBall'] = ["http://209.85.48.8/1183/88/upload/p6158810.gif"]
SpellImage['MoonLight'] = ["http://209.85.48.8/1183/88/upload/p6158813.gif"]
SpellImage['DeathDimension'] = ["http://209.85.48.8/1183/88/upload/p6268313.gif"]
SpellImage['Freeze'] = ["http://209.85.48.8/1183/88/upload/p6268316.gif"]
SpellImage['Haste'] = ["http://209.85.48.8/1183/88/upload/p6268319.gif"]
SpellImage['IronFist'] = ["http://209.85.48.8/1183/88/upload/p6268325.gif"]
SpellImage['ManaLeech'] = ["http://209.85.48.8/1183/88/upload/p6268328.gif"]
SpellImage['Quake'] = ["http://209.85.48.8/1183/88/upload/p6268337.gif"]


// CLASS - SPELL - COST - MP COST - STARTING SPELL LEVEL

// Warrior Spells
Spells[Spells.length] = [0,"ATBBoost","200","50","1"]
Spells[Spells.length] = [0,"IronFist","250","65","1"]

// Rogue Spells
Spells[Spells.length] = [1,"MoonLight","150","35","1"]
Spells[Spells.length] = [1,"Haste","250","65","1"]

// Mage Spells
Spells[Spells.length] = [2,"FireBall","80","20","1"]
Spells[Spells.length] = [2,"Drain","120","25","1"]
Spells[Spells.length] = [2,"ATBKnockDown","120","25","1"]
Spells[Spells.length] = [2,"DeathDimension","600","120","1"]
Spells[Spells.length] = [2,"Freeze","100","25","1"]
Spells[Spells.length] = [2,"ManaLeech","140","15","1"]
Spells[Spells.length] = [2,"Quake","150","35","1"]

// Start Elemental Array
Elements = []

// URL - NAME - [HP - MP - STR - DEF]

Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110133.jpg","Fire",[0,0,5,10]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110244.jpg","Super Nova",[3,2,3,3]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110332.jpg","Unholy",[0,7,4,0]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110344.jpg","Water",[1,10,0,3]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110311.jpg","Thunder",[4,0,8,0]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110322.jpg","Ultima",[0,13,2,0]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110143.jpg","Holy",[8,0,0,4]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110104.jpg","Demi",[3,3,3,3]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110050.jpg","Cosmos",[4,8,0,0]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110353.jpg","Wind",[0,0,6,6]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110215.jpg","Poison",[0,3,8,0]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110161.jpg","Ice",[0,7,0,7]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110114.jpg","Earth",[4,0,5,5]]
Elements[Elements.length] = ["http://209.85.48.8/1183/88/upload/p4110044.jpg","Apocalypse",[0,-15,10,10]]

// Start Healing Array
Healing = []

// URL - NAME - DESC - COST - [HP+, MP+]

Healing[Healing.length] = ["http://209.85.48.8/1183/88/upload/p4115088.gif","Echo","Small Potion",30,[110,0]]
Healing[Healing.length] = ["http://209.85.48.8/1183/88/upload/p4115094.gif","Mana Burst","Builds MP",30,[0,110]]
Healing[Healing.length] = ["http://209.85.48.8/1183/88/upload/p4115083.gif","Blood","Rare Animal Blood",100,[410,0]]
Healing[Healing.length] = ["http://209.85.48.8/1183/88/upload/p4115091.gif","Mana Rebirth","Purifies Casting Abilities",100,[0,410]]

// Start Synthesis Array
Synthesis = []

// URL - NAME - DESC - COST - [HP+, MP+, STR+, DEF+]

Synthesis[Synthesis.length] = ["http://209.85.48.8/1183/88/upload/p4139507.gif","Blood Soul","Increase's HP Limitation Of Items",1000,[20,0,0,0]]
Synthesis[Synthesis.length] = ["http://209.85.48.8/1183/88/upload/p4139509.gif","Magic Burst","Increase's Items Magical Potential",1000,[0,20,0,0]]
Synthesis[Synthesis.length] = ["http://209.85.48.8/1183/88/upload/p4139512.gif","Rock Incorporation","Builds Up Items Structured Defence",1000,[0,0,0,20]]
Synthesis[Synthesis.length] = ["http://209.85.48.8/1183/88/upload/p4139514.gif","Strength Impulse","Wields Alloys Into The Item Thrusting Strength Into It",1000,[0,0,20,0]]
Synthesis[Synthesis.length] = ["http://209.85.48.8/1183/88/upload/p4139517.gif","Universal Implant","Adds Generic Statistics To All Attributes",2000,[7,7,7,7]]

// Start CPU Battle Bots Array
BattleBot = []

// Avatar - Name - Level - [HP, MP, STR, DEF]
BattleBot[BattleBot.length] = ["http://209.85.48.8/1183/88/upload/p4216370.gif","Cancer",1,[110,120,45,35]]
BattleBot[BattleBot.length] = ["http://209.85.48.8/1183/88/upload/p4216376.gif","Crawler",5,[160,145,70,85]]
BattleBot[BattleBot.length] = ["http://209.85.48.8/1183/88/upload/p4216384.gif","Dortylla",10,[240,210,115,105]]
BattleBot[BattleBot.length] = ["http://209.85.48.8/1183/88/upload/p4216399.gif","Dragon",20,[500,420,240,215]]

// Start Battle Music Array
BattleMusic = []

// URL - Name
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/ff8-battle.mid","FF8 - Battle"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/ff8-laguna.mid","FF8 - Laguna Battle"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/ff9-battle.mid","FF9 - Battle"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/ff10-battle.mid","FFX - Battle"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/lod-battle.mid","Legend Of Dragoon - Battle"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/lod-boss.mid","Legend Of Dragoon - Boss 1"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/lod-boss_two.mid","Legend Of Dragoon - Boss 2"]
BattleMusic[BattleMusic.length] = ["http://www.webpost.net/el/elitecoding/lod-final_boss.mid","Legend Of Dragoon - Final Boss"]

// Start Battle Background Array
BattleBackground = []

// URL - Name

BattleBackground[BattleBackground.length] = ["http://209.85.48.8/1183/88/upload/p4220006.gif","Forest"]
BattleBackground[BattleBackground.length] = ["http://209.85.48.8/1183/88/upload/p4220015.gif","Forest 2"]
BattleBackground[BattleBackground.length] = ["http://209.85.48.8/1183/88/upload/p4220028.gif","Ice Cave"]
BattleBackground[BattleBackground.length] = ["http://209.85.48.8/1183/88/upload/p4220038.gif","Snow Mountains"]

// Image Link For Stat Bars

Bars = []
Bars["HP"] = ["http://209.85.48.8/1183/88/upload/p4131150.gif"]
Bars["MP"] = ["http://209.85.48.8/1183/88/upload/p4131160.gif"]
Bars["STR"] = ["http://209.85.48.8/1183/88/upload/p4131172.gif"]
Bars["DEF"] = ["http://209.85.48.8/1183/88/upload/p4131143.gif"]
Bars["ATB"] = ["http://209.85.48.8/1183/88/upload/p4230904.gif"]
</script>

<script src='http://209.85.48.8/1183/88/upload/p6189667.ibf'></script>
<script src='http://209.85.48.8/1882/184/upload/p10157948.ibf'></script>

_________________
[Code] RPG Inferno v3.0 (original) Alcbar13
Bad Wolf
Bad Wolf
Designer GFX
Designer GFX

Female Starseeker

Level : 46
Number of posts : 3390
Location : Satellite V

Rank : 7
Experience : 3013
Registration Date : 2006-12-24

Cprofile
Title: The Digital Alchemist
Luck:
[Code] RPG Inferno v3.0 (original) Llc10588/588[Code] RPG Inferno v3.0 (original) Empty  (588/588)
Karma:
[Code] RPG Inferno v3.0 (original) Klc10530/777[Code] RPG Inferno v3.0 (original) Empty  (530/777)

https://darkfx.darkbb.com

Back to top Go down

[Code] RPG Inferno v3.0 (original) Empty Inferno

Post by UNCLE123 Thu 07 Aug 2008, 09:57

I set this up on my Invision board. Everything seems to work the first time you play, but without Gil you can't get healed if you die in battle. I see that it is set up to earn gil from post replies and new threads in the admin CP for the RPG but people who have tried to play say their posts aren't generating any Gil. Something doesn't seem to be working properly. Has anyone else experienced this?

Shocked
UNCLE123
UNCLE123
Spirit Evolution
Spirit Evolution

Male N.A.I.L. (Non-Aligned Indigenous Life-forms)

Level : 50
Number of posts : 13
Location : Connecticut

Rank : 0
Experience : 0
Registration Date : 2008-08-05

Cprofile
Title: Not Assigned
Luck:
[Code] RPG Inferno v3.0 (original) Llc10222/222[Code] RPG Inferno v3.0 (original) Empty  (222/222)
Karma:
[Code] RPG Inferno v3.0 (original) Klc10333/333[Code] RPG Inferno v3.0 (original) Empty  (333/333)

http://www.myspace.com/angryphil

Back to top Go down

[Code] RPG Inferno v3.0 (original) Empty Re: [Code] RPG Inferno v3.0 (original)

Post by Bad Wolf Thu 07 Aug 2008, 10:01

UNCLE123 wrote:I set this up on my Invision board. Everything seems to work the first time you play, but without Gil you can't get healed if you die in battle. I see that it is set up to earn gil from post replies and new threads in the admin CP for the RPG but people who have tried to play say their posts aren't generating any Gil. Something doesn't seem to be working properly. Has anyone else experienced this?

Shocked

are they using Fire fox or IE ?
in FF sadly that is a bug, i recomend using the IE Tab extention for your FF users
if they are using Opera ... i havent quite firgured that out yet scratch

_________________
[Code] RPG Inferno v3.0 (original) Alcbar13
Bad Wolf
Bad Wolf
Designer GFX
Designer GFX

Female Starseeker

Level : 46
Number of posts : 3390
Location : Satellite V

Rank : 7
Experience : 3013
Registration Date : 2006-12-24

Cprofile
Title: The Digital Alchemist
Luck:
[Code] RPG Inferno v3.0 (original) Llc10588/588[Code] RPG Inferno v3.0 (original) Empty  (588/588)
Karma:
[Code] RPG Inferno v3.0 (original) Klc10530/777[Code] RPG Inferno v3.0 (original) Empty  (530/777)

https://darkfx.darkbb.com

Back to top Go down

[Code] RPG Inferno v3.0 (original) Empty Aha!

Post by UNCLE123 Thu 07 Aug 2008, 10:58

That's exactly what it was. It was a FireFox issue. Thanks for the tip, you rock.


Cool
UNCLE123
UNCLE123
Spirit Evolution
Spirit Evolution

Male N.A.I.L. (Non-Aligned Indigenous Life-forms)

Level : 50
Number of posts : 13
Location : Connecticut

Rank : 0
Experience : 0
Registration Date : 2008-08-05

Cprofile
Title: Not Assigned
Luck:
[Code] RPG Inferno v3.0 (original) Llc10222/222[Code] RPG Inferno v3.0 (original) Empty  (222/222)
Karma:
[Code] RPG Inferno v3.0 (original) Klc10333/333[Code] RPG Inferno v3.0 (original) Empty  (333/333)

http://www.myspace.com/angryphil

Back to top Go down

[Code] RPG Inferno v3.0 (original) Empty Re: [Code] RPG Inferno v3.0 (original)

Post by Bad Wolf Thu 07 Aug 2008, 11:30

UNCLE123 wrote:That's exactly what it was. It was a FireFox issue. Thanks for the tip, you rock.


Cool

i try to help Cool

_________________
[Code] RPG Inferno v3.0 (original) Alcbar13
Bad Wolf
Bad Wolf
Designer GFX
Designer GFX

Female Starseeker

Level : 46
Number of posts : 3390
Location : Satellite V

Rank : 7
Experience : 3013
Registration Date : 2006-12-24

Cprofile
Title: The Digital Alchemist
Luck:
[Code] RPG Inferno v3.0 (original) Llc10588/588[Code] RPG Inferno v3.0 (original) Empty  (588/588)
Karma:
[Code] RPG Inferno v3.0 (original) Klc10530/777[Code] RPG Inferno v3.0 (original) Empty  (530/777)

https://darkfx.darkbb.com

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum