The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Online Gaming Recruitment Application System Details »» | |||||||||||||||||||||||||||
Online Gaming Recruitment Application System
Developer Last Online: Jul 2009
This is a modification originally developed for 3.6.x for websites wishing to use an application, although originally designed for world of warcraft it can be used for any game.
This Mod only officially works with 3.6... but since this is open code. anyone can take the code and make it work for 3.7 and re-publish it... with credits ofcourse. I have had this modification for a long time and only today decided to release it to the public hoping somebody might want to carry on its developement because i just dont have time, so feel free to modify the code and re-release it under a different name but please give credit. Install
Your product is now installed and ready for configuration. Main Configuration (refresh website after plugin installation first)
Field checking has not really been fully tested or developed so you may encounter bugs while using "Non Empty Fields", "Numeric Fields", "Boolean Fields", The rest is fully tested and operational!!!! How To Configuring Your Application Questions The thing that makes my application system good is that its VERY easy to add and delete questions by yourself with minimal programming knowlege, mostly just copy and paste and change the question
Radio Button Question Example Code:
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="alt1 wowsl" valign="center" width=50%> I Am a Human </td> <td class="alt1 wowsc" valign="center" width=50%> <center> <input type="radio" name="q_Human" value="No" /> No <input type="radio" name="q_Human" value="Yes" /> Yes </center> </td> </tr> </table> Question Name = q_Human You need to write down the "Question Name" for EVERY question you make because you will need it later when we design your output tmplate which gets posted on your forum Input Type = radio Indicates that this question is a Radio Button Check-Box Question Example Code:
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="alt1 wowsl" valign="center" width=50%> What is your favurite colours: </td> <td class="alt1 wowsc" valign="center" width=50%> <center> <input type="checkbox" name="q_colour_red" value="red" /> red <input type="checkbox" name="q_colour_green" value="green" /> green <input type="checkbox" name="q_colour_blue" value="blue" /> blue <input type="checkbox" name="q_volour_pink" value="pink" /> pink </center> </td> </tr> </table> "q_ConnectionType" is your name in this instance, which you will need later Code:
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="alt1 wowsl" valign="center" width=50%> What type of Internet Connection do you use: </td> <td class="alt1 wowsc" valign="center" width=50%> <center> <select name="q_ConnectionType"> <option value="--" ></option> <option value="Dialup" >Dialup</option> <option value="ISDN" >ISDN</option> <option value="DSL" >DSL</option> <option value="Cable" >Cable</option> <option value="Faster than Cable" >Faster than Cable</option> </select> </center> </td> </tr> </table> Code:
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <td class="alt1 wowsl" valign="center" width=50%> What is your Character name? </td> <td class="alt1 wowsc" valign="center" width=50%> <center> <input type="text" size="25" value="" name="q_CharacterName" /> </center> </td> </tr> </table> Code:
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center"> <tr> <td class="alt2 wowpl" valign="center"> Please describe what you like about the game and your character. </td> </tr> <tr> <td class="alt1 wowsc" valign="center"> <center> <textarea rows="5" cols="70" name="q_LikeAboutTheGame"></textarea> </center> </td> </tr> </table> Now i will explain how to configure your output file which will be posted on the forums.
Example Code Code:
[ size=5][ color=#87F717][ b]Character Information[/b][/color][/size] [b ][u ][ color=#B1FB17]Armory Link[/color][/u][/b] - {{q_ArmoryLink}} [b ][u ][ color=#B1FB17]Recent WWS Report[/color][/u][/b] - {{q_WWS}} [b ][ color=#CCFB5D]Character name:[/color][/b] {{q_CharacterName}} [b ][ color=#CCFB5D]Character Class:[/color][/b] {{q_CharacterClass}} [b ][ color=#CCFB5D]Character Level:[/color][/b] {{q_CharacterLevel}} You can also have thread titles look like the following: Code:
Application from {{q_CharacterName}} Class: {{q_CharacterClass}} ::Making the application system work with 3.7.x::
Code:
<input type="hidden" value="1" name="agree" /> Code:
<input type="hidden" name="s" value="$session[sessionhash]" /> <input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" /> Scroll down the list again and find "vgat_rules" and Access. Find Line Code:
<input type="hidden" name="s" value="$session[sessionhash]" /> Code:
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" /> Done This Mod only officially works with 3.6... but since this is open code. anyone can take the code and make it work for 3.7 and re-publish it... with credits ofcourse. Thats about it and im sure you can figure the rest out for yourselves.. i will try and help with any questions you may have. Enjoy!! Show Your Support
|
Comments |
#42
|
|||
|
|||
OK, I'll upgrade and post my success afterwards. Thanks!
|
#43
|
|||
|
|||
Upgraded and now I'm getting the security token error. Is there a fix for it yet?
And now I get this error: Fatal error: Call to undefined function build_forum_counters() in /home/chiaki/public_html/misc.php(97) : eval()'d code on line 129 |
#44
|
|||
|
|||
sorry... i have re-uploaded a definate working version for 3.6.... modify the questions through XML as it suites you... its easy enough to understand once u know the REAL basics of deleteing and copyiong lines.... no programming knowledge required....
i have been working alot and have not much time atm |
#45
|
|||
|
|||
Quote:
thanks... and yea i gathered being able to add your own customizable was through XML... being able to add unlimited amount of customized questions through the vbuttetin CP would be... imense amount of work... and i used to be an avid mmoer.... my job takes up all my work now a days... which is the reason why i felt the need to release my code to other developers just incase it could come in use to anyone since i have no time anymore. |
#46
|
|||
|
|||
I'm still getting the following error. I've updated the template and used the updated XML file. But I'm still getting:
Code:
Fatal error: Call to undefined function build_forum_counters() in /home/salty/public_html/misc.php(97) : eval()'d code on line 129 |
#47
|
||||
|
||||
i am getting the same problem as freddie and i run 3.7.1 pl2 i dont know y it isnt posting maybe you forgot a plugin in the product file
|
#48
|
|||
|
|||
What happens to me is that i fill out the form hit submit and it takes me back to the form but its blank now,
i looked at the bbcode example and cant figure out Character name: {{q_CharacterName}} where q is the question name i think i cant find in the code where q_questionname is please help thanks a lot and i am using 3.7.0 |
#49
|
|||
|
|||
Nice mod, to bad i quited with clans a while ago I hope to see more game related mods seeing come out
|
#50
|
|||
|
|||
Quote:
{{ANYTHINGYOUWANT}} THE {{q_CharacterName}} is just what i had on my mod//...you can call the questions whatever you want |
#51
|
|||
|
|||
the mod isnt officially made for 3.7... thats why it isnt posted in the 3.7 section... but please feel free to make it work for 3.7 and re-release it
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|