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";
}
$eicon = '<img src="images/elements/'.$elename.'" border="0" alt="'.$elename.'" align="absmiddle">';
// end of Elemnet hack v2.0