Version: 1.00, by Atian
Developer Last Online: Dec 2002
Version: 2.2.x
Rating:
Released: 07-07-2002
Last Update: Never
Installs: 6
No support by the author.
Um,this is a little hack that allows you to pick a job/class in the forum,its commonly made for RPG boards but you can make alot of stuff out of these code
The installation takes like 5-10 minutes,its very simple and fun
enjoy
Note: you can add more job and images if you want o_O
UPDATE: Now each class gots its own level,the leveling up depends on the $pow_logo * 5 or whatever you set
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
very nice I might install and modify it for my own RPG by chance can you make a version 2 of it and have it work with the points hack so you get so much gil or gold or whatever you call it on your forum a day?
just wanted to point out, nice idea, however, this was released a long time ago, My element hack was made, and somebody modded it for classes instead. Which is exactly what you did. This is a 100% copy of my element hack, with the variables changed to job variables, and the images changed to job titles.
I think its funny that I saw all the coding in my style and my name was no where to be found as the origianl coder. Thanks for the rip..
*also i want to point out, if you would have said something to me, about using my coding, i would not have minded you not placeing my name, however, you said nothing, and released it as if you did all the coding by hand.*
Hey i think your being a bit harsh, Maybe if you provided some proof that this is a rip. And i mean, whats the big deal, you didnt exactly come up with the concept of the hack, And im gonna be using it, rip or not.
if you download the Element hack and this one, and if you look at the coding that you insert at the fucntions.php file you could see they are alike but different variables!
not just the functiosn.php the entire hack is a clone, with images and name chages., and im not being harsh, i am not taking any action on this, imjust saying that it is wrong for someone to clone someones hours of work and claim it as their own, without even asking for permission or giving credit, Im not saying don't download or use this, im simply saying this is indeed a rip with the coding, and i find it wrong that it was made like that.
and just like emumasta was sayng the proof is in the pudding. Take a look.
PHP Code:
// Job Hack
// by Atian
$job = $post[job];
If ($job == 0)
{
$jobn = "Un-Trained";
}
If ($job == 1)
{
$jobn = "Squire";
}
If ($job == 2)
{
$jobn = "Knight";
}
If ($job == 3)
{
$jobn = "Thief";
}
If ($job == 4)
{
$jobn = "Black Mage";
}
If ($job == 5)
{
$jobn = "White Mage";
}
If ($job == 6)
{
$jobn = "Summoner";
}
If ($job == 7)
{
$jobn = "SeeD";
}
If ($job == 8)
{
$jobn = "Monk";
}
If ($job == 9)
{
$jobn = "Turk";
}
if ($job == 10)
{
$jobn = "Soldier";
}
$jobicon = '<img src="images/job/'.$jobn.'" border="0" alt="'.$jobn.'" align="absmiddle">';
// end of Job hack
and
PHP Code:
// Element Hack v2.0
// by Zajako
$ele = $post[element];
If ($ele == 0)
{
$elename = "none";
}
If ($ele == 1)
{
$elename = "light";
}
If ($ele == 2)
{
$elename = "water";
}
If ($ele == 3)
{
$elename = "wind";
}
If ($ele == 4)
{
$elename = "lightning";
}
If ($ele == 5)
{
$elename = "earth";
}
If ($ele == 6)
{
$elename = "fire";
}
If ($ele == 7)
{
$elename = "dark";
}
If ($ele == 8)
{
$elename = "omega";
}
If ($ele == 9)
{
$elename = "alpha";
}
this is a bit hard to install.. y? coz i dont want to touch the phpadmin.. the last time i touched that thing, my whole board was wiped out.. i know im not a new to php and all but i am too afraid to go in there ...
I was about to say if it was a rip he should have mentioned the creator.
Grealm ->
"this is a bit hard to install.. y? coz i dont want to touch the phpadmin.. the last time i touched that thing, my whole board was wiped out.. i know im not a new to php and all but i am too afraid to go in there ...
"
Hey , Using Phpadmin isnt a bad thing, infact it's exactly the same as an AutoInstaller, except you do it manually. If you follow the instructions closely you will see that the exact same functions are done in phpadmin as in the scripts. anyways theres a great SQL tutorial at MYSQL.Com. That should give you a bit more insight into what the functions do.