vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Job Hack (https://vborg.vbsupport.ru/showthread.php?t=40833)

Atian 07-07-2002 10:00 PM

Job Hack
 
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 :D

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

Vivi Ornitier 07-08-2002 06:58 PM

dude, somebody just added the exact same hack yesterday, lol. Bad timing man. Keep working on your battle hack, i'm waiting for one.

Atian 07-08-2002 07:24 PM

they released one like these? oh crap :( oh well,my hack is done,im adding the world map cuz i made interact with it so i have to release both hacks at the same time :\

Vivi Ornitier 07-08-2002 08:04 PM

ahh nice, what idea do u have in mind for the world map?

Velocd 07-08-2002 08:29 PM

It's impossible to escape hearing about the battle hack on these forums :confused:

Atian 07-08-2002 08:58 PM

Quote:

Originally posted by Vivi Ornitier
ahh nice, what idea do u have in mind for the world map?
its like a real FF game,you walk around and fight random monsters and stuff,im currently adding them towns,there all FF based so youll have to go throught the script if you want to change them,you can buy your airship,chocobo and stuff from different places,i have everything ffu made so no one else can use it,so thats why i have to go throught all this stuff >__< oh well....things i do for my members :\

[D]Vincent 07-08-2002 10:14 PM

Great I would install it but I'm too laxy to undo what's-her-faces. Anyways hope I can talk to you soon and hope the hospital doesn't kill you x_x damn doctors

Vivi Ornitier 07-08-2002 11:08 PM

holy crap Atian. That's hella amazing. I have no clue how you plan to do that but i swear that i'll be the first one to install one of those!

[D]Vincent 07-09-2002 12:45 AM

He told me he was planning it when he told me about his battle system I drooled for an hour over it XD not really though -_-

proxyMX 07-09-2002 02:26 AM

Funny vivi, your prompt at responding to ask about stuff you want, but your not so prompt at supporting your hack releases.

Webmasta XT 07-09-2002 05:31 PM

hey, I can't wait till those hacks come out!!

Mystic Gohan 07-09-2002 07:16 PM

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?

zajako 07-09-2002 08:28 PM

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.*

proxyMX 07-09-2002 09:09 PM

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.

EmuMasta 07-09-2002 09:13 PM

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!

zajako 07-09-2002 09:23 PM

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 


Atian 07-09-2002 09:28 PM

oh yea,sorry,i forgot to add credit to zajako in the txt file,but i did edit some other stuff o_O and im updating so you can have job level displayed

EmuMasta 07-09-2002 10:02 PM

OH wow you berly say that.

Oh well at least you said it now! :lick:

Grealm 07-09-2002 10:04 PM

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 :D...

proxyMX 07-09-2002 11:18 PM

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.

g-force2k2 07-10-2002 01:45 AM

lmfao... seriously Antain... Zajako you want to fight about this go else where...

PHP Code:

if($something == "this"
{
$that


if i made a hack with this would you call it a rip? no it is simple php script please grow up... ;\ please... inspiration comes from everyone... this kind of stuff is childish...

g-force2k2

Grealm 07-10-2002 01:52 AM

thanx proxy.. ill try that. :)

Aerith_Freak 07-13-2002 02:03 AM

Quote:

Originally posted by zajako
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.*

Really? Why that must be coincidence then as my Job Classes hack I did do from scratch, with some help from the gender hack.

I've never used nor looked at your Elements hack.

Just because someone's coding is similar doesn't mean they ripped it.

Seifer 08-05-2002 07:20 AM

lol, I'm with Aerith. I used the Gender Hack to make my Job Class thing...you can't really say someone copied your If codes...a person with minimal PHP could figure those out (like me), without looking at your hack =P

Rubicant 07-20-2003 12:15 PM

I've installed this and there appears to be a problem. If someone could please help that'd be great.
If I update my profile and change my jobclass, when I go to my posts it always remains on 'un-trained'. All the code seems to be inplace, and no matter which job I select it remainds unchanged.


All times are GMT. The time now is 06:34 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01245 seconds
  • Memory Usage 1,788KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (25)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete