Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Job Hack Details »»
Job Hack
Version: 1.00, by Atian Atian is offline
Developer Last Online: Dec 2002 Show Printable Version Email this Page

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.

Comments
  #12  
Old 07-09-2002, 05:31 PM
Webmasta XT's Avatar
Webmasta XT Webmasta XT is offline
 
Join Date: Mar 2002
Posts: 359
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

hey, I can't wait till those hacks come out!!
Reply With Quote
  #13  
Old 07-09-2002, 07:16 PM
Mystic Gohan's Avatar
Mystic Gohan Mystic Gohan is offline
 
Join Date: Jul 2002
Location: Iowa
Posts: 103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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?
Reply With Quote
  #14  
Old 07-09-2002, 08:28 PM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.*
Reply With Quote
  #15  
Old 07-09-2002, 09:09 PM
proxyMX's Avatar
proxyMX proxyMX is offline
 
Join Date: Jun 2002
Location: Seven of Nine is hot! :do
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #16  
Old 07-09-2002, 09:13 PM
EmuMasta EmuMasta is offline
 
Join Date: Feb 2002
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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!
Reply With Quote
  #17  
Old 07-09-2002, 09:23 PM
zajako's Avatar
zajako zajako is offline
 
Join Date: Jan 2002
Location: a place not to far away
Posts: 633
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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 
Reply With Quote
  #18  
Old 07-09-2002, 09:28 PM
Atian's Avatar
Atian Atian is offline
 
Join Date: Mar 2002
Location: Korea O_O naw.....usa =p
Posts: 75
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
  #19  
Old 07-09-2002, 10:02 PM
EmuMasta EmuMasta is offline
 
Join Date: Feb 2002
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

OH wow you berly say that.

Oh well at least you said it now! :lick:
Reply With Quote
  #20  
Old 07-09-2002, 10:04 PM
Grealm Grealm is offline
 
Join Date: Jun 2002
Location: Cali
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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 ...
Reply With Quote
  #21  
Old 07-09-2002, 11:18 PM
proxyMX's Avatar
proxyMX proxyMX is offline
 
Join Date: Jun 2002
Location: Seven of Nine is hot! :do
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 03:42 PM.


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.04945 seconds
  • Memory Usage 2,322KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete